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"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
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"/>
|
|
|
|
|
2017-10-29 13:52:15 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|