diff --git a/android/app/build.gradle b/android/app/build.gradle index e753c45c467..db7843d72df 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -189,7 +189,6 @@ android { } signingConfigs { - def pass = "" release { storeFile file('../keystores/release.keystore') storePassword System.getenv("BITRISEIO_ANDROID_KEYSTORE_PASSWORD") @@ -264,6 +263,10 @@ dependencies { androidTestImplementation('com.wix:detox:+') { transitive = true } androidTestImplementation 'junit:junit:4.12' implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" + implementation "com.squareup.okhttp3:okhttp:4.9.1" + implementation "com.squareup.okhttp3:logging-interceptor:4.9.1" + implementation "com.squareup.okhttp3:okhttp-urlconnection:4.9.1" + debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { exclude group:'com.facebook.fbjni' } diff --git a/android/build.gradle b/android/build.gradle index 8fc4b6bd42f..ee7644176dd 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -3,10 +3,10 @@ buildscript { ext { - buildToolsVersion = "29.0.2" + buildToolsVersion = "30.0.3" minSdkVersion = project.hasProperty('minSdkVersion') ? project.getProperty('minSdkVersion') : 19 - compileSdkVersion = 29 - targetSdkVersion = 29 + compileSdkVersion = 30 + targetSdkVersion = 30 kotlin_version = "1.3.50" kotlinVersion = "$kotlin_version" }