summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/asmTransformApi/app/build.gradle
blob: 09f923578fb6d96247e70a5b5de4a3d533635c52 (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 rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion

    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:$rootProject.kotlinVersion"

    testImplementation 'junit:junit:4.12'
}