Generating unsigned, release apk with Android Studio -
i need generate unsigned, release apk (where else sign , release store- else handling keys , else). problem android studio throws error whenever try build: app-flavorunsigned-release-unsigned.apk not signed. please configure signing information selected flavor using project structure dialog. i've tried several, previous methods: failed @ creating artifact (can't find menus "artifacts" anywhere, although editing configurations found option choose custom artifact) [ probably best bet ] creating empty signing config creating custom flavor using terminal run gradle assemble or gradle assemblerelease (which fail due 1 of important module libraries trying built) here current [app's] build.gradle: apply plugin: 'com.android.application' android { signingconfigs { unsigned { storepassword = "" keyalias = "" keypassword = "" } } compilesdkversion 19 ...