Files
Xuewang365OSHonor/PhotoPreview/build.gradle
tongtongstudio 5074854c40 build: update agp android gradle version
update agp to 8.13.2,update gradle to 8.13,add build.gradle namespace,use android studio panda 4
2026-06-12 18:44:30 +08:00

44 lines
1.1 KiB
Groovy
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
apply plugin: 'com.android.library'
android {
namespace "com.wgw.photo.preview"
compileSdkVersion 29
defaultConfig {
minSdkVersion 23
targetSdkVersion 29
versionCode 27
versionName "2.4.3"
}
buildTypes {
iPlay50PDebug {}
iPlay50PRelease {}
MTKT1102Debug {}
MTKT1102Release {}
U807Debug {}
U807Release {}
iPlay50SEDebug {}
iPlay50SERelease {}
debug {}
release {}
}
// 设置JDK1.8
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.transition:transition:1.4.1'
implementation 'androidx.cardview:cardview:1.0.0'
// 为了兼容大部分用户仅依赖低版本本库仅使用GifDrawable类型判断
implementation 'com.github.bumptech.glide:glide:3.3.0'
}