Questions tagged [android-install-apk]

An APK file is the file format used for installing software (i.e. an application or a game) on the Android operating system.

An APK file is the file format used for installing software (i.e. an application or a game) on the Android operating system.

An APK file is basically an archive providing the required application information and resources.

More Info

536 questions
1
vote
3 answers

I Can not install apk files on device or emulator in ADT-15.0.0?

I was developing my app and everything was OK. I installed ADT - 15.0.0 and installer_r15-windows.exe. After that, when I press Ctrl+F11 my project is uploaded but stayed in installing state without any progress. Why? can anybody help…
Bob
  • 22,810
  • 38
  • 143
  • 225
1
vote
1 answer

Background-Install an apk file without submit interface. What the way to do ? android

Background-Install an apk file without submit interface. What the way to do it?
chawanan
  • 61
  • 1
  • 1
  • 5
1
vote
1 answer

.java files of android that initiates the installation of new apk files in android

Can someone help me with the installation steps in android.Specifically I want to know the .java files of android that initiates the installation of new apk files that includes parsing of manifest files and validating them.
Vinish
  • 11
  • 2
1
vote
0 answers

Unable to read AndroidManifest.xml

I have finished up an Android app and I am attempting to sign it now in release mode. I have generated a keystore, and have updated my built properties to check the appropriate keystore file and alias. Everything compiles just fine, and I am…
MetaCipher
  • 274
  • 2
  • 8
1
vote
0 answers

There was a problem while parsing the package

I am trying to update my app programatically but It is always giving me error that There was a problem while parsing the package. I am also not able get the root cause of this error. I have tried in both mode- debug and release but nothing…
1
vote
3 answers

Android Error: How to prevent overgrown APK file During compile process in eclipse?

I have run into a issue here that is causing some setbacks for sure. Here is what happened. First, I was moving some large files around in Windows Explorer. And I Copied a 4 gb file into my clipboard to move somewhere. I later choose not to copy the…
Lenn Dolling
  • 1,300
  • 13
  • 23
1
vote
1 answer

How to identify install application is using which certificate in android

I have situations in which I changed the release apk signing certificate after rollout to the customers. Now I want to send an update using a different certificate but as the installed application is signed with a previous certificate so that…
user565
  • 871
  • 1
  • 22
  • 47
1
vote
0 answers

How to install .apk file from local storage programmatically?

I want to install the .apk file which is stored in my local storage programmatically. Here is my code, StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder(); StrictMode.setVmPolicy(builder.build()); …
Parag Rane
  • 179
  • 4
  • 15
1
vote
2 answers

How to insert unique data into an Android APK package with each download?

Goal: To embed info from HTTP headers into an APK package, on-the-fly, during download. Situation: There is an APK package the company website, available for public downloads. A user comes to the download page, and the server grabs the referring…
marko-36
  • 1,309
  • 3
  • 23
  • 38
1
vote
1 answer

Programmatically install/uninstall apk from local asset directory to real device in android studio

For Automation Testing I need to install on Apk programmatically and verify that the app is installed. and programmatically uninstall it and verify the app is uninstalled from the real device. I am not looking for a UI to download and install,…
1
vote
2 answers

Can I change the playstore URL of my app in playstore?

I already have an app in playstore with url https://play.google.com/store/apps/details?id=abc.pqr.xyz. Now I want to change it to https://play.google.com/store/apps/details?id=def.gij.lmn. Can I do this by any chance?
1
vote
1 answer

I cannot install .apk which have geneteted from AndroidStudio on my phone

As I have stated in the title I'm struggling with .apk I cannot install application on my phone I'm getting app not installed. But when installing via usb I'm able to install application on the emulator phone. It’s always showing App Not Installed…
1
vote
0 answers

Update APK Programmatically Error staging apk from content URI

I want to update the APK programmaticaly but when i see the adb logcat i get the errors: ActivityManager: Permission Denial: opening provider com.app.termappandroid.Utils.GenericFileProvider from ProcessRecord{5ceeb48…
1
vote
1 answer

Update app using Intent fails with FileUriExposedException

I am trying to update my application using the following code: File outputFile = ...; Intent promptInstall = new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.fromFile(outputFile),…
1
vote
1 answer

How to Build Apk from Unity with custom android Code

I have a unity project and normally what i do is export it to android make some changes in the gradle and manifest file along with adding some custom Java files that I have and then I sync the project and build the apk. Is there any other way to do…