This commit is contained in:
LittleTurtle2333
2020-05-08 00:40:44 +08:00
committed by LittleTurtle2333
parent e3dae9d88f
commit 8ad4b4aad3
43 changed files with 5132 additions and 0 deletions

25
app/build.gradle Executable file
View File

@@ -0,0 +1,25 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "Simplicity.LT.Tools"
minSdkVersion 24
targetSdkVersion 29
versionCode 1
versionName '3.5.0'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildToolsVersion = '29.0.2'
}
dependencies {
implementation files('libs/sdk.jar')
implementation 'com.android.support:appcompat-v7:28.0.0'
}