aboutsummaryrefslogtreecommitdiff
path: root/ui/fonts/DownloadableFonts/kotlinApp/app/build.gradle
blob: 1d94fb0dca648e23d05dad9a1573acc56a84a68b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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"
}