Decoupling http operations.

This commit is contained in:
2022-09-14 19:19:34 +08:00
parent 6ef0c5835c
commit 29a398a66a
8 changed files with 101 additions and 47 deletions

View File

@@ -19,8 +19,8 @@ android {
multiDexEnabled true
Properties buildPro = loadBuildPro()
buildConfigField "String", "API_APP_ID", buildPro['apiAppId']
buildConfigField "String", "API_APP_SECRET", buildPro['apiAppSecret']
buildConfigField "String", "ROLL_APP_ID", buildPro['rollAppId']
buildConfigField "String", "ROLL_APP_SECRET", buildPro['rollAppSecret']
}
signingConfigs {
@@ -100,11 +100,11 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.preference:preference:1.2.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.2'
implementation 'androidx.core:core-splashscreen:1.0.0'
implementation 'com.google.android.material:material:1.6.1'