23 lines
505 B
Groovy
23 lines
505 B
Groovy
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'
|
|
}
|