Files
Abbidot_Android/easysocket/build.gradle

23 lines
425 B
Groovy
Raw Normal View History

2025-09-30 10:01:20 +08:00
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.1'
}
sourceCompatibility = "7"
targetCompatibility = "7"