Home | History | Annotate | Download | only in app
      1 apply plugin: 'com.android.application'
      2 
      3 ext {
      4     supportLibVersion = '26.0.1'
      5 }
      6 
      7 android {
      8     compileSdkVersion 26
      9     buildToolsVersion "26.0.1"
     10 
     11     defaultConfig {
     12         applicationId "com.example.android.downloadablefonts"
     13         minSdkVersion 14
     14         targetSdkVersion 26
     15     }
     16 
     17     buildTypes {
     18         release {
     19             minifyEnabled false
     20             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
     21         }
     22     }
     23 
     24     dependencies {
     25         compile "com.android.support:appcompat-v7:$supportLibVersion"
     26         compile "com.android.support:design:$supportLibVersion"
     27         compile "com.android.support:cardview-v7:$supportLibVersion"
     28     }
     29 }
     30