I added my signing keys into keys
folder in root of the project:
.\
keys\
sign.properties
src\
main\
build.gradle
I added next lines to my build script:
signingConfigs {
release {
Properties p = new Properties()
p.load(new FileInputStream('keys/sign.properties'))
storeFile file(p.file)
storePassword p.password
keyAlias p.alias
keyPassword p.keyPassword
}
}
The command line gradle build is able to assemble build. However Android Studio gives me error that file sign.properties
is not found.
How to point AS to it?