Apk Location In New Android Studio
Answer : To help people who might search for answer to this same question, it is important to know what type of projects you are using in Studio. Gradle The default project type when creating new project, and the recommended one in general is Gradle. For a new project called "Foo", the structure under the main folder will be Foo/ settings.gradle Foo/ build.gradle build/ Where the internal "Foo" folder is the main module (this structure allows you to create more modules later on in the same structure without changes). In this setup, the location of the generated APK will be under Foo/Foo/build/apk/... Note that each module can generate its own output, so the true output is more Foo/*/build/apk/... EDIT On the newest version of the Android Studio location path for generated output is Foo/*/build/outputs/apk/... IntelliJ If you are a user of IntelliJ before switching to Studio, and are importing your IntelliJ projec...