aboutsummaryrefslogtreecommitdiff
path: root/dexmaker-tests/build.gradle
blob: 996008dbc2dd28b95ee69947d2bf9a093b108578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'com.android.application'

android {
    compileSdkVersion 32

    defaultConfig {
        applicationId 'com.linkedin.dexmaker'
        minSdkVersion 14
        targetSdkVersion 32
        versionCode 1
        versionName VERSION_NAME

        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }
}

dependencies {
    implementation project(":dexmaker")

    androidTestImplementation 'androidx.test:runner:1.4.0'
    androidTestImplementation 'junit:junit:4.13.2'
}