Enable detekt rule ImplicitDefaultLocale and fix existing issue.
This commit is contained in:
parent
996574f2c6
commit
f3974dd570
2 changed files with 2 additions and 2 deletions
|
|
@ -183,7 +183,7 @@ fun Context.startInstallFromSourceIntent(
|
||||||
noActivityFoundMessage: String = getString(R.string.error_no_compatible_app_found),
|
noActivityFoundMessage: String = getString(R.string.error_no_compatible_app_found),
|
||||||
) {
|
) {
|
||||||
val intent = Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES)
|
val intent = Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES)
|
||||||
.setData(Uri.parse(String.format("package:%s", packageName)))
|
.setData(Uri.parse("package:$packageName"))
|
||||||
try {
|
try {
|
||||||
activityResultLauncher.launch(intent)
|
activityResultLauncher.launch(intent)
|
||||||
} catch (activityNotFoundException: ActivityNotFoundException) {
|
} catch (activityNotFoundException: ActivityNotFoundException) {
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ empty-blocks:
|
||||||
|
|
||||||
potential-bugs:
|
potential-bugs:
|
||||||
ImplicitDefaultLocale:
|
ImplicitDefaultLocale:
|
||||||
active: false
|
active: true
|
||||||
|
|
||||||
exceptions:
|
exceptions:
|
||||||
TooGenericExceptionCaught:
|
TooGenericExceptionCaught:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue