Skip to content

Commit

Permalink
[fenix] For mozilla-mobile/fenix#6931: Change README forPerformanceTe…
Browse files Browse the repository at this point in the history
…st signingConfig to debug.
  • Loading branch information
mcomella committed Dec 26, 2019
1 parent e41994a commit ba62bf2
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions fenix/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,30 +105,20 @@ You will **need to sign `forPerformanceTest` variants.** For local development,

```groovy
android { // this line already exists
signingConfigs {
forPerformanceTest {
storeFile file("/Users/<user-name>/.android/debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
// ...
buildTypes { // this line already exists
// ...
forPerformanceTest releaseTemplate >> { // this line already exists.
// ...
signingConfig signingConfigs.forPerformanceTest
signingConfig signingConfigs.debug
}
}
}
```

Where `<user-name>` is your OS user name. This sample assumes you are using macOS: if you're on another OS, please update the path appropriately.
This recommendation will let you use AS just like you do with debug builds but **please do not check in these changes.**

See [perf-frontend-issues#44](https://github.com/mozilla-mobile/perf-frontend-issues/issues/44) for efforts to make performance signing easier.
Expand Down

0 comments on commit ba62bf2

Please sign in to comment.