androidMain.tech.skot.libraries.map.view.PermissionsImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viewlegacy_mapbox Show documentation
Show all versions of viewlegacy_mapbox Show documentation
viewlegacy_mapbox module for SK-Map skot library
The newest version!
package tech.skot.libraries.map.view
import android.Manifest
import tech.skot.view.SKPermissionAndroid
class PermissionsImpl : Permissions {
override val coarseLocation = SKPermissionAndroid(Manifest.permission.ACCESS_COARSE_LOCATION)
override val fineLocation = SKPermissionAndroid(Manifest.permission.ACCESS_FINE_LOCATION)
}