新增了两个项目

This commit is contained in:
xuhuixiang
2025-03-03 18:27:26 +08:00
parent 88266e7353
commit 0b98b1bc21
134 changed files with 2722 additions and 295 deletions

48
bk888/build.gradle Normal file
View File

@@ -0,0 +1,48 @@
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}
android {
compileSdkVersion 31
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.web.bk888"
minSdkVersion 24
targetSdkVersion 31
versionCode 107
versionName "v1.0.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
debug {
storeFile file('ppn.jks')
storePassword "2014123456"
keyAlias 'key0'
keyPassword "2014123456"
}
release {
storeFile file('ppn.jks')
storePassword "2014123456"
keyAlias 'key0'
keyPassword "2014123456"
}
}
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 project(path: ':base')
}