Clears the baseline of issues in our code, and resolves most of the straightforward warnings from the report
5 lines
169 B
Kotlin
5 lines
169 B
Kotlin
package com.keylesspalace.tusky.interfaces
|
|
|
|
fun interface PermissionRequester {
|
|
fun onRequestPermissionsResult(permissions: Array<String>, grantResults: IntArray)
|
|
}
|