Skip to content

Commit

Permalink
Use AndroidX PreferenceManager
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Sep 11, 2019
1 parent 6476316 commit cd0fa38
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 19 deletions.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Jan 8 01:52:21 CET 2018
#Tue Sep 10 22:40:11 COT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.zip
1 change: 1 addition & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ android {
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.preference:preference:1.1.0'
implementation 'com.google.android.material:material:1.0.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.github.javiersantos.piracychecker.utils

import android.content.Context
import android.preference.PreferenceManager
import androidx.preference.PreferenceManager
import java.util.Random

/**
Expand All @@ -16,10 +16,8 @@ internal object SaltUtils {
val sb = StringBuilder()
mSalt?.let {
for (i in it.indices) {
if (i > 0) {
sb.append(" ")
}
sb.append(java.lang.Byte.toString(it[i]))
if (i > 0) sb.append(" ")
sb.append(it[i].toString())
}
}
return sb.toString()
Expand All @@ -34,10 +32,8 @@ internal object SaltUtils {
}
}
context ?: return
val saltStr = saltString
PreferenceManager.getDefaultSharedPreferences(context)
.edit().putString(KEY_SALT, saltStr)
.apply()
.edit().putString(KEY_SALT, saltString).apply()
}

private fun bytesFromString(string: String): ByteArray {
Expand All @@ -54,20 +50,15 @@ internal object SaltUtils {
mSalt = context?.let {
try {
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
if (prefs.contains(
KEY_SALT)) {
bytesFromString(
prefs.getString(
KEY_SALT,
null))
if (prefs.contains(KEY_SALT)) {
val saltFromPrefs = prefs.getString(KEY_SALT, null)
saltFromPrefs?.let { bytesFromString(it) }
} else null
} catch (e: Exception) {
null
}
}
if (mSalt == null) {
generateSalt(context)
}
if (mSalt == null) generateSalt(context)
}
return mSalt
}
Expand Down

0 comments on commit cd0fa38

Please sign in to comment.