You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.0 KiB
26 lines
1.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.community.pocket">
|
|
|
|
<application
|
|
android:name=".util.InitApp"
|
|
android:allowBackup="true"
|
|
android:fullBackupContent="@xml/backup_descriptor"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<activity android:name=".ui.main.ui.forum.data.ForumDataActivity" />
|
|
<activity android:name=".ui.main.MainMenu" />
|
|
<activity android:name=".ui.resetpwd.ResetPwdActivity" />
|
|
<activity android:name=".ui.register.RegisterActivity" />
|
|
<activity android:name=".ui.login.LoginActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |