summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/AndroidManifest.xml
blob: 75d0814522aa8848b8af43cc1a64eba24112b6e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.mapbox.mapboxsdk">

    <uses-feature android:glEsVersion="0x00020000" android:required="true" />
    <uses-feature android:name="android.hardware.wifi" android:required="false" /> <!-- Implied by ACCESS_WIFI_STATE. -->
    <uses-feature android:name="android.hardware.location.gps" android:required="false" tools:replace="required" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

    <application>
        <!-- Include the telemetry service to simplify set up (https://www.mapbox.com/telemetry) -->
        <service android:name="com.mapbox.services.android.telemetry.service.TelemetryService"/>
    </application>

</manifest>