Skip to content

Instantly share code, notes, and snippets.

@shts
Last active January 13, 2017 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shts/8266dffd48f8fdcc3470 to your computer and use it in GitHub Desktop.
Save shts/8266dffd48f8fdcc3470 to your computer and use it in GitHub Desktop.
gradle.propertiesに定義した値をAndroidManifest.xmlから参照する ref: http://qiita.com/shts/items/5a0ceab7334c5ad8f4f9
<meta-data
android:name="io.fabric.ApiKey"
android:value="${fabricApiKey}" />
android {
defaultConfig {
manifestPlaceholders = [fabricApiKey: project.property("fabricApiKey")];
}
}
fabricApiKey=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment