Files
Abbidot_Android/easysocket/build.gradle
yezhiqiu 4547f844ba 1.在解绑提示页面,增加提示语“Auto-Renew: Cancel”
2.适配Google Play 要求支持 16 KB 的内存页面大小,更新大部分第三方库到最新版本
2026-04-21 17:20:28 +08:00

23 lines
425 B
Groovy

plugins {
id 'com.android.library'
}
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 15
targetSdkVersion 33
vectorDrawables.useSupportLibrary = true
}
namespace 'com.easysocket'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.google.code.gson:gson:2.13.2'
}
sourceCompatibility = "7"
targetCompatibility = "7"