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
3
votes
3 answers

I can't find apk release file for Play Store

I want to release 2nd android app in Play Market. For release need apk file Firstly, I go to Genereate Signed Bundle or APK, there I choice android.jks file from my 1st app and key alias. I get message : App bundle(s) generated successfully: Module…
Bekzhan
  • 175
  • 1
  • 12
3
votes
1 answer

Error when I try to install app-debug.apk generated by ionic4, on an mobile

I have already done all possible tests, deleted the platforms/android directory and re-generated, deleted the node_modules and re-installed. But whenever I generate the apk to debug, the error continues. The ionic cordova build android --prod…
3
votes
3 answers

Building the signing and release prepartion of android apps into jenkins/hudson?

I've got a handful of side-project apps on the go at home, I've setup a Jenkins installation to check them out and build APKs, which I then transfer over to my handset and play around with. I'm looking to release some of these freely on the market,…
Jimmy
  • 16,123
  • 39
  • 133
  • 213
3
votes
1 answer

apksigner, zipalign and jarsigner not working as expected

I have created a Xamarin Form application using Visual Studio 2017 in Windows 10 and archived the android application to APK file. When I upload the APK to Google Play console to update my existing app, it says the APK is not signed. Then I used…
user10606387
3
votes
1 answer

Does Android automatically delete obb expansion files after install?

I have an obb file which is a zip file, which I unpack after downloading it in the obb folder. Then I copy the unpacked obb files to Internal Storage. I just released an app to Internal testing. I installed the app, but I was hoping that the obb…
live-love
  • 48,840
  • 22
  • 240
  • 204
3
votes
5 answers

Delete App (.apk) in emulator?

I know of two ways of deleting an app under development from the emulator: Using the emulator GUI: Settings > Applications > Manage Applications > Uninstall Using ADB: adb uninstall I may have discovered a third way, using 'adb shell': rm…
Android Eve
  • 14,864
  • 26
  • 71
  • 96
3
votes
1 answer

Install APK as system app with INSTALL_PACKAGES

I have developed an app that is running with system permissions (it is built into the image of AOSP) and has the INSTALL_PACKAGES permission. My goal is to install a APK silently in the background without user interaction. I read different…
3
votes
2 answers

Cannot load project: com.intellij.ide.plugins.PluginManager$StartupAbortedException: Fatal error initializing plugin net.rim.tools.ajde android

Any one please help me. I already have android studio 2.2 and i uninstalled android studio and again downloaded new version of android studio from developer site. when i wanna open the project it is showing a popup like Cannot load project:…
kartheeki j
  • 2,206
  • 5
  • 27
  • 51
3
votes
4 answers

Parse Error Installing custom built .apk

I have built a simple custom app that we would like to push out to our sales reps phones. I developed it using Eclipse with the Android SDK and it is written for Android version to 1.5 and the min SDK is set to 3. I have compiled the app with a…
EclipseNewbie
  • 31
  • 1
  • 1
  • 2
3
votes
2 answers

How to reduce app size in Ionic2?

I am new to Ionic, recently I developed One app.But my app size was 8mb. How should I reduce app size,and I am not using any Images and plugins also, but it took 8mb size. please help me.
Pavan Reddy
  • 173
  • 1
  • 3
  • 11
3
votes
2 answers

Android studio gradle build running for too long time for build apk

New Project. Imported all libs using gradle build system. Gradle build successful. Enabled gradle offline work and instant run. Attached my device, clicked run. App build competed in 4 mins. After few changes in code I clicked apply changes. App…
3
votes
1 answer

Programatically launch an APK installation from app internal storage in Android 5.0 - 6.0

Programmatically install an apk in Android 7 / api24 answers a similar question, but I want to programmatically install an APK from app internal storage (on an SD card) in Android 5.0 - 6.0 too. If it weren't from app internal storage, I could…
LarsH
  • 27,481
  • 8
  • 94
  • 152
3
votes
3 answers

How to get Application Installation failed event in app

I have been using Action_View to install apk using following code Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE); intent.setDataAndType(Uri.fromFile(new File(location + "myAPK.apk")), …
Rajeev Kumar
  • 4,901
  • 8
  • 48
  • 83
3
votes
0 answers

Apk never opens on the real device while working well on the emulator

I am using Android Studio 2.3.1, and the Android device is Galaxy 6 edge; currently Nougat 7.0. Even when all I did was creating a new project and adding one more text view, it's not opened (I get "App has stopped" on the device.) I selected 6.0,…
ys d
  • 83
  • 2
  • 11
3
votes
1 answer

PackageManager: Not granting permission - Android M

I am using an app for some benchmarking purpose When I install the app I'm getting these logs from packagemanager. The android version is Marshmallow and I know that the app targetSdkVersion is 22 (so I expect this to work with M) 09-07 02:24:05.407…