ComunicAndroid/app/src/main/AndroidManifest.xml

43 lines
1.6 KiB
XML
Raw Normal View History

2017-10-29 13:52:15 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.communiquons.android.comunic.client">
2018-01-01 18:03:28 +00:00
<!-- Internet access is required to access the API and download medias -->
2017-10-31 08:48:28 +00:00
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
2017-10-29 13:52:15 +00:00
<application
android:allowBackup="true"
android:fullBackupContent="@xml/backup_scheme"
2018-03-24 17:43:55 +00:00
android:icon="@drawable/ic_app_rounded"
2017-10-29 13:52:15 +00:00
android:label="@string/app_name"
2018-03-24 17:43:55 +00:00
android:roundIcon="@drawable/ic_app_rounded"
2017-10-29 13:52:15 +00:00
android:supportsRtl="true"
android:theme="@style/AppTheme">
2018-01-01 18:03:28 +00:00
<!-- Main activity of the application -->
2018-01-21 17:49:43 +00:00
<activity android:name=".ui.activities.MainActivity">
2017-10-29 13:52:15 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2018-01-01 18:03:28 +00:00
<!-- Login activity -->
<activity
2018-01-21 17:49:43 +00:00
android:name=".ui.activities.LoginActivity"
2018-01-01 18:03:28 +00:00
android:label="@string/activity_login_header" />
<!-- Search user activity -->
<activity
2018-01-21 17:49:43 +00:00
android:name=".ui.activities.SearchUserActivity"
2018-01-01 18:03:28 +00:00
android:label="@string/activity_searchuser_title"/>
2018-04-09 08:22:47 +00:00
<!-- Notifications background refresh service -->
<service android:name=".data.services.NotificationsService"
android:exported="false"/>
2017-10-29 13:52:15 +00:00
</application>
</manifest>