82 lines
3.0 KiB
XML
82 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="Void Client"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.AppCompat.DayNight"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".ProfileViewActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ImageViewerActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ChatEditActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ChatViewActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".preferences.ChatSettingsActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".preferences.AboutActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".preferences.DevicesActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".PasswordCheckActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".preferences.SecurityActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
|
<activity
|
|
android:name=".preferences.ProfileSettingsActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".preferences.SettingsActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".RegisterActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".ChatActivity"
|
|
android:exported="false"
|
|
android:label="@string/title_activity_chat"
|
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
|
<activity
|
|
android:name=".ChatListActivity"
|
|
android:exported="false"
|
|
android:label="@string/title_activity_chat_list"
|
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
|
<activity
|
|
android:name=".CodeActivity"
|
|
android:exported="false"
|
|
android:label="@string/title_activity_code"
|
|
android:theme="@style/Theme.OpenMax" />
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:label="Void Client"
|
|
android:theme="@style/Theme.OpenMax">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |