-
Notifications
You must be signed in to change notification settings - Fork 5
/
AndroidManifest.xml
55 lines (47 loc) · 2.39 KB
/
AndroidManifest.xml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="ai.rideos.android.example_driver_app">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:name="ai.rideos.android.example_driver_app.ExampleDriverApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/final_app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
tools:ignore="GoogleAppIndexingWarning">
<!-- Add your GMS API key here -->
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_api_key"/>
<!-- Add your Mapbox API token here -->
<meta-data
android:name="mapbox_token"
android:value="@string/mapbox_token"/>
<!-- Add your default fleet ID here -->
<meta-data android:name="default_fleet_id" android:value="0"/>
<!-- https://issuetracker.google.com/issues/79478779 -->
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity android:name="ai.rideos.android.driver_app.launch.LaunchActivity"
android:theme="@style/RideOS.LoginTheme"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name="com.auth0.android.lock.LockActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/CustomLockTheme"/>
<activity android:name="ai.rideos.android.driver_app.MainFragmentActivity"
android:theme="@style/GuardianTheme"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize|stateHidden">
</activity>
</application>
</manifest>