Questions tagged [apk]

An .apk file extension denotes an Android Package (APK) file. This file format, a variant of the JAR format, is used for distributing and installing bundled components onto the Android operating system. For questions related to the Alpine Package Keeper, use the tag [alpine-package-keeper]

Android Application Package

An apk file extension denotes an Android Application Package (APK) file. This file format, a variant of the JAR format, is used for distributing and installing bundled components onto the Android operating system. For questions related to the Alpine Package Keeper, use .

Resources

7795 questions
3
votes
0 answers

Adobe AIR for Android - How to use APK expansion files in air app?

I have created an AIR app for Android which I am about to submit to Google Play. Total file size of my APK is around 250 MB since I have embedded a lot of video content which is required for the app to run. I cannot download videos from the server…
Prasad
  • 53
  • 4
3
votes
2 answers

How to add Flash Player prebuilt application to the system.img in android?

I am trying to customize my android system by adding Flash Player to the default system applications. I added the .apk file to packages/apps/FlashPlayer, with the Android.mk file LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS…
Cristian
  • 51
  • 6
3
votes
0 answers

Error when trying to sign a .apk file

I am having a problem with signing my unsigned .apk file. When ever I try to enter this command jarsigner –verbose –sigalg MD5withRSA –digestalg SHA1 –keystore my-release-key.keystore AmazonInAppSample-release-unsigned.apk alias_name I get this…
3
votes
1 answer

How to determine at runtime if app is installed via amazon appstore or Google play

What is the recommended best practice for determining at runtime if an app was installed via the Amazon Android Appstore or Google play? I would like to avoid generating separate APKs for each appstore in which my apps are available. My preferred…
user1980076
  • 233
  • 3
  • 10
3
votes
3 answers

Unable to upload Draft APK to test in-app billing - we get an error message indicating it assumes we want to publish

We have followed the instructions at http://developer.android.com/google/play/billing/billing_testing.html#billing-testing-real to introduce in-app billing to our application, and now want to add our live product IDs. As per the instructions, we…
mashkone
  • 81
  • 5
3
votes
0 answers

Android Gen Folder disapear when export signed APK

Big issue. Everytime I try to export a signed APK using eclipse, at the last action, when I click "finish" the content of my gen folder suddenly disapear so the R file cannot be resolved anymore and I finaly get a error message: "errors occured…
3
votes
4 answers

How to upload a draft application using the new Android Developer Console?

Android requires you to upload an APK with billing permissions through developer console to start testing real in app billing. This was straingtforward in the old developer console but in the new one, as soon as you upload an APK, it activates…
yigit
  • 37,683
  • 13
  • 72
  • 58
3
votes
2 answers

How to install the apk which is sd card with out user intervension?

I written a application which install the apk to device. I stored the apk in sd card. I tried Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File("/sdcard/MyApp.apk")),…
thej
  • 648
  • 10
  • 33
3
votes
2 answers

Headers for force download of apk file

I'm doing a script that increases the counter for an APK file's download then sends the file to the browser for download. Here's what I have:
William The Dev
  • 505
  • 1
  • 6
  • 16
3
votes
1 answer

CMD problems in reaching dex2jar

"dex2jar classes.dex" is not recognized as an internal or external command, operable program or batch file. i got this problem when im trying to generate a classes.dex.jar i think my environment variables have the problem but i cant figure it…
3
votes
0 answers

Install apk from java code without user confirmation

I want to install an apk file from java code. I want to do this silently without any action from user. I try this code .. Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File(files[i].toString())),…
lengarski
  • 47
  • 2
3
votes
1 answer

android .apk size increased

I noticed that the application size of my app, as reported by android, was doubled respect to the same application two months ago, despite I did only minor modifications. Even building the .apk from the same source code I used two months ago, I…
Gianni
  • 91
  • 5
3
votes
2 answers

Including Java-library not in .dex file

I have some questions on using a lgpl library in my android app: Is it possible to have the library anywhere else in my apk - not in the .dex-file? If I create a service in the same project, is the service within the .dex-file? Can android apps…
3
votes
3 answers

How do I make multiple Android apps from a single code base?

I have done this with iOS perfectly and now I need it for Android. I have one codebase that can create unlimited different apps with a simple config file change. Each app is created based on a complex XML config file that I included in the…
Ethan Allen
  • 14,425
  • 24
  • 101
  • 194
3
votes
3 answers

How to get the R.java file when decoding apk file?

I just decode one apk file, but issue is that I can't get the R.java file. The R.java file is created automatically in the application, but when the apk file is decoded, it gives the hex value that is created in R.java instead of @string/abc or…
Jayesh
  • 3,661
  • 10
  • 46
  • 76
1 2 3
99
100