summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/prefabApp/app/build.gradle
blob: 689547db8b4f9d9964b579303a3512b12d0f624c (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
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
    namespace "com.android.prefabaartest"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion rootProject.latestCompileSdk
    }

    buildFeatures {
        prefab true
    }

    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$rootProject.kotlinVersion"
    implementation project(':curl')
    implementation project(':jsoncpp')
    implementation project(':openssl')
}