I have a project with following structure:
Root
\__main_project
|
\__modules
\__
| library1
|
\__
library2
I have following config in my gradle:
android {
compileSdkVersion 19
buildToolsVersion '19.0.0'
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
}
signingConfigs {
release {
storeFile file('/home/home/.signing/test.keystore')
storePassword 'testtest'
keyAlias 'testtest'
keyPassword 'testtest'
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
to build my project I run following command:
./gradlew :main_project:assembleRelease
but it only produces main_project-release-unsigned.apk
So my question why it produces unsigned apk when I specified all required configuration. Thank you.