xz_touch/app/build.gradle
2023-03-24 17:09:51 +08:00

48 lines
1.4 KiB
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'com.tenlion.xztouch'
compileSdk gCompileSdkVersion
defaultConfig {
applicationId "com.tengshisoft.hanging"
minSdk gMinSdkVersion
targetSdk gTargetSdkVersion
versionCode gVersionCode
versionName gVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments = [AROUTER_MODULE_NAME: project.getName()]
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation project(":baselib")
implementation project(":moduleijkplayer")
implementation files("libs/sdkapi.jar")
implementation 'com.koushikdutta.async:androidasync:2.2.1'
}