Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android auto installation

Tags:

android

We want to install our application on to (thousands of)phones and these phones will be later delivered to clients. Do we have to do this manually? Is there a faster way to do this?

For example, in Windows Mobile, if you put your installation files in a certain folder on SD card and when you insert that SD card to the phone the app is installed automatically to the device. Any similar mechanism on Android?

Thanks in advance.

like image 415
Caner Avatar asked Jan 18 '12 13:01

Caner


People also ask

Can I install Android Auto in my car?

How do I get Android Auto to run on my car display? For most compatible cars or aftermarket stereos, simply plug in your phone using a USB cable. If your car display supports wireless connection, you must pair your phone with your car's bluetooth for set-up.

How much does it cost to install Android Auto?

How much does Android Auto cost? For the basic connection, nothing; it's a free download from the Google Play store on older Android phones and baked into Android 10 and newer.

Where can I install Android Auto?

There are many compatible apps available, and you can find them by entering 'Android Auto' into the Google Play Store.

Why is Android Auto not showing on my car screen?

To use Android Auto on your car display, your car needs to be compatible with Android Auto or have an aftermarket unit installed. Android Auto won't work on all cars equipped with a USB port. See this list of manufacturers to check if your car is compatible. Not all USB cables will work with all cars.


1 Answers

You can create an update.zip file on an sdcard that will install an application, but you have to boot the phone into recovery mode to run it. I haven't used update.zip this way, but I saw it here: http://www.londatiga.net/it/how-to-create-android-update-zip-package/

Unfortunately it's much more complicated and slow than the old 2577\Autorun.exe method from WindowsMobile.

Other ideas...

  • ADB + USB hubs: Hook up a bunch of the phones at the same time using USB hubs, run a script to find the device ids with adb devices and execute adb install your_app.apk for each one.
    (Requires taking the time to enable USB debugging on each device)

  • Install from the web: Host the .apk publicly or locally. Now you have to pull up the URL on the phone.
    (Requires taking the time to checking that checkbox for installing from unknown sources on each device)

    • TinyUrl: host the .apk anywhere, shrink the URL, type it into the browser.

    • QR Code: If the devices happen to have a QR Code Reader like Google Goggles pre-installed, you could save yourself the typing of the URL.

    • SMS: If all of these phones have service and you have the numbers handy, you could broadcast an SMS to all of them.

Best of luck!

like image 135
Memetic Avatar answered Oct 20 '22 16:10

Memetic