From 46113a0c99e626b2e6a37ff5bc9ddbe7ec910e52 Mon Sep 17 00:00:00 2001 From: Olzhas Alexandrov Date: Wed, 4 Aug 2021 07:08:41 -0500 Subject: [PATCH] docs: provide more details for capacitor.config.json Signed-off-by: Olzhas Alexandrov --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 100a80b1..3660791a 100644 --- a/README.md +++ b/README.md @@ -56,10 +56,14 @@ With the Capacitor plugin installed, configure your app to use it via the follow "Plugins": { ... (other plugins) "CodePush": { + // "IOS_DEPLOY_KEY" is generated by App Center, look below for instructions "IOS_DEPLOY_KEY": "IOS_DEPLOYMENT_KEY", - "IOS_PUBLIC_KEY": "APP_SECRET_KEY", + // "IOS_PUBLIC_KEY" is the content of the "public.pem" file + "IOS_PUBLIC_KEY": "-----BEGIN PUBLIC KEY-----\n_AND_THE_REST...", + // "ANDROID_DEPLOY_KEY" is generated by App Center, look below for instructions "ANDROID_DEPLOY_KEY": "ANDROID_DEPLOYMENT_KEY", - "ANDROID_PUBLIC_KEY": "APP_SECRET_KEY", + // "ANDROID_PUBLIC_KEY" is the content of the "public.pem" file + "ANDROID_PUBLIC_KEY": "-----BEGIN PUBLIC KEY-----\n_AND_THE_REST...", "SERVER_URL": "https://codepush.appcenter.ms/" } }