How to Build unsigned APK file with Android Studio| infoBlog.tk

Hay friends now you can do all thinks tricks and tips Facebook hack And Facebook page 

Build unsigned APK file with Android Studio


down voteaccepted
I would recommend you to build your apk file with gradle:
  • Click the dropdown menu in the toolbar at the top
  • Select "Edit Configurations"
  • Click the "+"
  • Select "Gradle"
  • Choose your module as Gradle project
  • In Tasks: enter assemble
  • Press Run
Your unsigned apk is now located in
ProjectName\app\build\outputs\apk
For detailed information on how to use Gradle, this tutorial is a good to go: Building with Gradle in Android Studio. I also wrote a blog post on how to build an unsigned apk with gradle.
If you moved your project from an other IDE and don't want to recompile, you may find your apk file that was already build in the IDE you moved from:
  • If you generated the Project with Android Studio, the apk file will be found in ProjectName/ProjectName/build/apk/...
  • Imported the project from eclipse: File should be in the same directory. Go to Project - Show in Explorer. There you should find the bin folder where your apk file is located in.
  • Imported from IntelliJ, the location would be ProjectName/out/production/...

and one same method is it

down voteaccepted
According to Build Unsigned APK with Gradle you can simply build your application with gradle. In order to do that:
  1. click on the drop down menu on the toolbar at the top (usually with android icon and name of your application)
  2. select Edit configurations
  3. click plus sign at top left corner or press alt+insert
  4. select Gradle
  5. choose your module as Gradle project
  6. in Tasks: enter assemble
  7. press OK
  8. press play
After that you should find your unsigned 'apk' in directory ProjectName\app\build\outputs\apk

Post a Comment

Please Select Embedded Mode To Show The Comment System.*

Previous Post Next Post