aboutsummaryrefslogtreecommitdiff
path: root/ui/fonts/DownloadableFonts/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'ui/fonts/DownloadableFonts/app/build.gradle')
-rw-r--r--ui/fonts/DownloadableFonts/app/build.gradle21
1 files changed, 11 insertions, 10 deletions
diff --git a/ui/fonts/DownloadableFonts/app/build.gradle b/ui/fonts/DownloadableFonts/app/build.gradle
index 203427e2..80c6aa87 100644
--- a/ui/fonts/DownloadableFonts/app/build.gradle
+++ b/ui/fonts/DownloadableFonts/app/build.gradle
@@ -1,16 +1,17 @@
apply plugin: 'com.android.application'
+ext {
+ supportLibVersion = '26.0.1'
+}
+
android {
- compileSdkVersion 'android-O'
- buildToolsVersion "26.0.0 rc2"
+ compileSdkVersion 26
+ buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.example.android.downloadablefonts"
- // Once API level 26 SDK is launched, lower the minSdkVersion.
- // At this moment, an app targeting the preview version of the SDK only runs on the
- // preview device.
- minSdkVersion 'O'
- targetSdkVersion 'O'
+ minSdkVersion 14
+ targetSdkVersion 26
}
buildTypes {
@@ -21,8 +22,8 @@ android {
}
dependencies {
- compile 'com.android.support:appcompat-v7:26.0.0-beta1'
- compile 'com.android.support:design:26.0.0-beta1'
- compile 'com.android.support:cardview-v7:26.0.0-beta1'
+ compile "com.android.support:appcompat-v7:$supportLibVersion"
+ compile "com.android.support:design:$supportLibVersion"
+ compile "com.android.support:cardview-v7:$supportLibVersion"
}
}