summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/asmTransformApi/app/build.gradle
blob: f0b14f5f2a85c4650b3033163f223c7ea9999cc8 (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
38
39
40
41
plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'instrumentation-plugin'
    id 'jacoco'
}

android {
    namespace "com.example.myapplication"
    dynamicFeatures = [":feature"]
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion = libs.versions.buildToolsVersion.get()

    defaultConfig {
        minSdkVersion 26
    }

    buildTypes {
        debug {
            enableUnitTestCoverage true
            enableAndroidTestCoverage true
        }
    }

    lintOptions {
        checkReleaseBuilds false
    }

    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation(fileTree("libs") { include("*.jar", "*.aar") })
    implementation project(':instrumentationLib')
    implementation project(':lib')
    implementation "org.jetbrains.kotlin:kotlin-stdlib:${libs.versions.kotlinVersion.get()}"

    testImplementation 'junit:junit:4.12'
}