You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion build_versions.compileSdk
|
|
buildToolsVersion build_versions.buildTools
|
|
|
|
defaultConfig {
|
|
applicationId "com.king.appupdater"
|
|
minSdkVersion build_versions.minSdk
|
|
targetSdkVersion build_versions.targetSdk
|
|
versionCode app_version.versionCode
|
|
versionName app_version.versionName
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation deps.test.junit
|
|
androidTestImplementation deps.test.runner
|
|
androidTestImplementation deps.test.espresso
|
|
//support
|
|
implementation deps.support.appcompat
|
|
implementation deps.support.constraintlayout
|
|
implementation deps.okhttp
|
|
|
|
implementation project(':app-updater')
|
|
implementation project(':app-dialog')
|
|
}
|
|
|