This repository was archived by the owner on Feb 18, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
98 lines (90 loc) · 4.43 KB
/
AndroidManifest.xml
File metadata and controls
98 lines (90 loc) · 4.43 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.lichess.mobileapp"
android:versionCode="8000000"
android:versionName="8.0.0"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:resizeableActivity="true">
<meta-data android:name="firebase_analytics_collection_deactivated" android:value="true" />
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
<meta-data android:name="google_analytics_ssaid_collection_enabled" android:value="false" />
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/ic_stat_lichess" />
<activity
android:exported="true"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
android:name="org.lichess.mobileapp.MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBarLaunch">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/analysis" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/editor" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/challenge" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/inbox" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/player" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/tournament" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/training" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/tv" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/signup/confirm" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPrefix="/study" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPattern="/........" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPattern="/......../black" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPattern="/......../white" />
<data
android:host="lichess.org" android:scheme="https"
android:pathPattern="/@/......../tv" />
</intent-filter>
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"></meta-data>
</provider>
</application>
</manifest>