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
4
votes
5 answers

Pushing Latest Android Build to Devices

Is there a way or an app that allows me to push my latest android build to all devices that have it installed? My app is not in the Google Play market yet but would like my testers to not have to manually install every build I push.
Lee
  • 1,028
  • 2
  • 11
  • 18
4
votes
1 answer

How to add more similar tasks and settings to Jan Berkel's Android Plugin in SBT?

I'm trying to extend Jan Berkel's Android Plugin for Scala that uses SBT. I have similar actions and settings like already defined android:install-device and android:install-emulator. Let them be called android:dev-install-device and…
ioreskovic
  • 5,531
  • 5
  • 39
  • 70
4
votes
1 answer

How can i Install apps silently on android ?? without permission from the user?

How can i Install apps silently on android ?? without permission from the user ? i have read this link , but i didn't get the idea for correct answer for this question which relate to PackageInstaller ??? On otherhand, i take a look to this …
3
votes
2 answers

Install Android app in Eclipse without running it

I'm using Eclipse to develop a bunch of Android apps and I need to batch install them, either on the emulator or on an attached device. I'd like to be able to push them all to the device without running them individually in Eclipse. How can I do…
Dave
  • 4,050
  • 6
  • 30
  • 35
3
votes
1 answer

Android -- Auto Install third party apk file from a web server

How to install the new version of apk file from a web server automatically instead of manual install(Downloading the apk and clicking the same).Upon starting the application , it should query for the higher versions available in web server and based…
AndosBerry
  • 145
  • 1
  • 12
3
votes
2 answers

How can I limit my android application installed on real device only?

I expect that my android application is allowed to install only on real device, and android-emulator can't.How can I limit my android application installed on real device only ? Thanks for any replies.
Carina
  • 2,260
  • 2
  • 20
  • 45
3
votes
5 answers

why won't the new version of my android app apk install over the old version

I successfully produced a small private android app (using appcelerator if that makes a difference) and installed it on my device from the signed apk file. I then made some changes to my application and repackaged it with an updated version number…
3
votes
3 answers

install app programmatically android

I have an app in which i use zxing barcode scanner to scan qr codes. This works only if the user installs barcode scanner app in his mobile. So, can i install that app automatically with the installation of my app? Like installing apk file…
Seshu Vinay
  • 13,560
  • 9
  • 60
  • 109
3
votes
1 answer

Differences in an exported, signed apk and version running in Eclipse debugger? Serializeable class causing problems

Hopefully this won't be too long-winded, but trying to be complete: So I have an app on the Android Market. Within the app are a few Serializable classes. App is working fine everywhere (in emulator, on debugging phone, on phones that download the…
Joey
  • 464
  • 2
  • 9
3
votes
5 answers

Android Studio stuck at installing APK, the adb sometimes fails to install the APK, and somehow Android Studio interferes with adb's install command

Some time ago I had trouble with my Huawei P30 and ADB/Android Studio installing APKs. It turned out I was using outdated versions of the libraries/tools. Got it resolved and happily moved on. Now that my phone has upgraded to Android 10, I'm facing…
cavpollo
  • 4,071
  • 2
  • 40
  • 64
3
votes
1 answer

Execution failed for task ':launcher:processReleaseResources' in Unity

I am trying to build and run my game project to Android in Unity version 2020.1.0b5.3485. It is failing after it hits the Gradle section. I have tried things like deleting .Gradle, letting Android Studio update Grade, and some script edits. Nothing…
3
votes
1 answer

APK size is increased due to audience-network.dex file

In Build.gradle file i m using follwing implemenation //facebook implementation 'com.facebook.android:facebook-share:5.15.3' implementation 'com.android.support:support-annotations:28.0.0' // Required Dependency by Audience Network SDK …
3
votes
3 answers

Android Studio 3.6 : Unable to run apk on emulator or device

After Updating Android Studio to the version 3.6, I am unable to install an app directly to device by using Run button. It just updates the gradle and shows gradle updated popup that's it. I tried invalidating cache and recreating the emulator…
3
votes
1 answer

Silent APK installation by the device owner doesn't work on MIUI 11

I have a "device owner" Android app which silently installs APK using PackageInstaller (see the code, for example, here). This code works perfectly on all Android 7+ devices except Xiaomi Redmi 7A (running MIUI 11). The installation fails, here's…
3
votes
2 answers

App Refuses to Install - INSTALL_FAILED_MISSING_SHARED_LIBRARY

I am new to programming generally please I need some help! My app was installing successfully after every update until i decided to add the 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha' library to the app because i need the user to be able to…