OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package dummy; |
| 6 |
| 7 import android.app.Activity; |
| 8 |
| 9 import dummy.dep.R; |
| 10 |
| 11 /** |
| 12 * Dummy activity to build apk. |
| 13 * |
| 14 * This class exists to reference a resource ID in a dependency that doesn't hav
e that resource. |
| 15 */ |
| 16 public class DummyActivity extends Activity { |
| 17 private static final String TAG = "Dummy"; |
| 18 |
| 19 public String getResources() { |
| 20 return getString(R.string.hello) + " " + getString(R.string.world); |
| 21 } |
| 22 } |
OLD | NEW |