-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
executable file
·136 lines (123 loc) · 5.8 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.openatk.trello"
android:versionCode="5"
android:versionName="2.2" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="17" />
<!-- Include the permission here too so if this app is installed first it knows what it is looking for -->
<permission
android:name="com.openatk.trello.permission.sync"
android:label="@string/trello_perm_label"
android:description="@string/trello_perm_label"
android:protectionLevel="signature" />
<!-- Access everyones trello data -->
<uses-permission android:name="com.openatk.trello.permission.sync"/>
<!-- Authenticator client -->
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
<!-- Authenticator -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
<!-- Sync Adapter -->
<uses-permission android:name="android.permission.READ_SYNC_STATS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<application
android:allowBackup="true"
android:icon="@drawable/launcher"
android:theme="@style/AppTheme"
android:label="@string/app_name">
<activity
android:name="com.openatk.trello.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.Browser"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.OrganizationsList"
android:label="@string/organizations_list_topbar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.AddOrganization"
android:label="@string/add_organization_topbar"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.AppsList"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.MembersList"
android:label="@string/member_list_topbar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.AddMembersList"
android:label="@string/add_member_list_topbar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.openatk.trello.LoginsList"
android:label="@string/apps_list_topbar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- Authenticator related activities and service needs to be declared here in order for the app to recognize them-->
<activity android:name="com.openatk.trello.authenticator.AuthenticatorActivity" android:label="@string/label"/>
<!-- Authenticator related service -->
<service android:name="com.openatk.trello.authenticator.TrelloAuthenticatorService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
<provider android:authorities="com.openatk.trello.provider"
android:name="com.openatk.trello.sync_adapter.SyncProvider"
android:exported="true"/>
<!-- Sync adapter related service -->
<service
android:name="com.openatk.trello.sync_adapter.TrelloSyncService"
android:exported="true">
<intent-filter>com.openatk.trello.provider
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data
android:name="android.content.SyncAdapter"
android:resource="@xml/sync_adapter" />
</service>
</application>
</manifest>