/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/src/com/mapswithme/maps/geofence/GeofenceRegistry.java
11 строк
372 B
Александр Зацепин
[android] Migrated code to Android X
22 окт 2019, 15:11
22 окт 2019, 15:11
f2dd324
Код
Авторство
О чём код?
package com.mapswithme.maps.geofence; import androidx.annotation.NonNull; import com.mapswithme.maps.location.LocationPermissionNotGrantedException; public interface GeofenceRegistry { void registerGeofences(@NonNull GeofenceLocation location) throws LocationPermissionNotGrantedException; void unregisterGeofences() throws LocationPermissionNotGrantedException; }