Bump to SDK 30

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2021-08-26 12:26:46 +02:00
parent 1137d13d3a
commit 8c7b7154a6
No known key found for this signature in database
GPG Key ID: 0E00D4D47D0C5AF7
2 changed files with 5 additions and 5 deletions

View File

@ -45,11 +45,11 @@ for (TaskExecutionRequest tr : getGradle().getStartParameter().getTaskRequests()
} }
android { android {
compileSdkVersion 29 compileSdkVersion 30
buildToolsVersion '30.0.3' buildToolsVersion '30.0.3'
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 29 targetSdkVersion 30
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
// mayor.minor.hotfix.increment (for increment: 01-50=Alpha / 51-89=RC / 90-99=stable) // mayor.minor.hotfix.increment (for increment: 01-50=Alpha / 51-89=RC / 90-99=stable)

View File

@ -519,7 +519,7 @@ class LocationPickerController(args: Bundle) :
} }
} }
override fun onLocationChanged(location: Location?) { override fun onLocationChanged(location: Location) {
myLocation = GeoPoint(location) myLocation = GeoPoint(location)
} }
@ -527,11 +527,11 @@ class LocationPickerController(args: Bundle) :
// empty // empty
} }
override fun onProviderEnabled(provider: String?) { override fun onProviderEnabled(provider: String) {
// empty // empty
} }
override fun onProviderDisabled(provider: String?) { override fun onProviderDisabled(provider: String) {
// empty // empty
} }