From 4291b3c72b987037931c2e3f7ea4b6cff4fe3043 Mon Sep 17 00:00:00 2001 From: Michael Comella Date: Thu, 26 Dec 2019 07:36:09 -0800 Subject: [PATCH] For #6931: Change README forPerformanceTest signingConfig to debug. --- README.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 42511f626..4862b28e3 100644 --- a/README.md +++ b/README.md @@ -105,15 +105,7 @@ You will **need to sign `forPerformanceTest` variants.** For local development, ```groovy android { // this line already exists - - signingConfigs { - forPerformanceTest { - storeFile file("/Users//.android/debug.keystore") - storePassword "android" - keyAlias "androiddebugkey" - keyPassword "android" - } - } + // ... buildTypes { // this line already exists // ... @@ -121,14 +113,12 @@ android { // this line already exists forPerformanceTest releaseTemplate >> { // this line already exists. // ... - signingConfig signingConfigs.forPerformanceTest + signingConfig signingConfigs.debug } } } ``` -Where `` 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.