fix: Small warning

This commit is contained in:
J-Jamet 2023-05-14 13:14:27 +02:00
parent ee1a0a53a6
commit b713237ec3
3 changed files with 11 additions and 14 deletions

View file

@ -38,7 +38,7 @@ class IconPackListPreference @JvmOverloads constructor(context: Context,
for (iconPack in IconPackChooser.getIconPackList(context)) { for (iconPack in IconPackChooser.getIconPackList(context)) {
if (iconPack.id != null) { if (iconPack.id != null) {
entries.add(iconPack.name) entries.add(iconPack.name)
values.add(iconPack.id!!) values.add(iconPack.id)
} }
} }

View file

@ -190,7 +190,7 @@ object UriUtil {
fun Context.openUrl(url: String?) { fun Context.openUrl(url: String?) {
try { try {
if (url != null && url.isNotEmpty()) { if (!url.isNullOrEmpty()) {
// Default http:// if no protocol specified // Default http:// if no protocol specified
val newUrl = if (!url.contains("://")) { val newUrl = if (!url.contains("://")) {
"http://$url" "http://$url"
@ -210,20 +210,17 @@ object UriUtil {
fun Context.isContributingUser(): Boolean { fun Context.isContributingUser(): Boolean {
return (Education.isEducationScreenReclickedPerformed(this) return (Education.isEducationScreenReclickedPerformed(this)
|| isExternalAppInstalled( || isExternalAppInstalled(this.getString(R.string.keepro_app_id), false)
this,
this.getString(R.string.keepro_app_id),
false
)
) )
} }
private fun isExternalAppInstalled(context: Context, fun Context.isExternalAppInstalled(packageName: String, showError: Boolean = true): Boolean {
packageName: String,
showError: Boolean = true): Boolean {
try { try {
context.applicationContext.packageManager.getPackageInfo(packageName, PackageManager.GET_ACTIVITIES) this.applicationContext.packageManager.getPackageInfo(
Education.setEducationScreenReclickedPerformed(context) packageName,
PackageManager.GET_ACTIVITIES
)
Education.setEducationScreenReclickedPerformed(this)
return true return true
} catch (e: Exception) { } catch (e: Exception) {
if (showError) if (showError)

View file

@ -73,7 +73,7 @@ object UriHelper {
fun Uri.withFileScheme(): Boolean { fun Uri.withFileScheme(): Boolean {
val scheme = this.scheme val scheme = this.scheme
if (scheme == null || scheme.isEmpty() || scheme.lowercase(Locale.ENGLISH) == "file") { if (scheme.isNullOrEmpty() || scheme.lowercase(Locale.ENGLISH) == "file") {
return true return true
} }
return false return false
@ -87,5 +87,5 @@ object UriHelper {
return false return false
} }
private const val TAG = "UriUtilDatabase" private const val TAG = "UriHelper"
} }