I am working on a project and submitted for review by one of my peers. In their previous review, he stated that my keystore file needed to be saved in a relative path. I am submitting via GitHub. Currently, my keystore file is saved in the root directory of my project. Also, in my build.gradle, I have the following:
signingConfigs {
config {
keyAlias 'Udacity'
keyPassword 'xxxxxxxx'
storeFile file('/Users/user/Applications/LiveVotingUdacity/livevotingkeystore')
storePassword 'xxxxxx'
}
}
How do I save to a relative path? I am very confused.