1apply plugin: 'com.android.application' 2apply plugin: 'kotlin-android' 3 4ext { 5 supportLibVersion = '26.0.1' 6} 7 8android { 9 compileSdkVersion 26 10 buildToolsVersion "26.0.1" 11 12 defaultConfig { 13 applicationId "com.example.android.downloadablefonts" 14 minSdkVersion 14 15 targetSdkVersion 26 16 } 17 18 buildTypes { 19 release { 20 minifyEnabled false 21 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 22 } 23 } 24 25 dependencies { 26 compile "com.android.support:appcompat-v7:$supportLibVersion" 27 compile "com.android.support:design:$supportLibVersion" 28 compile "com.android.support:cardview-v7:$supportLibVersion" 29 } 30} 31 32repositories { 33 mavenCentral() 34} 35dependencies { 36 compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 37} 38 39