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

Unified Diff: platform_tools/android/apps/viewer/build.gradle

Issue 2004633002: Add drawer with state information (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Format_old Created 4 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 side-by-side diff with in-line comments
Download patch
Index: platform_tools/android/apps/viewer/build.gradle
diff --git a/platform_tools/android/apps/viewer/build.gradle b/platform_tools/android/apps/viewer/build.gradle
index 79cac8a7d4767dc989e072f7b2fb26e80b4122de..5eddb59c06f1c814eeced9d9d81189443dae2346 100644
--- a/platform_tools/android/apps/viewer/build.gradle
+++ b/platform_tools/android/apps/viewer/build.gradle
@@ -5,13 +5,19 @@
* found in the LICENSE file.
*/
apply plugin: 'com.android.application'
+
+dependencies {
+ compile 'com.android.support:support-v13:23.3.0'
djsollen 2016/05/24 17:32:40 does this add more requirements for things people
liyuqian 2016/05/24 20:18:05 I successfully ran android_make Viewer_APK --vulka
+ compile 'com.android.support:appcompat-v7:23.3.0'
+}
+
android {
- compileSdkVersion 19
+ compileSdkVersion 23
djsollen 2016/05/24 17:32:40 why do we need to update these versions?
liyuqian 2016/05/24 20:18:05 Done. Now only compileSdkVersion is 23, others are
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "org.skia.viewer"
- minSdkVersion 19
- targetSdkVersion 19
+ minSdkVersion 21
+ targetSdkVersion 23
versionCode 1
versionName "1.0"
signingConfig signingConfigs.debug

Powered by Google App Engine
This is Rietveld 408576698