Fix Android docs

This commit is contained in:
Jonathan Carter
2016-06-23 07:56:58 -07:00
committed by GitHub
parent bc3c9c34fd
commit 21ef0f4df4

View File

@@ -467,13 +467,13 @@ To set this up, perform the following steps:
buildTypes {
debug {
...
buildConfigField "String", "CODEPUSH_KEY", "<INSERT_STAGING_KEY>"
buildConfigField 'String', 'CODEPUSH_KEY', '"<INSERT_STAGING_KEY>"'
...
}
release {
...
buildConfigField "String", "CODEPUSH_KEY", "<INSERT_PRODUCTION_KEY>"
buildConfigField 'String', 'CODEPUSH_KEY', '"<INSERT_PRODUCTION_KEY>"'
...
}
}
@@ -502,7 +502,7 @@ If you want to be able to install both debug and release builds simultaneously o
```groovy
buildTypes {
debug {
applicationIdSuffix ".debug"
applicationIdSuffix '.debug'
}
}
```