Upload Code

This commit is contained in:
mxdabc
2026-04-13 23:56:09 +08:00
parent 6c3c7de263
commit 58fc5cf7a3
33 changed files with 891 additions and 0 deletions

36
app/build.gradle Normal file
View File

@@ -0,0 +1,36 @@
plugins {
id 'com.android.application'
}
android {
namespace 'com.mxdyeah.tools'
compileSdk 31
defaultConfig {
applicationId "com.mxdyeah.tools"
minSdk 21
targetSdk 31
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
implementation 'com.google.zxing:core:3.5.3'
implementation 'com.google.android.gms:play-services-ads:20.6.0'
}