BayernMessenger/vector/src/main/AndroidManifest.xml

37 lines
1.3 KiB
XML
Raw Normal View History

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
android:name=".Riot"
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"
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"
android:theme="@style/Theme.Riot.Splash">
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" />
<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" />
2018-10-03 15:56:33 +00:00
</application>
</manifest>