blob: 1d94fb0dca648e23d05dad9a1573acc56a84a68b [file] [log] [blame]
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 'android-O'
buildToolsVersion "26.0.0 rc2"
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'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
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'
}
}
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}