lifting the application config and icon to the application module
@ -3,7 +3,19 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="im.vector.application">
|
package="im.vector.application">
|
||||||
|
|
||||||
<application>
|
<application
|
||||||
|
android:allowBackup="false"
|
||||||
|
android:hasFragileUserData="true"
|
||||||
|
android:icon="@mipmap/ic_launcher"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:networkSecurityConfig="@xml/network_security_config"
|
||||||
|
android:resizeableActivity="true"
|
||||||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
|
android:supportsRtl="true"
|
||||||
|
android:taskAffinity="${applicationId}.${appTaskAffinitySuffix}"
|
||||||
|
android:theme="@style/Theme.Vector.Light"
|
||||||
|
tools:ignore="UnusedAttribute"
|
||||||
|
tools:replace="android:allowBackup">
|
||||||
|
|
||||||
<!-- Providers -->
|
<!-- Providers -->
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
@ -75,19 +75,7 @@
|
|||||||
</intent>
|
</intent>
|
||||||
</queries>
|
</queries>
|
||||||
|
|
||||||
<application
|
<application android:supportsRtl="true">
|
||||||
android:allowBackup="false"
|
|
||||||
android:hasFragileUserData="true"
|
|
||||||
android:icon="@mipmap/ic_launcher"
|
|
||||||
android:label="@string/app_name"
|
|
||||||
android:networkSecurityConfig="@xml/network_security_config"
|
|
||||||
android:resizeableActivity="true"
|
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
|
||||||
android:supportsRtl="true"
|
|
||||||
android:taskAffinity="${applicationId}.${appTaskAffinitySuffix}"
|
|
||||||
android:theme="@style/Theme.Vector.Light"
|
|
||||||
tools:ignore="UnusedAttribute"
|
|
||||||
tools:replace="android:allowBackup">
|
|
||||||
|
|
||||||
<!-- No limit for screen ratio: avoid black strips -->
|
<!-- No limit for screen ratio: avoid black strips -->
|
||||||
<meta-data
|
<meta-data
|
||||||
|