blob: 6c9763f2fcaa342dd48d985e79eb77ba05c44eea [file] [log] [blame]
Søren Gjesse7320ce52018-05-07 15:45:22 +02001// 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.
4package com.android.tools.r8;
5
Ian Zerny9c55dff2023-11-06 14:07:42 +01006import com.android.tools.r8.keepanno.annotations.KeepForApi;
7
8@KeepForApi
Søren Gjesse7320ce52018-05-07 15:45:22 +02009public interface DataResource extends Resource {
10 char SEPARATOR = '/';
11
12 String getName();
13}