• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Android project from Decompiled source code

How can i make Android project from Decompiled apk source code . what are the files i need to import in Android studio and make changes .. please help me!!
 
Why do you need to decompile an APK?
What 'changes' do you need to make?
 
Any apk file i should able to run on Android studio

I think you misunderstand what an APK is. It's a compiled and packaged version of the app, including all resources such as images, and compiled bytecode. It does not contain source code.
It's not possible to import an APK to Android Studio. To make changes to the app, you need access to the original source code, which for obvious reasons, is not distributed with the APK.
 
Last edited by a moderator:
You can always de-compile apk file but unfortunately u can't import it as android project as these files are de-compiled from byte-code project structure and information gets lost.
I suggest you too build your code re-using whatever u got from de-compiled apk.
 
Back
Top Bottom