-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
52 lines (43 loc) · 2.29 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
<?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_rider_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_rider_app.ExampleRiderApplication"
android:allowBackup="false"
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 default fleet ID here -->
<meta-data android:name="default_fleet_id" android:value="0"/>
<!-- Set to true to show developer options in the side panel -->
<meta-data android:name="enable_developer_options" android:value="false"/>
<!-- https://issuetracker.google.com/issues/79478779 -->
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity android:name="ai.rideos.android.rider_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.rider_app.MainFragmentActivity"
android:theme="@style/GuardianTheme"
android:screenOrientation="portrait"
>
</activity>
</application>
</manifest>