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
0
votes
2 answers

Android unable to install the application on emulator

I have an android application and am trying to test the installation by downloading from a URL. The app is developed by me and I can load the app into emulator using eclipse and run it properly. I uploaded the apk to webserver and point the…
Kiran
  • 5,478
  • 13
  • 56
  • 84
0
votes
1 answer

Static Keyword , Reinstallation Required

In my application I have an Activity" Model" in which i get a value 'n' from an edit text , I have declared this value n as static int . So , that i can access it inside any class of the Application. The problem is that when I restart my application…
kumar piyush
  • 173
  • 2
  • 6
  • 15
0
votes
2 answers

android - .apk file is not modified

i run the application using eclipse at this .apk file is not modified. Suppose i used the .apk file in the device at the installation time i got the “Parse Error : There is a problem parsing the package”. How to solve this? can anybody help me. For…
naresh
  • 10,332
  • 25
  • 81
  • 124
0
votes
1 answer

Android how to perform specific action right after installation?

i'm developing an application that need to do certain operations right after the installation (mainly save some configuration parameters). I want to know if it is possible, and how to do it. And also, is possible to start the application…
Ivan
  • 4,186
  • 5
  • 39
  • 72
0
votes
1 answer

Error while re building and running the android program in device with updated Android version(androidapi 15 rev1 to api 15 rev2)

I did the following before i got issue: I ran a update in Android SDK Manager .It gave a list of updates to be installed which includes revision version for SDK platform-tools,SDK tools. After the download i couldnt install it automatically..So i…
elixir bash
  • 280
  • 1
  • 4
  • 14
-1
votes
1 answer

Cannot launch APK file so user can install it, Android 9 onward?

I use this code to launch an APK file after it is downloaded by OS: if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file); Intent intent = new…
sajjad
  • 834
  • 6
  • 13
-1
votes
1 answer

Android - There was a problem while parsing the package -- Overriding existing app with the corrected code

I'm new to Stackoverflow. I've seen multiple solutions w.r.t above mentioned question. Please find brief details of my concern. We deploy our Android app apk on our website. (www.mywebsiteurl.com/apk/AndroidApp.apk And we made some changes to the…
-1
votes
2 answers

problem installing apk file

hey guys,i created a google map based application in android using eclipse..i created an apk file of the application and transferred the apk file to my google nexus one phone...but after successfully transferring the file i was not able to locate…
chetan
  • 1,385
  • 4
  • 15
  • 31
-1
votes
2 answers

Application Installation Failed- Installation Failed with message null

I tried to build the APK file for my project. It created a file in the build folder. After that I am not able to test my app further as the new project after any changes is not getting installed in my device now. I tried most of the solutions given…
Rahul Hindocha
  • 170
  • 2
  • 14
-1
votes
1 answer

How to distribute an Android App over the inhouse wifi without internet

So I made a small Android App for inhouse use in my company. The App is supposed to run on dedicated Android 6 devices (portable computers with bar code scanners attached) to scan bar codes and talk to our servers within the company wireless…
Thomas
  • 620
  • 7
  • 19
-1
votes
1 answer

Programing with Android studio 3.2 and making apk

I'm writing an application with android studio 3.2. Everything is okay when I install it on an emulator but when I make an apk and install it on real phone, it dosen't run!! compileSdkVersion 28 minSdkVersion 16 targetSdkVersion 28 I want this app…
-1
votes
1 answer

Issue in Android App installing programmatically(AutoUpdate)

An issue in auto-updating.That downloads a new app if an update is available and uninstall a current application and install a new app. It all works well till target SDK 22. but After target SDK 24 or updating Phone os above API Level 2 this…
-1
votes
1 answer

Opening multiple different apk's inside the main apk

I have an app which contains 3rd party apk's for users to download and install on their Android phones. But I would like to have a mechanism through which my users can open those apk's inside my app itself without the need to download them…
-1
votes
1 answer

How to download File and prompt installation of apk

I've been struggling to get my application to update from a direct url, i want to download a apk and then prompt to user to install the apk. How can I do this? Thanks. EDIT: Intent intent = new Intent(Intent.ActionView); …
Phill
  • 407
  • 1
  • 8
  • 30
-1
votes
2 answers

Export Android java application files to device .apk

I have just started using Android Studio to learn app development. I am attempting to run an existing complete android project on github on my android device. The project contains a 'res' and 'src' folder which contains multiple .java files for the…