Files
ElderlyDialer/iconloader/build.gradle
tongtongstudio 6baa7155ba style: update agp android gradle version
update agp to 8.13.2,update gradle to 8.13,add build.gradle namespace
2026-05-08 16:57:42 +08:00

42 lines
960 B
Groovy

apply plugin: 'com.android.library'
android {
namespace "com.ttstd.iconloader"
compileSdkVersion 36
// buildToolsVersion "36.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 36
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}
buildTypes {
zhanRuiDebug {}
zhanRuiRelease {}
CrosshatchDebug {}
CrosshatchRelease {}
debug {}
release {}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.3.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
//磁盘缓存
implementation 'com.jakewharton:disklrucache:2.0.2'
}