1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3+ package =" org.docspell.docspellshare"
4+ android : installLocation =" auto" >
5+
6+ <uses-permission android : name =" android.permission.CAMERA" />
7+ <uses-permission android : name =" android.permission.INTERNET" />
8+
9+ <application
10+ android : allowBackup =" true"
11+ android : fullBackupContent =" @xml/backup_rules"
12+ android : icon =" @drawable/logo_96"
13+ android : label =" @string/app_name"
14+ android : supportsRtl =" true"
15+ android : theme =" @style/AppTheme" >
16+
17+ <activity
18+ android : name =" .activity.QrCodeActivity"
19+ android : label =" @string/title_activity_qrcode" />
20+ <activity
21+ android : name =" .activity.ShareActivity"
22+ android : label =" @string/title_activity_share" >
23+ <intent-filter >
24+ <action android : name =" android.intent.action.SEND" />
25+ <action android : name =" android.intent.action.SEND_MULTIPLE" />
26+
27+ <category android : name =" android.intent.category.DEFAULT" />
28+
29+ <data android : mimeType =" image/*" />
30+ <data android : mimeType =" application/*" />
31+ <data android : mimeType =" text/*" />
32+ </intent-filter >
33+ </activity >
34+ <activity
35+ android : name =" .activity.AddUrlActivity"
36+ android : label =" @string/create_new_url" />
37+ <activity
38+ android : name =" .activity.MainActivity"
39+ android : label =" @string/title_activity_main"
40+ android : theme =" @style/AppTheme.NoActionBar" >
41+ <intent-filter >
42+ <action android : name =" android.intent.action.MAIN" />
43+
44+ <category android : name =" android.intent.category.LAUNCHER" />
45+ </intent-filter >
46+ </activity >
47+ </application >
48+
49+ </manifest >
0 commit comments