Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How decompile an apk file and edit it and recompile it again??
If you did not compile the apk or do not have the rights to access the source code, DO NOT ATTEMPT TO DO IT, it is illegal in many places.
That being said, if it is your apk and maybe you lost the original sources, you can decompile it with online tools:
http://www.decompileandroid.com/
or with a local tool:
https://apkstudio.codeplex.com/
But keep in mind that in order to upload an update to the play store, you also need the exact same signing certificate.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I need to decompile .apk file, and save it. I'm using http://www.javadecompilers.com/ , but I don't know how to save the folders.
Try Java Decompiler
WIKI page or
Homepage
You can decompile and save the whole content of the archive in an appropriate package struckture.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have an app in which i have done some work like updated database with some records. Now i want to generate its .apk file so if i send that .apk to another user he or she can continue work from where i left. Like i wrote a half article, now i want some one else to complete it so i send that .apk to him and he can install it and continue our work.
All i could find was to get apks for all applications but i want the generated apk to have all the work i done in my app so the other user can continue easily
ref: How to get the .apk file of an application programmatically
You can't send the apk to the other developer, you have to send the source code. Your best bet is to use an online repository (github for example) and share the code that way.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am sure this is a simple answer but:
I want to update my android app that is already on the play market. If I upload a new .apk with the same keystore and package name will the play store automatically inform the user of a new update or is there something I need to do those types of notifications?
In your Manifest, you need to change the build number.
If you don't, it will be rejected anyway by the play store.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I wrote (in Eclipse) and published android application last year. Since this time I started to use Android Studio. Moreover, I am not sure where is my last version of code.
Can I create new version of application and update old apk on google play?
Yes, as long you have the same package name and same signature.
Yes, you should use same package name and same signing certificate which was created by your first application export wizard.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
Pl anyone tell me how can i generate own apk within my application
You cannot "generate own apk within my application" in any normal sense. APK files can only be created by the Android build tools, which are designed to run on Linux, OS X, and Windows.