Skip to content

Commit

Permalink
update dependencies and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wuan committed Oct 20, 2024
1 parent ed13945 commit 336be39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Preferences : PreferenceActivity(), OnSharedPreferenceChangeListener {

PreferenceKey.LOCATION_MODE -> {
val provider = configureLocationProviderPreferences(sharedPreferences)
getSystemService(Context.LOCATION_SERVICE) as LocationManager
getSystemService(LOCATION_SERVICE) as LocationManager
if (provider != LocationHandler.MANUAL_PROVIDER &&
!(getSystemService(LOCATION_SERVICE) as LocationManager).isProviderEnabled(provider)
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import org.robolectric.annotation.Config
@Config(manifest = Config.NONE)
class StrikeColorHandlerTest {

lateinit var strikeColorHandler: StrikeColorHandler;
lateinit var strikeColorHandler: StrikeColorHandler

@Before
fun setUp() {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.7.0' apply false
id 'com.android.library' version '8.7.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.25' apply false
id 'com.android.application' version '8.7.1' apply false
id 'com.android.library' version '8.7.1' apply false
id 'org.jetbrains.kotlin.android' version '2.0.20' apply false
id "org.sonarqube" version "5.1.0.4882"
}

Expand Down

0 comments on commit 336be39

Please sign in to comment.