Søren Gjesse | 7320ce5 | 2018-05-07 15:45:22 +0200 | [diff] [blame] | 1 | // Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file |
| 2 | // for details. All rights reserved. Use of this source code is governed by a |
| 3 | // BSD-style license that can be found in the LICENSE file. |
| 4 | package com.android.tools.r8; |
| 5 | |
Ian Zerny | 9c55dff | 2023-11-06 14:07:42 +0100 | [diff] [blame] | 6 | import com.android.tools.r8.keepanno.annotations.KeepForApi; |
| 7 | |
| 8 | @KeepForApi |
Søren Gjesse | 7320ce5 | 2018-05-07 15:45:22 +0200 | [diff] [blame] | 9 | public interface DataResource extends Resource { |
| 10 | char SEPARATOR = '/'; |
| 11 | |
| 12 | String getName(); |
| 13 | } |