|
|
|
|
@ -99,6 +99,8 @@ android {
|
|
|
|
|
debug {
|
|
|
|
|
debuggable true
|
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
shrinkResources false
|
|
|
|
|
// ndk {
|
|
|
|
|
// abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
|
|
|
|
|
// }
|
|
|
|
|
@ -135,6 +137,9 @@ android {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
flutter {
|
|
|
|
|
@ -184,6 +189,10 @@ dependencies {
|
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
|
|
|
|
|
implementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
|
implementation 'com.android.volley:volley:1.2.1'
|
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
|
|
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.8.5'
|
|
|
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.8.5'
|
|
|
|
|
implementation 'androidx.activity:activity:1.9.3'
|
|
|
|
|
def room_version = "2.4.0-alpha04"
|
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
|
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
|
|
|
@ -216,4 +225,6 @@ dependencies {
|
|
|
|
|
implementation 'com.airbnb.android:lottie:5.2.0'
|
|
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.22'
|
|
|
|
|
|
|
|
|
|
implementation 'com.whatsapp.otp:whatsapp-otp-android-sdk:0.1.0'
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|