Initial commit with CI/CD

This commit is contained in:
CI Bot
2026-06-02 21:19:57 +08:00
commit eedcc0f5f3
6 changed files with 159 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
plugins {
id 'com.android.application'
}
android {
namespace 'com.example.newapp'
compileSdk 34
defaultConfig {
applicationId 'com.example.newapp'
minSdk 24
targetSdk 34
versionCode 1
versionName '1.0'
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
}