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 {
compileSdkVersion 29
compileSdkVersion 30
buildToolsVersion '30.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 30
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
// 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)
}
@ -527,11 +527,11 @@ class LocationPickerController(args: Bundle) :
// empty
}
override fun onProviderEnabled(provider: String?) {
override fun onProviderEnabled(provider: String) {
// empty
}
override fun onProviderDisabled(provider: String?) {
override fun onProviderDisabled(provider: String) {
// empty
}