添加两个示例项目

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

26
androidxdemo/build.gradle Normal file
View File

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