~openerp-dev/openerp-mobile/openerp-mobile-10

« back to all changes in this revision

Viewing changes to AndroidManifest.xml

  • Committer: Dharmang Soni (OpenERP)
  • Date: 2014-04-03 07:28:06 UTC
  • Revision ID: dpr@tinyerp.com-20140403072806-qphqroz65ch61pqt
[REMOVE] removed social client module from base framework

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
3
    package="com.openerp"
4
 
    android:versionCode="17"
 
4
    android:versionCode="1"
5
5
    android:versionName="1.0 Beta" >
6
6
 
7
7
    <uses-sdk
61
61
                <action android:name="com.openerp.ACTION_ACCOUNT_CONFIG" />
62
62
            </intent-filter>
63
63
        </activity>
64
 
        <activity android:name="com.openerp.addons.note.NoteComposeActivity" />
65
 
        <activity android:name="com.openerp.addons.message.MessageComposeActivity" >
66
 
            <intent-filter>
67
 
                <action android:name="android.intent.action.SEND" />
68
 
                <action android:name="android.intent.action.VIEW" />
69
 
 
70
 
                <category android:name="android.intent.category.DEFAULT" />
71
 
 
72
 
                <data android:mimeType="image/*" />
73
 
                <data android:mimeType="vnd.android.cursor.item/vnd.com.openerp.auth.profile" />
74
 
            </intent-filter>
75
 
            <intent-filter>
76
 
                <action android:name="android.intent.action.SEND" />
77
 
 
78
 
                <category android:name="android.intent.category.DEFAULT" />
79
 
 
80
 
                <data android:mimeType="text/plain" />
81
 
            </intent-filter>
82
 
            <intent-filter>
83
 
                <action android:name="android.intent.action.SEND_MULTIPLE" />
84
 
 
85
 
                <category android:name="android.intent.category.DEFAULT" />
86
 
 
87
 
                <data android:mimeType="image/*" />
88
 
            </intent-filter>
89
 
            <intent-filter>
90
 
                <action android:name="android.intent.action.SEND_MULTIPLE" />
91
 
 
92
 
                <category android:name="android.intent.category.DEFAULT" />
93
 
 
94
 
                <data android:mimeType="text/plain" />
95
 
            </intent-filter>
96
 
        </activity>
97
 
 
98
 
        <!-- Message provider -->
99
 
        <provider
100
 
            android:name="com.openerp.addons.message.providers.message.MessageProvider"
101
 
            android:authorities="com.openerp.addons.message.providers.message"
102
 
            android:enabled="true"
103
 
            android:exported="true"
104
 
            android:label="Messages"
105
 
            android:syncable="true" />
106
 
        <!-- Message provider service -->
107
 
        <service
108
 
            android:name="com.openerp.addons.message.services.MessageSyncService"
109
 
            android:exported="true" >
110
 
            <intent-filter>
111
 
                <action android:name="android.content.SyncAdapter" />
112
 
            </intent-filter>
113
 
 
114
 
            <meta-data
115
 
                android:name="android.content.SyncAdapter"
116
 
                android:resource="@xml/sync_messages" />
117
 
        </service>
118
 
 
119
 
        <!-- Note provider -->
120
 
        <provider
121
 
            android:name="com.openerp.addons.note.providers.note.NoteProvider"
122
 
            android:authorities="com.openerp.addons.note.providers.note"
123
 
            android:enabled="true"
124
 
            android:exported="true"
125
 
            android:label="Notes"
126
 
            android:syncable="true" />
127
 
        <!-- Note provider service -->
128
 
        <service
129
 
            android:name="com.openerp.addons.note.services.NoteSyncService"
130
 
            android:exported="true" >
131
 
            <intent-filter>
132
 
                <action android:name="android.content.SyncAdapter" />
133
 
            </intent-filter>
134
 
 
135
 
            <meta-data
136
 
                android:name="android.content.SyncAdapter"
137
 
                android:resource="@xml/sync_notes" />
138
 
        </service>
139
 
 
140
 
        <!-- Mail Group provider -->
141
 
        <provider
142
 
            android:name="com.openerp.addons.message.providers.groups.MailGroupProvider"
143
 
            android:authorities="com.openerp.addons.message.providers.groups"
144
 
            android:enabled="true"
145
 
            android:exported="true"
146
 
            android:label="Groups"
147
 
            android:syncable="true" />
148
 
 
149
 
        <!-- Mail Group provider service -->
150
 
        <service
151
 
            android:name="com.openerp.addons.message.services.MailGroupSyncService"
152
 
            android:exported="true" >
153
 
            <intent-filter>
154
 
                <action android:name="android.content.SyncAdapter" />
155
 
            </intent-filter>
156
 
 
157
 
            <meta-data
158
 
                android:name="android.content.SyncAdapter"
159
 
                android:resource="@xml/sync_groups" />
160
 
        </service>
161
 
 
162
 
        <!-- Meeting service -->
163
 
        <service
164
 
            android:name="com.openerp.addons.meeting.services.MeetingSyncService"
165
 
            android:exported="true" >
166
 
            <intent-filter>
167
 
                <action android:name="android.content.SyncAdapter" />
168
 
            </intent-filter>
169
 
 
170
 
            <meta-data
171
 
                android:name="android.content.SyncAdapter"
172
 
                android:resource="@xml/sync_meetings" />
173
 
        </service>
174
64
 
175
65
        <!-- Contact service -->
176
66
        <service
188
78
                android:name="android.provider.CONTACTS_STRUCTURE"
189
79
                android:resource="@xml/contacts" />
190
80
        </service>
191
 
 
192
 
        <!-- Message Widget -->
193
 
        <receiver
194
 
            android:name="com.openerp.addons.message.widgets.MessageWidget"
195
 
            android:label="OpenERP Messaging" >
196
 
            <intent-filter>
197
 
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
198
 
            </intent-filter>
199
 
 
200
 
            <meta-data
201
 
                android:name="android.appwidget.provider"
202
 
                android:resource="@xml/widget_message" />
203
 
        </receiver>
204
 
        <!-- Message widget remote view service -->
205
 
        <service
206
 
            android:name="com.openerp.addons.message.widgets.MessageRemoteViewService"
207
 
            android:permission="android.permission.BIND_REMOTEVIEWS" />
208
 
 
209
 
        <!-- Message widget configuration -->
210
 
        <activity android:name="com.openerp.addons.message.widgets.MessageWidgetConfigure" >
211
 
            <intent-filter>
212
 
                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
213
 
            </intent-filter>
214
 
        </activity>
215
 
 
216
 
        <!-- Note Widget -->
217
 
        <receiver
218
 
            android:name="com.openerp.addons.note.widgets.NoteWidget"
219
 
            android:label="OpenERP Notes" >
220
 
            <intent-filter>
221
 
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
222
 
            </intent-filter>
223
 
 
224
 
            <meta-data
225
 
                android:name="android.appwidget.provider"
226
 
                android:resource="@xml/widget_note" />
227
 
        </receiver>
228
 
        <!-- Note widget remote view service -->
229
 
        <service
230
 
            android:name="com.openerp.addons.note.widgets.NoteRemoteViewService"
231
 
            android:permission="android.permission.BIND_REMOTEVIEWS" />
232
 
        <!-- Note widget configuration -->
233
 
        <activity android:name="com.openerp.addons.note.widgets.NoteWidgetConfigure" >
234
 
            <intent-filter>
235
 
                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
236
 
            </intent-filter>
237
 
        </activity>
238
81
    </application>
239
82
 
240
83
</manifest>
 
 
b'\\ No newline at end of file'