Independent program - android

I need to install a program on the Droid. I can get it onto the memory chip. I can't get the droid to find it. TIA.

I believe what you are trying to say is that you have an apk file on your SD card you are trying to install onto your phone. You need to use a file browser like Astro File Manager to browse your SD card and install the app.

Let's say you are trying to install an APK which is in your SD card.
There's no need to use a file manager, just open the Browser and enter the URL
file:///sdcard/MyApp.apk
you will be prompted to accept the installation of the package.

To install the apk you will also need to allow installations from Unknown Sources, located in Settings --> Applications.

Related

where is .apk location for apps that are installed on sdcard?

I know that the location for system apps is '/system/app' and the location for user apps is '/data/app'.
But I can't find the location of apk for the ones that I moved to/installed on sdcard.
Apps installed on the SD-Card are stored within the directory ".android_secure".
If I remember correctly you won't find the APK files directly in that folder because the content is encrypted. This is for preventing direct access to the APK file of paid apps.
The encrypted part is mounted somewhere else into the file system.
For me at least using cyanogenmod9 on a Samsung galaxy s 2 i777 I found them in /mnt/asec/
This location works differently than /system/app/ and /data/app/ because the system is actually creating a mount for each app rather than just stuffing them in a folder.
Make sure you take note of symbolic links.
You will not be able to add to here like you can the other two, but you can extract an apk. A better solution would be MyAppSharer from the market.
It will be in mnt -> asec -> -> pkg.apk
On Android 5.0+ (Lollipop, Marshmallow) almost every installed non-system app will be placed in:
/data/app/
Access to /data requires root.
Use su when you are working with adb shell to gain root access, this of course requires your phone to be rooted in the first place.
The directory contains a sub directory for every app.
Each sub directory is named by his package, following Androids app naming convention:
tld.author.appname-N
Where N represents a number greater or equal to 1
e.g. for Firefox it will look something like:
org.mozilla.firefox-1
Inside every app directory you will find a base.apk which is representing the installed app.
So if you want Firefox simply download:
/data/app/org.mozilla.firefox-1/base.apk
using adb pull/scp or copy it to your sdcard and download it using MTP.
Cheers
it is in
File Explorer--> mnt/sdcard
Install ES file explorer. Go to Home Page there will be link App...under that you will find all the apps installed on sd card or phone memory.. select app and share...enjoy...
On lineage 14, Android 7 , all sdcard apps are stored in /mnt/expand/
And apk in folder "app"

How can my apk be self-installed from website without an SD Card?

I want to roll out a non-market apk to our users via our website. The users will go through the standard browser, type in the url, click an Install App button, and it should install (with their approval, of course).
Most of our users don't have an SD Card. Installing from adb is not an option.
I only know how to post my apk on the site and have it load to the SD Card and then install from another program like Astro File Manager.
How do I have the app install after the user chooses to install it from our website? How is this done without an SD Card?
Thanks so much in advance.
From the phone's browser, download the .apk, then go to Menu/Downloads and select the downloaded .apk. As long as the phone has been configured to accept non-Android market installs, the installation screen should appear.
I think there is no automatic way doing that without an SD-Card, but after downloading you can install it doing the following steps.
Connect your SmartPhone or Pad via USB. Go via Terminal/Console into the SDK path (SDK is required!) sdk/platform-tools/ and run
adb install youradkfile.adk
(note: on Mac type "./" without quotes before adb)
To find the app after installation go to menu, add, shortcuts, applications and select your app to have it on your desktop.

Install custom .apk without adb/Eclipse

Is it possible to install an .apk on a phone without using developer tools? Can it simply be dragged to a mounted SD card? My beta testers are not very tech-savvy or comfortable with the command line.
Thanks in advance,
Barry
Copy the .apk file to DropBox (or any other cloud storage program. Box is another popular one).
Load DropBox on your Android device, navigate to the location of the .apk file and click Export.
Choose a location on the SD card to copy the .apk file to (eg /downloads).
Use a file explorer program (I use ES File Explorer) and navigate to the location on the SD card where you exported the .apk file to in step 3.
Click the .apk file, which will install the application to your device (Note that you will have to turn on 'Unknown Sources' so that non-Android Market apps can be installed on your device if this setting is off).
You can install it from an SD card if you have a file browser on the phone, or you can download it via a webserver using the browser.
You could set up a web server that hosts your APKs. N.B. it would need to send .apk files with the right MIME type: application/vnd.android.package-archive.

apk not listed in app installer in phone

I have come up with a small camera application. It is working as expected in the Android emulator, but when I load the same in the SD card of an Android phone, the apk is not listed in the app installer of the phone. Please advise.
It sounds like you are simply copying the APK file onto the SD card. That is not the same as installing an application. To install the application you need to open the APK file, so the operating system can properly install it.
There are many ways you can open an APK file on an Android device:
Put the app in the Android Market (or other Market)
Email the APK to the device
Use a file manager app to open the APK from the SD card
Open the APK from a network location, perhaps using Dropbox
Open a web link on the phone pointing to the location of the APK (you may need to set the mime-type for APK files on the web server)

How to install apk file on the Xperia Android mobile

I want to test my build on my device. Please provide some tool/information regarding installation of application on device ?
thanks and regards,
Connect your device with the PC, install the Android SDK (you should have that already) and than: http://developer.android.com/guide/developing/tools/adb.html
Open phone web-browser.
Enter url: file:///sdcard/[nameofyourapkfile].apk
No need for file browser programs.
If you just want to install the apk file on the mobile without the need of any debug information you can simply upload the apk file (which is located in the /bin directory of your project) to a webspace and grab it with the mobile's browser (e.g. http://www.mywebspace.com/myapp.apk)
You can also copy the apk to your phone - SD card or internal memory- and then click on it. This should install the apk in most devices, though some devices may block the installation of non-market apks.
Or download SD Folder or something like that just type SD Folder into Googleplay and then youll be able to simply open apk files or Pics you couldnt access trough the office suit.

Categories

Resources