Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: build/android/tests/bad_resources/app/java/src/dummy/DummyActivity.java

Issue 1136653002: Reland: Actually use --extra-r-text-files in process_resources.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle APKs with no resources and add a --include-all-resources option Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698