2018-10-03 15:56:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-03-28 16:51:54 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-03 15:56:33 +00:00
|
|
|
package="im.vector.riotredesign">
|
|
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
<application
|
2019-04-05 08:40:59 +00:00
|
|
|
android:name=".VectorApplication"
|
2019-03-28 16:51:54 +00:00
|
|
|
android:allowBackup="false"
|
2018-10-03 15:56:33 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2019-04-08 13:15:11 +00:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2018-10-03 15:56:33 +00:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-03-28 16:51:54 +00:00
|
|
|
android:theme="@style/AppTheme.Light"
|
|
|
|
tools:replace="android:allowBackup">
|
2018-12-17 17:55:15 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".features.MainActivity"
|
2019-04-03 12:46:15 +00:00
|
|
|
android:theme="@style/AppTheme.Launcher">
|
2018-10-03 15:56:33 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-12-17 17:55:15 +00:00
|
|
|
|
2018-10-03 15:56:33 +00:00
|
|
|
<activity android:name=".features.home.HomeActivity" />
|
2018-12-17 17:55:15 +00:00
|
|
|
<activity android:name=".features.login.LoginActivity" />
|
2019-03-12 07:29:49 +00:00
|
|
|
<activity android:name=".features.media.MediaViewerActivity" />
|
2019-03-28 16:51:54 +00:00
|
|
|
<activity
|
|
|
|
android:name=".features.rageshake.BugReportActivity"
|
|
|
|
android:label="@string/title_activity_bug_report" />
|
2019-04-02 16:08:43 +00:00
|
|
|
<activity
|
|
|
|
android:name=".features.settings.VectorSettingsActivity"
|
|
|
|
android:label="@string/title_activity_settings"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".core.services.CallService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2018-10-03 15:56:33 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|