3.5日 再提交一次备份

This commit is contained in:
xuhuixiang
2026-03-05 15:39:40 +08:00
parent 8909d2ec4f
commit 90d783f2e8
309 changed files with 9901 additions and 9 deletions

27
base_player/build.gradle Normal file
View File

@@ -0,0 +1,27 @@
plugins {
id 'com.android.library'
}
android {
compileSdkVersion 31
defaultConfig {
minSdkVersion 24
targetSdkVersion 31
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
api 'androidx.appcompat:appcompat:1.1.0'
api 'com.google.android.material:material:1.1.0'
api 'androidx.constraintlayout:constraintlayout:1.1.3'
api("com.github.bumptech.glide:glide:4.13.1")
}