• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 'android-O'
5    buildToolsVersion "26.0.0 rc2"
6
7    defaultConfig {
8        applicationId "com.example.android.downloadablefonts"
9        // Once API level 26 SDK is launched, lower the minSdkVersion.
10        // At this moment, an app targeting the preview version of the SDK only runs on the
11        // preview device.
12        minSdkVersion 'O'
13        targetSdkVersion 'O'
14    }
15
16    buildTypes {
17        release {
18            minifyEnabled false
19            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
20        }
21    }
22
23    dependencies {
24        compile 'com.android.support:appcompat-v7:26.0.0-beta1'
25        compile 'com.android.support:design:26.0.0-beta1'
26        compile 'com.android.support:cardview-v7:26.0.0-beta1'
27    }
28}
29