还好剩一点点 留得青山在 不怕没柴烧

This commit is contained in:
xuhuixiang
2025-02-12 15:39:20 +08:00
parent 4b306a3d7e
commit 098e86901d
43 changed files with 1202 additions and 0 deletions

50
speednp/build.gradle Normal file
View File

@@ -0,0 +1,50 @@
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}
android {
compileSdkVersion 31
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.web.speednp"
minSdkVersion 24
targetSdkVersion 31
versionCode 107
versionName "v1.0.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
signingConfigs {
debug {
storeFile file('Oyen333.jks')
storePassword "dskj123456"
keyAlias 'key0'
keyPassword "dskj123456"
}
release {
storeFile file('Oyen333.jks')
storePassword "dskj123456"
keyAlias 'key0'
keyPassword "dskj123456"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation project(path: ':base')
}