新增了一些工程
This commit is contained in:
48
ppn88/build.gradle
Normal file
48
ppn88/build.gradle
Normal 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.ppn88"
|
||||
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('ppn.jks')
|
||||
storePassword "2014123456"
|
||||
keyAlias 'key0'
|
||||
keyPassword "2014123456"
|
||||
}
|
||||
release {
|
||||
storeFile file('ppn.jks')
|
||||
storePassword "2014123456"
|
||||
keyAlias 'key0'
|
||||
keyPassword "2014123456"
|
||||
}
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(path: ':base')
|
||||
}
|
||||
Reference in New Issue
Block a user