diff --git a/__mocks__/@sayem314/react-native-keep-awake/index.ts b/__mocks__/@sayem314/react-native-keep-awake/index.ts deleted file mode 100644 index 521381b66..000000000 --- a/__mocks__/@sayem314/react-native-keep-awake/index.ts +++ /dev/null @@ -1 +0,0 @@ -module.exports = jest.mock('@sayem314/react-native-keep-awake'); diff --git a/__tests__/todos.ts b/__tests__/todos.ts index 0b6281bda..d80edcb19 100644 --- a/__tests__/todos.ts +++ b/__tests__/todos.ts @@ -17,6 +17,10 @@ import { slashtagsProfileTodo, transferPendingTodo, transferClosingChannelTodo, + supportTodo, + inviteTodo, + // fastpayTodo, + // discountTodo, } from '../src/store/shapes/todos'; import { createNewWallet } from '../src/utils/startup'; import { EAvailableNetwork } from '../src/utils/networks'; @@ -40,8 +44,12 @@ describe('Todos selector', () => { backupSeedPhraseTodo, lightningTodo, pinTodo, - slashtagsProfileTodo, buyBitcoinTodo, + supportTodo, + inviteTodo, + // fastpayTodo, + slashtagsProfileTodo, + // discountTodo, ]); }); @@ -90,9 +98,11 @@ describe('Todos selector', () => { backupSeedPhrase: +new Date(), btFailed: +new Date(), buyBitcoin: +new Date(), + invite: +new Date(), lightning: +new Date(), pin: +new Date(), slashtagsProfile: +new Date(), + support: +new Date(), }; assert.deepEqual(todosFullSelector(state), []); @@ -128,7 +138,7 @@ describe('Todos selector', () => { ); }); - it('should return transferPendingTodo for addtional pending transfers to spending', () => { + it('should return lightningSettingUpTodo for addtional pending transfers to spending', () => { const state = cloneDeep(s); const channel1 = { channel_id: 'channel1', @@ -144,7 +154,7 @@ describe('Todos selector', () => { orderId: 'order1', }); expect(todosFullSelector(state)).toEqual( - expect.arrayContaining([{ ...transferPendingTodo, duration: 10 }]), + expect.arrayContaining([lightningSettingUpTodo]), ); }); diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index f910a5e28..0b9cdc576 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -23,8 +23,8 @@ @@ -35,7 +35,8 @@ android:launchMode="singleTask" android:screenOrientation="portrait" android:windowSoftInputMode="adjustPan" - android:exported="true"> + android:exported="true" + android:theme="@style/SplashTheme"> diff --git a/android/app/src/main/assets/fonts/Damion-Regular.ttf b/android/app/src/main/assets/fonts/Damion-Regular.ttf new file mode 100644 index 000000000..d0548dd38 Binary files /dev/null and b/android/app/src/main/assets/fonts/Damion-Regular.ttf differ diff --git a/android/app/src/main/assets/fonts/InterTight-Black.ttf b/android/app/src/main/assets/fonts/InterTight-Black.ttf new file mode 100644 index 000000000..0ff7521b9 Binary files /dev/null and b/android/app/src/main/assets/fonts/InterTight-Black.ttf differ diff --git a/android/app/src/main/assets/fonts/InterTight-ExtraBold.ttf b/android/app/src/main/assets/fonts/InterTight-ExtraBold.ttf new file mode 100644 index 000000000..9bd8adedf Binary files /dev/null and b/android/app/src/main/assets/fonts/InterTight-ExtraBold.ttf differ diff --git a/android/app/src/main/assets/fonts/Roboto-Black.ttf b/android/app/src/main/assets/fonts/Roboto-Black.ttf deleted file mode 100644 index 0112e7da6..000000000 Binary files a/android/app/src/main/assets/fonts/Roboto-Black.ttf and /dev/null differ diff --git a/android/app/src/main/assets/fonts/Roboto-Bold.ttf b/android/app/src/main/assets/fonts/Roboto-Bold.ttf deleted file mode 100644 index 43da14d84..000000000 Binary files a/android/app/src/main/assets/fonts/Roboto-Bold.ttf and /dev/null differ diff --git a/android/app/src/main/assets/fonts/Roboto-Light.ttf b/android/app/src/main/assets/fonts/Roboto-Light.ttf deleted file mode 100644 index e7307e72c..000000000 Binary files a/android/app/src/main/assets/fonts/Roboto-Light.ttf and /dev/null differ diff --git a/android/app/src/main/assets/fonts/Roboto-Medium.ttf b/android/app/src/main/assets/fonts/Roboto-Medium.ttf deleted file mode 100644 index ac0f908b9..000000000 Binary files a/android/app/src/main/assets/fonts/Roboto-Medium.ttf and /dev/null differ diff --git a/android/app/src/main/assets/fonts/Roboto-Regular.ttf b/android/app/src/main/assets/fonts/Roboto-Regular.ttf deleted file mode 100644 index ddf4bfacb..000000000 Binary files a/android/app/src/main/assets/fonts/Roboto-Regular.ttf and /dev/null differ diff --git a/android/app/src/main/ic_launcher_black-playstore.png b/android/app/src/main/ic_launcher_black-playstore.png new file mode 100644 index 000000000..ea65b684e Binary files /dev/null and b/android/app/src/main/ic_launcher_black-playstore.png differ diff --git a/android/app/src/main/ic_launcher_orange-playstore.png b/android/app/src/main/ic_launcher_orange-playstore.png new file mode 100644 index 000000000..2be46b78c Binary files /dev/null and b/android/app/src/main/ic_launcher_orange-playstore.png differ diff --git a/android/app/src/main/res/drawable-hdpi/splash.png b/android/app/src/main/res/drawable-hdpi/splash.png deleted file mode 100644 index a3b0c0978..000000000 Binary files a/android/app/src/main/res/drawable-hdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-hdpi/splash_logo.png b/android/app/src/main/res/drawable-hdpi/splash_logo.png new file mode 100644 index 000000000..4d44f0611 Binary files /dev/null and b/android/app/src/main/res/drawable-hdpi/splash_logo.png differ diff --git a/android/app/src/main/res/drawable-mdpi/splash.png b/android/app/src/main/res/drawable-mdpi/splash.png deleted file mode 100644 index e8f5b731f..000000000 Binary files a/android/app/src/main/res/drawable-mdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-mdpi/splash_logo.png b/android/app/src/main/res/drawable-mdpi/splash_logo.png new file mode 100644 index 000000000..ac7adbd56 Binary files /dev/null and b/android/app/src/main/res/drawable-mdpi/splash_logo.png differ diff --git a/android/app/src/main/res/drawable-xhdpi/splash.png b/android/app/src/main/res/drawable-xhdpi/splash.png deleted file mode 100644 index d002c09b4..000000000 Binary files a/android/app/src/main/res/drawable-xhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xhdpi/splash_logo.png b/android/app/src/main/res/drawable-xhdpi/splash_logo.png new file mode 100644 index 000000000..2db7cc24d Binary files /dev/null and b/android/app/src/main/res/drawable-xhdpi/splash_logo.png differ diff --git a/android/app/src/main/res/drawable-xxhdpi/splash.png b/android/app/src/main/res/drawable-xxhdpi/splash.png deleted file mode 100644 index 1e3541b34..000000000 Binary files a/android/app/src/main/res/drawable-xxhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxhdpi/splash_logo.png b/android/app/src/main/res/drawable-xxhdpi/splash_logo.png new file mode 100644 index 000000000..6df93f0f6 Binary files /dev/null and b/android/app/src/main/res/drawable-xxhdpi/splash_logo.png differ diff --git a/android/app/src/main/res/drawable-xxxhdpi/splash.png b/android/app/src/main/res/drawable-xxxhdpi/splash.png deleted file mode 100644 index 09a651a55..000000000 Binary files a/android/app/src/main/res/drawable-xxxhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxxhdpi/splash_logo.png b/android/app/src/main/res/drawable-xxxhdpi/splash_logo.png new file mode 100644 index 000000000..1bb915756 Binary files /dev/null and b/android/app/src/main/res/drawable-xxxhdpi/splash_logo.png differ diff --git a/android/app/src/main/res/drawable/ic_launcher_foreground.xml b/android/app/src/main/res/drawable/ic_launcher_foreground.xml deleted file mode 100644 index b0604dcd4..000000000 --- a/android/app/src/main/res/drawable/ic_launcher_foreground.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/android/app/src/main/res/drawable/ic_launcher_monochrome.xml b/android/app/src/main/res/drawable/ic_launcher_monochrome.xml new file mode 100644 index 000000000..689b81dbb --- /dev/null +++ b/android/app/src/main/res/drawable/ic_launcher_monochrome.xml @@ -0,0 +1,14 @@ + + + + + diff --git a/android/app/src/main/res/drawable/launch_screen.xml b/android/app/src/main/res/drawable/splash_screen.xml similarity index 56% rename from android/app/src/main/res/drawable/launch_screen.xml rename to android/app/src/main/res/drawable/splash_screen.xml index 5c3869818..e3a16de3f 100644 --- a/android/app/src/main/res/drawable/launch_screen.xml +++ b/android/app/src/main/res/drawable/splash_screen.xml @@ -2,8 +2,8 @@ - + - + \ No newline at end of file diff --git a/android/app/src/main/res/layout/splash_screen.xml b/android/app/src/main/res/layout/splash_screen.xml index bad166146..da391f5f9 100644 --- a/android/app/src/main/res/layout/splash_screen.xml +++ b/android/app/src/main/res/layout/splash_screen.xml @@ -4,4 +4,4 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="@drawable/launch_screen"/> + android:background="@drawable/splash_screen"/> diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_black.xml similarity index 56% rename from android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml rename to android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_black.xml index 74d50b2a5..226dc8bb9 100644 --- a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_black.xml @@ -1,5 +1,6 @@ - + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_black_round.xml similarity index 56% rename from android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml rename to android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_black_round.xml index 74d50b2a5..226dc8bb9 100644 --- a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_black_round.xml @@ -1,5 +1,6 @@ - + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange.xml new file mode 100644 index 000000000..f5588bef1 --- /dev/null +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange_round.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange_round.xml new file mode 100644 index 000000000..f5588bef1 --- /dev/null +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_orange_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 5a5fa9a21..000000000 Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_black.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_black.webp new file mode 100644 index 000000000..1db101b7b Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_black.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_black_round.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_black_round.webp new file mode 100644 index 000000000..1db101b7b Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_black_round.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png deleted file mode 100644 index f43a86de4..000000000 Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp new file mode 100644 index 000000000..d2951a821 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_orange.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_orange.webp new file mode 100644 index 000000000..6b7a2baa7 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_orange.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_orange_round.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_orange_round.webp new file mode 100644 index 000000000..6b7a2baa7 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_orange_round.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png deleted file mode 100644 index 4d9b3cde1..000000000 Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 8d705ebc2..000000000 Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_black.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_black.webp new file mode 100644 index 000000000..56f224ed9 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_black.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_black_round.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_black_round.webp new file mode 100644 index 000000000..56f224ed9 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_black_round.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png deleted file mode 100644 index 9332f20b6..000000000 Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp new file mode 100644 index 000000000..4228a854e Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_orange.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_orange.webp new file mode 100644 index 000000000..cef6d8894 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_orange.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_orange_round.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_orange_round.webp new file mode 100644 index 000000000..cef6d8894 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_orange_round.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png deleted file mode 100644 index 2f7db2d52..000000000 Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index e5298d2d5..000000000 Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_black.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_black.webp new file mode 100644 index 000000000..75c39c855 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_black.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_black_round.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_black_round.webp new file mode 100644 index 000000000..75c39c855 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_black_round.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png deleted file mode 100644 index e9d4bfe0a..000000000 Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp new file mode 100644 index 000000000..3a9ff36be Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_orange.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_orange.webp new file mode 100644 index 000000000..d68cbe83f Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_orange.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_orange_round.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_orange_round.webp new file mode 100644 index 000000000..d68cbe83f Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_orange_round.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png deleted file mode 100644 index bd2e68046..000000000 Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 6cbc12453..000000000 Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_black.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_black.webp new file mode 100644 index 000000000..6ffea2482 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_black.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_black_round.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_black_round.webp new file mode 100644 index 000000000..6ffea2482 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_black_round.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png deleted file mode 100644 index 537f5d305..000000000 Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp new file mode 100644 index 000000000..f7accd244 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange.webp new file mode 100644 index 000000000..3d47ecaf9 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange_round.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange_round.webp new file mode 100644 index 000000000..3d47ecaf9 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange_round.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png deleted file mode 100644 index 8f8cdc8e9..000000000 Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 74b6d0267..000000000 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_black.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_black.webp new file mode 100644 index 000000000..c6d24faa3 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_black.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_black_round.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_black_round.webp new file mode 100644 index 000000000..c6d24faa3 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_black_round.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png deleted file mode 100644 index 4cc42d68f..000000000 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp new file mode 100644 index 000000000..977fcd7fa Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange.webp new file mode 100644 index 000000000..030f984f5 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange_round.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange_round.webp new file mode 100644 index 000000000..030f984f5 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange_round.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png deleted file mode 100644 index 32a631614..000000000 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/android/app/src/main/res/playstore-icon.png b/android/app/src/main/res/playstore-icon.png deleted file mode 100644 index 8facad4e3..000000000 Binary files a/android/app/src/main/res/playstore-icon.png and /dev/null differ diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml index 0e79eeebc..fa452eb45 100644 --- a/android/app/src/main/res/values/colors.xml +++ b/android/app/src/main/res/values/colors.xml @@ -1,5 +1,5 @@ - #000 - #fff - \ No newline at end of file + #000000 + #FF4400 + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml index 589150403..d02fb7716 100644 --- a/android/app/src/main/res/values/styles.xml +++ b/android/app/src/main/res/values/styles.xml @@ -1,14 +1,15 @@ - - + - -