添加两个示例项目

This commit is contained in:
ZhanGSKen
2025-03-11 20:52:40 +08:00
parent b7affa477f
commit afd93d6871
39 changed files with 1169 additions and 19 deletions

25
androiddemo/build.gradle Normal file
View File

@@ -0,0 +1,25 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
buildToolsVersion "33.0.0"
defaultConfig {
applicationId "cc.winboll.studio.androiddemo"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
}