diff options
author | Eric Bailey <git@esb.lol> | 2023-12-14 14:48:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 14:48:40 -0600 |
commit | 7897dd24a14e65d8ab1aa0e474a09e0628da31b7 (patch) | |
tree | 77cec13da7f55ae1d8535550f497ad7314ece0e4 /app.config.js | |
parent | 075ffdf583c5393b896d22dd179d03208311ef4a (diff) | |
download | voidsky-7897dd24a14e65d8ab1aa0e474a09e0628da31b7.tar.zst |
🤫 (#2211)
* Add new assets * Add splashiness * Add butter icon, spread it * Cream together eggs, sugar, and vanilla * Hi, I'd like to place and order. Yeah, none pizza with left beef, plz. * test * Refine animation * tweak * tweak * tweak * Tweak * Simplify * Cleanup * Fix android logo --------- Co-authored-by: Ansh Nanda <anshnanda10@gmail.com>
Diffstat (limited to 'app.config.js')
-rw-r--r-- | app.config.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app.config.js b/app.config.js index 096756b08..d16b494d0 100644 --- a/app.config.js +++ b/app.config.js @@ -43,7 +43,7 @@ module.exports = function () { icon: './assets/icon.png', userInterfaceStyle: 'automatic', splash: { - image: './assets/cloud-splash.png', + image: './assets/splash.png', resizeMode: 'cover', backgroundColor: '#ffffff', }, @@ -73,9 +73,12 @@ module.exports = function () { }, android: { versionCode: ANDROID_VERSION_CODE, + icon: './assets/icon.png', adaptiveIcon: { - foregroundImage: './assets/adaptive-icon.png', - backgroundColor: '#ffffff', + foregroundImage: './assets/icon-android-foreground.png', + monochromeImage: './assets/icon-android-foreground.png', + backgroundImage: './assets/icon-android-background.png', + backgroundColor: '#1185FE', }, googleServicesFile: './google-services.json', package: 'xyz.blueskyweb.app', |