diff --git a/src/android/app/build.gradle b/src/android/app/build.gradle index a3f90daa..7428f8c9 100644 --- a/src/android/app/build.gradle +++ b/src/android/app/build.gradle @@ -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'