Free/low cost make basic android app?

Joined
12 Feb 2006
Posts
17,508
Location
Surrey
I'm just exploring the idea of having an app for work that essentially just accesses the Admin section of our website.

Does such a thing exist? It would just load one website (https://www.mayercleaning.co.uk) but the Admin section of it, and then display everything to the user as currently happens from within a browser.

I know I could just use a browser, which is what we currently do, but the guys seem to struggle to bookmark and find the page etc to go to, so thinking an app would simplify things, and also, give room for future new features that we don't currently have.

Thanks.
 
There's a number of services out there that will essentially create a web-wrapper type app for your website (or admin website in your case). Although you could probably throw something together yourself as it is just a WebView.

Alternatively, both Android and iOS support pinning websites to your Home Screen via the browser - https://www.androidauthority.com/add-website-android-iphone-home-screen-3181682/
 
I couldn't imagine a more ugly solution :p
Unless you're planning to create an app (+ UI) to directly prod an API (of your CMS), then you're essentially creating a web-wrapper for your 'admin' website (using WebView) and you'll achieve something similar by pinning a website to the home screen (you can even stipulate "app" icon and loading images/logos etc via META tags).
 
Last edited:
Good luck getting it into the IOS App Store using web wrappers.

Apple will tell you to sod off because it doesn’t use native app features.

I’ve tried.

You beat off literally printing out something and giving it to them on instructions how to add a shortcut to the Home Screen.
 
Last edited:
Just use Visual Studio (free version) and MAUI, can even use Blazor web code with MAUI if you like. Could add a single page with a frame and link the page or if you use a webservice use that.
 
bit of an old thread bump but figured better to put the issue here rather than make a new thread.

so i went with the webview option and it worked a treat. i have recently bought a freaking amazingly great vehicle media player/dash that runs on android and allows me to have the app installed on there. which i've done, and again, when working it's amazing having the admin section of my site all controlledable from my van's dash, however i am noticing an issue i struggle to resolve.

the issue is that the dash which has a 5g sim, when turning on the vehicle and waking up the dash, it loads the programs and widgets sometimes before it connects to a network, and so the app which is loaded in a widget on the home screen fails and give the error net::err_name_not_resolved

i've searched online and found various reasons for the problem, but i'm certain the issue is simply that the device is trying to load the app and connect to the site before it has a network and so fails. my issue though is that once the error appears, there is no way to reload. i have to manually close the app, clear cache etc and then reload it to get it to work, which is too much effort and kills it being used as a widget.

i was wondering is there a way from within webview, for it to retry connection automatically every 30 seconds, or perhaps even delay the intial attempt, even by just 15 seconds will be enough. the biggest issue is i'm just stuck unable to quickly attempt to reload.
 
Back
Top Bottom