Is it possible tou change the project name of an apk outside android studio? i need a tool if exists, to change the com.example.app into com.myapp.app but without any IDE, only with the signed apk file. Is it possible?
Asked
Active
Viewed 132 times
0
-
1Why would you need such thing? Yes you can decompile and resign, but AFAIK nothing exists to do such thing because such thing should not be needed and could allow people to re-upload existing applications as theirs... – shkschneider Jan 09 '15 at 14:10
-
I need it because my pc crashed....i have the project backup and of course the signed apk which i want to upload it to google store. So i need to install android studio in a new pc to change pagkage name. So, i search if there is an alternative approach.. – dimos Jan 09 '15 at 14:13
-
Not that I'm aware of, probably for the reasons I just exposed. Re-install Android Studio and rebuild from source, it's not that hard nor long. – shkschneider Jan 09 '15 at 14:14
-
You would need to follow steps to decompile and recompile, like this: http://stackoverflow.com/questions/12370326/decompile-an-apk-modify-it-and-then-recompile-it – weston Jan 09 '15 at 14:15
-
Ok. I asked this question in order to get rid of installing android studio in a new pc due to my crashed pc... – dimos Jan 09 '15 at 14:15
-
If you have the source though that is by far the most pain free solution. – weston Jan 09 '15 at 14:16
-
This is off-topic, but in a new android studio instalation in a new pc, do i have to create enviroment variables for sdk and java? – dimos Jan 09 '15 at 14:52
-
You need to download/install both sdk and java, and no you don't need to set any environment variables. Just add the path to jre/jdk in your PATH system variable – Ispas Claudiu Jan 13 '15 at 14:12