Skip to content

Instantly share code, notes, and snippets.

@emil10001
Created January 26, 2014 17:07
Show Gist options
  • Save emil10001/8635874 to your computer and use it in GitHub Desktop.
Save emil10001/8635874 to your computer and use it in GitHub Desktop.
Specify a particular keystore when using gradle and Intellij. Very useful when you're working with APIs relying on a particular keystore.
android {
...
signingConfigs {
debug {
storeFile file("debug.keystore")
}
}
}
# first, change to the directory of the particular module you're working with
cd <Project_Parent>/<Android_Project_src>/
cp ~/.android/debug.keystore .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment