first commit

This commit is contained in:
yezhiqiu
2025-09-30 10:01:20 +08:00
commit 0214fb09ed
1862 changed files with 119528 additions and 0 deletions

22
easysocket/build.gradle Normal file
View File

@@ -0,0 +1,22 @@
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"