I just tried in Android Studio 1.4, and it seems that the wizard uses paths relative to the project directory.
Example:
- project catalog
/home/dev/project - module name
app - keystore file
/home/dev/project/app/keystores/debug.keystore
app/keystores/debug.keystore ( , - ).
build.gradle debug.keystore( , , app)
android {
signingConfigs {
debug {
keyAlias 'androiddebugkey'
keyPassword 'android'
storeFile file('keystore/debug.keystore')
storePassword 'android'
}
}
...
}