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 |