初次提交,修改了头像不能展示

This commit is contained in:
2025-08-11 11:01:55 +08:00
commit 7e2dcad9c9
3841 changed files with 227903 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
plugins {
id 'com.android.library'
}
android {
compileSdkVersion 32
defaultConfig {
minSdkVersion 21
targetSdkVersion 32
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
consumerProguardFiles 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
// 引入 SudMGPSDK
// api project(':SudMGPSDK')
api 'tech.sud.mgp:SudMGP:1.3.6.1181'
// gson
api 'com.google.code.gson:gson:2.8.6'
// 依赖okhttp
api 'com.squareup.okhttp3:okhttp:4.9.2'
}