An `.apk`-file is a bundled Android application, which contains the compiled source and other resources of the application.
0
votes
0answers
19 views
Getting 2 different hash keys for a signed android apk
I am using the following code to generate hash key
MessageDigest md = null;
try
{
md = MessageDigest.getInstance("SHA");
}
catch (NoSuchAlgorithmException e1)
{
e1.printStackTrace();
}
...
0
votes
1answer
39 views
Is there any way to generate a .apk file in external sdcard from my android mobile by clicking on one button?
I have a .apk file of a library project, now i want to use that .apk file in my application project(in assets folder) and while running my application project i want to put a .sql file into that .apk ...
0
votes
0answers
33 views
Unable to access jarfile SignApk
I'm trying to sign an APK with SignApk, but I keep getting this error:
Error: Unable to access jarfile signapk.jar
I have appended my JDK directory as well as my SignAPK directory to my system path ...
1
vote
1answer
24 views
Sign apk application before running on device from eclipse
Do you have any suggestions how can I automatically sign my android apk after launching run action from eclipse menu? I want to deploy signed application with my production key because it's demanded ...
1
vote
2answers
51 views
Proguard error while generating Secure Signed APK
I have been trying from last 2 days to generate the secure signed apk for my application but still not get any success in it.
I have check so many answers of StackOverflow and tried every solution ...
-1
votes
1answer
49 views
Proguard crashes app when trying to send picture with camera [closed]
My app is tested and working fine. But when I try to test a release apk, it crashes. I am including my proguard file and the error log I get while testing the release apk. Basically It crashes after I ...
0
votes
0answers
18 views
Add Certificate To Inserted Files To An .APK
I need to add some files to an existed .apk file but after I insert files manually into the .apk file and try to install the program, it shows this error and can't be install:
Package <my ...
7
votes
1answer
77 views
Android Expansion apk
I was going through the docs of APK EXPANSION FILES in android and I was wondering that can we have all layout files in the patch apk and application's business logic in main apk ?
I read this ...
3
votes
2answers
60 views
How to restrict an APK not to get installed in Android Emulator/Simulator but in real device?
Hope you know that an application which is installed in an android device can be backed up and stored as an installable file(as an APK file) with the help of apps like Astro file manager. The same apk ...
-4
votes
1answer
52 views
Apk File Deleted. Need to regenerate [closed]
I accidently deleted my project apk file from my Eclipse Project directory and now I cannot run my project. Any suggestions on how I can generate the apk file?
0
votes
1answer
27 views
resources not linked into final APK
I can run my app fine in the emulator and with the same source compile a final APK, but on another computer with exactly the same environment (Android-SDK, Eclipse and sources!) copied there, the ...
-1
votes
3answers
186 views
Delete an application (*.apk) after installation
I've created my android application, and exported it as *.apk. Is it possible to make the apk file to be deleted automatically upon successful installation?
0
votes
1answer
40 views
Check keystore alias and KeyStore Certificate information name inside the application
I have signed my android application with my generated keystore certificate is it possible inside my java code to check the unique information of keystore certificate using which i have generated or ...
0
votes
2answers
55 views
Maintain Single Source or apk for Nook and Kindle
I have to maintain my application in Android Play, Kindle and Nook Stores. I am using camera option in my application. As there is no camera for Nook I have to hide camera option each time when I am ...
0
votes
1answer
23 views
Adding something under what's new section of Android app in Google Play
I have published my first Android app on Google play and submitted an updated new APK with few bug fixes and new features recently. In Google play listing, it shows that the application was updated on ...
0
votes
0answers
30 views
Android emulator and Google APK Expansion libraries error
I have an app that uses Google APK expansion libraries because the my app uses over 50MB worth of MP3 files. I have followed the instructions here ...
2
votes
1answer
260 views
Programmatically change the permission of installing apk from unknown source in android device
For allowing or preventing manually installation of apk file from sdcard we ticks/unticks the checkbox which says "Allow installation of app from unknown source".
Can we do this Programmatically by ...
-2
votes
1answer
27 views
Exporting Android Project to Zip [closed]
I have major memory problem when exporting to zip. Just today I found it. Generally(only for me??) it takes about 5mb to 15mb(.zip) to export a project. I have a simple ...
1
vote
2answers
150 views
Android app - bundle videos in apk is a bad idea?
I have an Android app (client app) which requires several videos to be available in the app for local playback. Average video is 10MB+. I don't believe the videos will be updated often, if at all..
...
1
vote
1answer
93 views
Adding Google Play APK Expansion Library package causes “R cannot be resolved to a variable”
I am STILL trying to follow the documentation for using "APK Expansion Files" (http://developer.android.com/google/play/expansion-files.html#Preparing). When I get to part where I add the ...
0
votes
1answer
48 views
NOT_LICENSED cannot be resolved or is not a field
I have been trying to follow the documentation available here:
http://developer.android.com/google/play/expansion-files.html#Preparing
I have tried to follow what it says to do ...
If you're ...
2
votes
1answer
111 views
Application Error on Android Phonegap
Im testing a simple html file with some input fields and two buttons, after installing the apk file on my android device everything seems well, but when I rotate the screen I receive the following ...
0
votes
0answers
55 views
Conversion to Dalvik format failed with error 1 while generating .apk file [duplicate]
In my application i need to convert image into pdf , it converted successfully by using iText library.But i am getting bellow error while generating .apk file.
Conversion to Dalvik format failed with ...
0
votes
1answer
90 views
Google map grid only android
I tried to upload my apk to the android console, but it gives me the following message:
You uploaded an APK that was signed in debug mode. You need to sign
your APK in release mode.
All I did ...
-1
votes
1answer
107 views
APK expansion file expPath does not exists
I have been trying to convert my App to use an APK Expansion file and for some reason this code below cannot find the path to my APK Expansion file ...
static String[] getAPKExpansionFiles(Context ...
3
votes
0answers
81 views
Copying android .apk to another .apk file through java code and over-ride its assets files?
is it possible to create .apk file by copying an already existing .apk file and modifying its assets folder? I have some information in a file in assets folder containing server ip and port to which ...
0
votes
1answer
89 views
Running Terminal Command in Android App to Route Audio
So i have an LG P920 I want to Modify The T.I FMrX app to add commands to route audio via tinymix here are the shell commands
# tinymix 6 120
# tinymix 66 7
# tinymix 67 7
# tinymix 73 2
# tinymix ...
0
votes
2answers
85 views
ZipResourceFile cannot be resolved to a type
I am trying to rewrite my App to work with APK Expansion files. I have been following the documentation here http://developer.android.com/google/play/expansion-files.html . I have downloaded the ...
0
votes
2answers
94 views
old apk file only run on android emulator always
I have created one android application.
i have to run the app which means it is worked well on android emulator and device.
Afterthat i have to change some layout height and weight(some design ...
0
votes
1answer
166 views
Where do I put my APK expansion file?
I have 90MB of mp3 files that my media player app uses. I want to upload my .apk to google play but since my app is over 50MB I have to put my mp3 files into a expansion file. I have read the ...
0
votes
1answer
193 views
How do I change my code to use APK Expansion file?
My application is over 50MB because I use a lot of MP3 files. I typical do this ...
uri = Uri.parse("android.resource://red.cricket.RecordAlbum/" + R.raw.track_001_64kb );
... but if I have to use ...
0
votes
1answer
50 views
How to reduce application size when it is installed in sd card
I have recently started developing a simple application which has a very few KB (less than 20KB) of resources most of which are png images. I have written on the application manifest that the ...
-4
votes
2answers
205 views
Why android application extension .apk? why not .jar or .jad? [closed]
Why google uses .apk for their application file extension name?? Why they didn't uses .jar , .jad or any another file extension??
The only reason I've come far as possible is
.apk means Android ...
0
votes
1answer
240 views
Facebook Android SDK 3.0 calls just show a white screen
I have a lot of issues with the Facebook Android SDK 3.0 — a lot. Here's one which is particularly annoying: I have added the Facebook project to my workspace and linked it to my Android application. ...
1
vote
3answers
90 views
What is the difference between running app and exporting unsigned app?
What is the difference between running an app and exporting unsigned app (regarding the built .apk) file?
As my app fails to export with Conversion to Dalvik format failed with error 1, but when ...
0
votes
0answers
147 views
reduce size of apk using HoloEveryWhere
I am using HoloEveryWhere in my project. But i am not happy with the size of the final apk. Can anyone provide specific guidelines on how to reduce size or include only specific styles that would be ...
0
votes
3answers
49 views
Saving a file to your own android application
When My application is running I want to capture some information and save this to a folder in my application rather than to the device. I have read online that it is not possible to save a file to ...
0
votes
1answer
178 views
res\ and AndroidManifest.xml not added to my .apk file
Due to a change of computers, I had to do a new installation of Eclipse and the Android SDK. I copied over my work environment (directory) and voila, everything works fine when compiling and running ...
-6
votes
2answers
224 views
Android - Error when build Project to APK file using apktool
I have an APK file named : MyApp.apk . First I decode it using apktool :
apktool d MyApp.apk
It generates project folder : MyApp. Then I import it to Eclipse to edit. I create a new class as an ...
4
votes
1answer
7k views
Android - How to decode and decompile any APK file?
I'm working for ads. My customers give me some APK files of their Apps. My work is insert ads banners into them. After close ads banners, these apps will run.
My question is : How to decode and ...
0
votes
1answer
41 views
External devices support in android
Is this possible to use external camera or other devices like fingure print scanners kind of devices in android. Is this possible to access those devices in an android application programmatically.
2
votes
3answers
78 views
Is library file present in .apk file?
Actually I want to know that if in my application's libs folder, any library file(e.g .jar file) is present, then after installing(running) that application, will library file present in .apk file?
...
1
vote
0answers
168 views
Android, sideloading applications and keep them up to date via Google Play
My company would like to give an Android device to a group of our selected customers.
Doing that, we would like to provide users with our mobile app. The app is already on Google Play, but we would ...
0
votes
1answer
71 views
NoSuchMethodError calling constructor of class in same APK
I'm working on an app that throws a NoSuchMethodError when trying to new a certain class. The code looks something like this...
Bar bar = new Bar(Bar.Type.WHATEVER, 1f);
...and the error is...
...
1
vote
2answers
698 views
Android Installation failure - Not enough space - Error Code -4
One of my users is reporting that he can not install my app anymore. He uninstalled the app and when he tried to reinstall it he gets an error like "Not enough storage".
According to his ...
0
votes
0answers
38 views
Standard Android Apks [closed]
I am trying to build an Android hardening tool, I require a definitive list of Android APKs before Samsung or HTC add their flavor but I cannot seem to find one.
If anyone can help it would be much ...
1
vote
3answers
543 views
Adding prebuilt apk with shared libraries to aosp
i try to add a prebuilt apk to my android build. the apk contains several shared libaries (.so). it compiles fine but i still get the error from the app that the libraries cannot be found.
Does anyone ...
-2
votes
1answer
206 views
Error while de-compling .apk file in APK Manager [closed]
I got an error while decompiling an .apk file in the APK Manager.
'java' is not recognized as an internal or external command, operable program or batch file.
java version "1.7.0_11" ...
0
votes
1answer
180 views
Java library for reading apk file (for building play store like app)
My requirement is to develop an Play store like application. Where, developers will be uploading their Android .apk file.
Checking on the mobile application side can be done only with applications ...
0
votes
1answer
40 views
Android app design when targeting specific version
I have an Android app that works for all versions starting from Android-8. Now, as of Android-17, there is additional API that I would like to use, however I don't wont to set target SDK to ...








