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/" } }