| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- plugins {
- id 'com.android.dynamic-feature'
- id 'org.jetbrains.kotlin.android'
- id 'org.jetbrains.kotlin.kapt'
- id 'kotlin-parcelize'
- }
- android {
- namespace 'com.adealink.weparty.account'
- compileSdk libs.versions.compileSdk.get().toInteger()
- defaultConfig {
- minSdk libs.versions.minSdk.get().toInteger()
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- manifestPlaceholders = [
- appAuthRedirectScheme: "",
- ]
- }
- buildTypes {
- release {
- debuggable false
- }
- }
- viewBinding {
- enabled = true
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- kotlinOptions {
- jvmTarget = JavaVersion.VERSION_17.majorVersion
- }
- }
- dependencies {
- implementation project(":app")
- //gms
- implementation libs.gms.google.services.auth
- implementation libs.google.lib.phone.number
- implementation libs.gms.play.services.auth.api.phone
- // //apple
- // implementation libs.apple.appauth
- // implementation libs.tiktok.core
- // implementation libs.tiktok.auth
- //frame
- kapt libs.frame.router.compiler
- // implementation (libs.whatsapp.otp.android.sdk)
- //test
- testImplementation libs.junit
- androidTestImplementation libs.androidx.junit
- androidTestImplementation libs.androidx.espresso.core
- }
|