I store my keystore at my assets directory. How can exclude it in the build to create the .apk?
I tried in that way but still there:
android {
...
packagingOptions {
...
exclude 'META-INF/LICENSE.txt'
...
exclude 'assets/keystore'
}
}
It exclude the LICENSE.txt
but not the keystore