Updated gradle build

This commit is contained in:
SSimco
2024-05-26 17:50:03 +03:00
parent fb03e66041
commit 8a4b99b3e1
+6 -9
View File
@@ -18,20 +18,12 @@ android {
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
}
debug {
applicationIdSuffix ".debug"
@@ -69,11 +61,16 @@ android {
}
}
buildFeatures {
dataBinding true
viewBinding true
}
}
dependencies {
implementation "androidx.datastore:datastore-rxjava3:1.1.0"
implementation "androidx.datastore:datastore-preferences:1.1.0"
implementation "androidx.datastore:datastore:1.1.0"
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'