password-manager/app/build.gradle

64 lines
1.9 KiB
Groovy
Raw Normal View History

2021-02-19 14:41:10 +08:00
plugins {
id 'com.android.application'
}
android {
signingConfigs {
debug {
2024-08-02 10:34:16 +08:00
storeFile file('C:\\Users\\58381\\Documents\\AndroidSign\\yutou.jks')
storePassword '34864394'
keyAlias 'yutou'
keyPassword '34864394'
}
yutou {
2024-08-02 10:34:16 +08:00
storeFile file('C:\\Users\\58381\\Documents\\AndroidSign\\yutou.jks')
storePassword '34864394'
keyAlias 'yutou'
keyPassword '34864394'
}
}
2024-08-02 10:34:16 +08:00
compileSdkVersion 33
2021-02-19 14:41:10 +08:00
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.yutou.passmanage"
2024-08-02 10:34:16 +08:00
minSdkVersion 28
targetSdkVersion 33
2021-02-19 14:41:10 +08:00
versionCode 1
versionName "1.2"
2021-02-19 14:41:10 +08:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.yutou
2021-02-19 14:41:10 +08:00
}
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'
2021-02-20 18:29:46 +08:00
implementation 'com.alibaba:fastjson:1.2.68'
2021-02-22 18:34:56 +08:00
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"
2024-08-02 10:34:16 +08:00
api project(path:':TabLayout')
api project(path:':ViewPager2Delegate')
2021-02-19 14:41:10 +08:00
}