63 lines
1.7 KiB
Groovy
63 lines
1.7 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('D:\\AndroidKeys\\yutou.jks')
|
|
storePassword '34864394'
|
|
keyAlias 'yutou'
|
|
keyPassword '34864394'
|
|
}
|
|
yutou {
|
|
storeFile file('D:\\AndroidKeys\\yutou.jks')
|
|
storePassword '34864394'
|
|
keyAlias 'yutou'
|
|
keyPassword '34864394'
|
|
}
|
|
}
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.yutou.passmanage"
|
|
minSdkVersion 23
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.1"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
signingConfig signingConfigs.yutou
|
|
}
|
|
|
|
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.2.0'
|
|
implementation 'com.google.android.material:material:1.2.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
testImplementation 'junit:junit:4.+'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
|
|
implementation 'com.alibaba:fastjson:1.2.68'
|
|
|
|
def room_version = "2.2.6"
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
implementation "androidx.biometric:biometric:1.1.0"
|
|
|
|
} |