@@ -3,7 +3,11 @@ apply plugin: 'io.sentry.android.gradle'
33apply plugin : ' kotlin-android'
44
55def keystoreProperties = new Properties ()
6- keystoreProperties. load(new FileInputStream (rootProject. file(" keystore.properties" )))
6+ if (new File (" keystore.properties" ). exists()) {
7+ keystoreProperties. load(new FileInputStream (rootProject. file(" keystore.properties" )))
8+ } else {
9+ keystoreProperties. load(new FileInputStream (rootProject. file(" fakekeystore.properties" )))
10+ }
711
812android {
913 signingConfigs {
@@ -101,12 +105,12 @@ dependencies {
101105 implementation ' com.google.code.gson:gson:2.8.5'
102106 implementation ' com.squareup.retrofit2:converter-gson:2.5.0'
103107
104- implementation " com.android.support :appcompat-v7: $s upportLibsVersion "
105- implementation " com.android.support:support-annotations: $s upportLibsVersion "
106- implementation " com.android.support: support-v4:$s upportLibsVersion "
107- implementation " com.android.support:design: $s upportLibsVersion "
108- implementation " com.android.support :cardview-v7: $s upportLibsVersion "
109- implementation " com.android.support: preference-v14:$s upportLibsVersion "
108+ implementation ' androidx.appcompat :appcompat:1.1.0 '
109+ implementation ' androidx.annotation:annotation:1.1.0 '
110+ implementation ' androidx.legacy:legacy- support-v4:1.0.0 '
111+ implementation ' com.google. android.material:material:1.1.0 '
112+ implementation ' androidx.cardview :cardview:1.0.0 '
113+ implementation ' androidx.legacy:legacy- preference-v14:1.0.0 '
110114
111115 // Used to support stream API from JAVA8 and JAVA9
112116 implementation " net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion "
@@ -117,8 +121,9 @@ dependencies {
117121
118122 // For crash logging
119123 implementation ' io.sentry:sentry-android-core:2.0.+'
124+
120125 // Powerful library for logging
121- implementation ' org.slf4j:slf4j-api:1.7.0 '
126+ implementation ' org.slf4j:slf4j-api:1.7.24 '
122127 implementation ' org.slf4j:jul-to-slf4j:1.7.0'
123128 implementation ' com.github.tony19:logback-android:2.0.0'
124129
0 commit comments