mirror of
https://gitee.com/willfree/min-vpn-client_v2.git
synced 2026-06-05 22:39:30 +08:00
41 lines
1.0 KiB
Groovy
41 lines
1.0 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
android {
|
|
compileSdkVersion compile_sdk_version
|
|
|
|
defaultConfig {
|
|
minSdkVersion min_sdk_version
|
|
targetSdkVersion target_sdk_version
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation "androidx.appcompat:appcompat:${appcompact_version}"
|
|
testImplementation "junit:junit:${junit_version}"
|
|
androidTestImplementation "androidx.test:runner:${test_runner_version}"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:${espresso_core_version}"
|
|
|
|
implementation project(path: ':locallib_quick_android:quick_android_base')
|
|
|
|
}
|