-
Notifications
You must be signed in to change notification settings - Fork 5
/
AndroidManifest.xml
99 lines (92 loc) · 4.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:name=".MainApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/AppTheme"
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<activity
android:name=".ui.home.HomeActivity"
android:exported="true"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="fr.geonature.datasync.features.settings.presentation.ConfigureServerSettingsActivity"
android:exported="false"
android:label="@string/activity_configure_server_settings_title" />
<activity
android:name="fr.geonature.datasync.ui.login.LoginActivity"
android:label="@string/activity_login_title"
android:theme="@style/AppTheme.Login"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".ui.settings.PreferencesActivity"
android:label="@string/activity_preferences_title"
android:windowSoftInputMode="adjustResize" />
<activity
android:name=".ui.input.map.MapPreferencesActivity"
android:label="@string/activity_map_preferences_title" />
<activity
android:name=".ui.dataset.DatasetListActivity"
android:label="@string/activity_dataset_title"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".ui.observers.InputObserverListActivity"
android:label="@string/activity_observers_title"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".ui.input.InputPagerFragmentActivity"
android:label="@string/activity_input_title"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity" />
<activity
android:name=".ui.input.taxa.TaxaFilterActivity"
android:label="@string/activity_taxa_filter_title" />
<activity android:name=".ui.input.counting.EditCountingMetadataActivity" />
<activity
android:name=".ui.input.counting.MediaListActivity"
android:label="@string/activity_counting_media_title"
android:theme="@style/AppTheme.NoActionBar" />
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="dataSync"
tools:node="merge" />
<!--+
| remove the default initializer
+-->
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
tools:node="remove" />
<provider
android:name="fr.geonature.commons.data.MainContentProvider"
android:authorities="${applicationId}.provider"
android:exported="true"
android:readPermission="${applicationId}.provider.permission.READ"
android:writePermission="${applicationId}.provider.permission.WRITE" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.file.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_provider_paths" />
</provider>
</application>
</manifest>