Changing Splash Screen on Each New Session
Posted: Wed Apr 22, 2015 11:50 pm
On the web long ago, I used a technique for some random images that changed on a schedule that does not cycle through filenames.. instead the html would use something like:
header-top-main.jpg
then I has a folder with different images
/header-images
lotusFlowers.jpg
plumeria.jpg
cosmic-stars.jpg
Then I used a cron that would check the filenames in that folder, pick one and cp it out to the same name, overwriting "header-top-main.jpg"
Can we do the same thing on our mobile app? This assumes the path to splash screen is looking for a specific image on disk. ... if, when your app booted up, in the background you did the same thing: copied from a small repository to "my-app-splash-screen.jpg" in the correct location, then the next time the user opened the app, the image would change. Of course in the interests of branding consistency you would be using a logo and some words that never change.. but the image behind them could be different.
Any reason this cannot work? when you select a splash screen... where is this stored in the app package?
header-top-main.jpg
then I has a folder with different images
/header-images
lotusFlowers.jpg
plumeria.jpg
cosmic-stars.jpg
Then I used a cron that would check the filenames in that folder, pick one and cp it out to the same name, overwriting "header-top-main.jpg"
Can we do the same thing on our mobile app? This assumes the path to splash screen is looking for a specific image on disk. ... if, when your app booted up, in the background you did the same thing: copied from a small repository to "my-app-splash-screen.jpg" in the correct location, then the next time the user opened the app, the image would change. Of course in the interests of branding consistency you would be using a logo and some words that never change.. but the image behind them could be different.
Any reason this cannot work? when you select a splash screen... where is this stored in the app package?