mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 13:05:31 +03:00
Bump to SDK 30
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
1137d13d3a
commit
8c7b7154a6
2 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue