|
|
@@ -11,8 +11,7 @@
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
|
|
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
|
-
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
|
|
<queries>
|
|
|
<intent>
|
|
|
@@ -32,12 +31,15 @@
|
|
|
android:fullBackupContent="@xml/backup_content"
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
android:label="@string/app_name"
|
|
|
+ android:networkSecurityConfig="@xml/network_security_config"
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
android:supportsRtl="true"
|
|
|
android:theme="@style/DarkTheme"
|
|
|
- android:usesCleartextTraffic="true"
|
|
|
- android:networkSecurityConfig="@xml/network_security_config">
|
|
|
+ android:usesCleartextTraffic="true">
|
|
|
+ <activity
|
|
|
+ android:name=".ReviewActivity"
|
|
|
+ android:exported="false" />
|
|
|
<activity
|
|
|
android:name=".RegisterActivity"
|
|
|
android:exported="false" />
|
|
|
@@ -57,12 +59,12 @@
|
|
|
</activity>
|
|
|
|
|
|
<activity-alias
|
|
|
- android:name=".components.launcher.LauncherCalculator"
|
|
|
- android:enabled="false"
|
|
|
+ android:name=".components.launcher.LauncherReal"
|
|
|
+ android:enabled="true"
|
|
|
android:exported="true"
|
|
|
- android:icon="@mipmap/ic_launcher_calculator"
|
|
|
- android:label="@string/app_name_fake_calculator"
|
|
|
- android:roundIcon="@mipmap/ic_launcher_calculator_round"
|
|
|
+ android:icon="@mipmap/ic_launcher"
|
|
|
+ android:label="@string/app_name"
|
|
|
+ android:roundIcon="@mipmap/ic_launcher"
|
|
|
android:targetActivity=".PINActivity">
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
@@ -71,12 +73,12 @@
|
|
|
</intent-filter>
|
|
|
</activity-alias>
|
|
|
<activity-alias
|
|
|
- android:name=".components.launcher.LauncherReal"
|
|
|
- android:enabled="true"
|
|
|
+ android:name=".components.launcher.LauncherCalculator"
|
|
|
+ android:enabled="false"
|
|
|
android:exported="true"
|
|
|
- android:icon="@mipmap/ic_launcher"
|
|
|
- android:label="@string/app_name"
|
|
|
- android:roundIcon="@mipmap/ic_launcher"
|
|
|
+ android:icon="@mipmap/ic_launcher_calculator"
|
|
|
+ android:label="@string/app_name_fake_calculator"
|
|
|
+ android:roundIcon="@mipmap/ic_launcher_calculator_round"
|
|
|
android:targetActivity=".PINActivity">
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|