74 lines
2.3 KiB
Groovy
74 lines
2.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('C:\\Users\\58381\\Documents\\AndroidSign\\yutou.jks')
|
|
storePassword '34864394'
|
|
keyAlias 'yutou'
|
|
keyPassword '34864394'
|
|
}
|
|
yutou {
|
|
storeFile file('C:\\Users\\58381\\Documents\\AndroidSign\\yutou.jks')
|
|
storePassword '34864394'
|
|
keyAlias 'yutou'
|
|
keyPassword '34864394'
|
|
}
|
|
}
|
|
compileSdkVersion 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.yutou.passmanage"
|
|
minSdkVersion 28
|
|
targetSdkVersion 34
|
|
versionCode 1
|
|
versionName "1.3"
|
|
|
|
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
|
|
}
|
|
namespace 'com.yutou.passmanage'
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.navigation:navigation-fragment:2.7.7'
|
|
implementation 'androidx.navigation:navigation-ui:2.7.7'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.4'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
|
|
implementation 'com.alibaba.fastjson2:fastjson2:2.0.52'
|
|
|
|
implementation "androidx.room:room-runtime:2.6.1"
|
|
annotationProcessor "androidx.room:room-compiler:2.6.1"
|
|
implementation "androidx.biometric:biometric:1.1.0"
|
|
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
|
|
api project(path:':TabLayout')
|
|
api project(path:':ViewPager2Delegate')
|
|
api project(path:':netlibs')
|
|
|
|
} |