Where is android studio building my .apk file? -
i've been rebuilding project ground up, there's been lot of problems it. @ moment, everything's working great, except when try run app, message 'local path doesn't exist.', local path pointing @ path: androidstudioprojects\myproject\myproject..\build\production\myproject.apk, , true enough, there no .apk file @ location, or indeed anywhere else in project filesystem.
however, can build app no problems, , running gradlew packagedebug gives me message 'build successful', .apks should being generated. question is, going, or if aren't being generated, why not?
where build path of each module set? i'm confused because project structure->facets->android->compiler settings, project structure->modules->paths->compiler output, build.gradle, , myproject.iml seem have build path, don't quite understand how relate
edit: know should be, it's not there want know how change build path
edit 2: reason running gradlew build create .apks, not building or running inside program
edit 3: here's gradlew build output, note build successfully:
creating properties on demand (a.k.a. dynamic properties) has been deprecated , scheduled removed in gradle 2.0. please read http://gradle.org/docs/current/dsl/org.gradle.api.plugins.extrapropertiesextension.html information on replacement dynamic properties. deprecated dynamic property: "target" on "com.android.build.gradle.libraryextension_decorated@9e9aabc", value: "android-16". :twowaylib:mergereleaseproguardfiles up-to-date :twowaylib:packagereleaseaidl up-to-date :twowaylib:preparereleasedependencies :twowaylib:compilereleaseaidl up-to-date :twowaylib:generatereleasebuildconfig up-to-date :twowaylib:mergereleaseassets up-to-date :twowaylib:compilereleaserenderscript up-to-date :twowaylib:mergereleaseresources up-to-date :twowaylib:processreleasemanifest up-to-date :twowaylib:processreleaseresources up-to-date :twowaylib:compilerelease up-to-date :twowaylib:processreleasejavares up-to-date :twowaylib:packagereleasejar up-to-date :twowaylib:packagereleaselocaljar up-to-date :twowaylib:packagereleaserenderscript up-to-date :twowaylib:bundlerelease up-to-date :rogue:preparerogueprojecttwowaylibunspecifiedlibrary up-to-date :rogue:preparedebugdependencies :rogue:compiledebugaidl up-to-date :rogue:generatedebugbuildconfig up-to-date :rogue:mergedebugassets up-to-date :rogue:compiledebugrenderscript up-to-date :rogue:mergedebugresources up-to-date :rogue:processdebugmanifest up-to-date :rogue:processdebugresources up-to-date :rogue:compiledebug up-to-date :rogue:dexdebug up-to-date :rogue:processdebugjavares up-to-date :rogue:validatedebugsigning :rogue:packagedebug :rogue:assembledebug :rogue:preparereleasedependencies :rogue:compilereleaseaidl up-to-date :rogue:generatereleasebuildconfig up-to-date :rogue:mergereleaseassets up-to-date :rogue:compilereleaserenderscript up-to-date :rogue:mergereleaseresources up-to-date :rogue:processreleasemanifest up-to-date :rogue:processreleaseresources up-to-date :rogue:compilerelease up-to-date :rogue:dexrelease up-to-date :rogue:processreleasejavares up-to-date :rogue:packagerelease :rogue:assemblerelease :rogue:assemble :rogue:check up-to-date :rogue:build :twowaylib:mergedebugproguardfiles up-to-date :twowaylib:packagedebugaidl up-to-date :twowaylib:preparedebugdependencies :twowaylib:compiledebugaidl up-to-date :twowaylib:generatedebugbuildconfig up-to-date :twowaylib:mergedebugassets up-to-date :twowaylib:compiledebugrenderscript up-to-date :twowaylib:mergedebugresources up-to-date :twowaylib:processdebugmanifest up-to-date :twowaylib:processdebugresources up-to-date :twowaylib:compiledebug up-to-date :twowaylib:processdebugjavares up-to-date :twowaylib:packagedebugjar up-to-date :twowaylib:packagedebuglocaljar up-to-date :twowaylib:packagedebugrenderscript up-to-date :twowaylib:bundledebug up-to-date :twowaylib:assembledebug up-to-date :twowaylib:assemblerelease up-to-date :twowaylib:assemble up-to-date :twowaylib:check up-to-date :twowaylib:build up-to-date build successful total time: 10.848 secs
yourapplication\app\build\outputs\apk
Comments
Post a Comment