Skip to content

Commit

Permalink
Feat/android adaptive icons (#88)
Browse files Browse the repository at this point in the history
* Adaptive icons created

* Increase app version
  • Loading branch information
mismirnov authored Feb 24, 2023
1 parent a80cfef commit 1c78111
Show file tree
Hide file tree
Showing 40 changed files with 163 additions and 163 deletions.
31 changes: 13 additions & 18 deletions atomex.Android/Atomex.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -178,20 +178,21 @@
<AndroidResource Include="Resources\drawable\ic_qr__blue.xml" />
<AndroidResource Include="Resources\drawable\ic_warning.xml" />
<AndroidResource Include="Resources\layout\Tabbar.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\values\ic_launcher_background.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-hdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-mdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\drawable\Wallet__blue.xml">
<SubType>
</SubType>
Expand Down Expand Up @@ -258,12 +259,6 @@
<Generator>
</Generator>
</AndroidResource>
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher.png">
<SubType>
</SubType>
<Generator>
</Generator>
</AndroidResource>
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher.png">
<SubType>
</SubType>
Expand Down
4 changes: 2 additions & 2 deletions atomex.Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.24.2" package="com.atomex.android" android:versionCode="42">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.25.0" package="com.atomex.android" android:versionCode="43">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="31" />
<application android:label="Atomex" android:allowBackup="false" android:icon="@drawable/ic_launcher">
<application android:label="Atomex" android:allowBackup="false" android:icon="@mipmap/ic_launcher">
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/ic_notification" />
<receiver android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver" android:exported="false" />
<receiver android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND">
Expand Down
Loading

0 comments on commit 1c78111

Please sign in to comment.