summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/AndroidManifest.xml
blob: 84bd5ec39661b7eb7228cbfd83a4a0b11cc4a58f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<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"/>

    <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"/>

    <uses-sdk tools:overrideLibrary="com.mapzen.lost"/>

    <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>

    <!-- Enable the CN endpoint -->
    <meta-data
        android:name="com.mapbox.CnEventsServer"
        android:value="true"/>

</manifest>