Skip to content

Commit

Permalink
Removed Conscrypt support
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed Jun 26, 2020
1 parent 9a1034c commit fd8889a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -40,7 +40,7 @@ android {
applicationId "com.javinator9889.handwashingreminder"
minSdkVersion 17
targetSdkVersion 29
versionCode 130
versionCode 131
versionName "1.2.0-${gitCommitHash}"
multiDexEnabled true
resConfigs "en", "es"
Expand Down Expand Up @@ -194,7 +194,7 @@ dependencies {
// https://square.github.io/okio/#releases
implementation 'com.squareup.okio:okio:2.5.0'
// https://github.com/google/conscrypt/
implementation 'org.conscrypt:conscrypt-android:2.4.0'
// implementation 'org.conscrypt:conscrypt-android:2.4.0'
// https://github.com/deano2390/MaterialShowcaseView
implementation 'com.github.deano2390:MaterialShowcaseView:1.3.4'
// https://github.com/PhilJay/MPAndroidChart
Expand Down
Expand Up @@ -54,9 +54,7 @@ import com.mikepenz.iconics.Iconics
import javinator9889.localemanager.utils.languagesupport.LanguagesSupport.Language
import kotlinx.android.synthetic.main.splash_screen.*
import kotlinx.coroutines.*
import org.conscrypt.Conscrypt
import timber.log.Timber
import java.security.Security
import com.javinator9889.handwashingreminder.utils.Firebase as FirebaseConf

internal const val FAST_START_KEY = "intent:fast_start"
Expand Down Expand Up @@ -248,8 +246,8 @@ class LauncherActivity : AppCompatActivity() {
Timber.d("Firebase initialized correctly")
Timber.d("Initializing Iconics")
Iconics.init(this)
Timber.d("Setting-up security providers")
Security.insertProviderAt(Conscrypt.newProvider(), 1)
// Timber.d("Setting-up security providers")
// Security.insertProviderAt(Conscrypt.newProvider(), 1)
Timber.d("Setting-up activity recognition")
val activityHandler = ActivityHandler.getInstance(this)
if (sharedPreferences.getBoolean(
Expand Down

0 comments on commit fd8889a

Please sign in to comment.