You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running this command, client devices configured to receive updates using its associated deployment key will no longer receive the updates that have been cleared. This command is irreversible, and therefore should not be used in a production deployment.
775
+
776
+
## Code Signing for CodePush
777
+
778
+
Code Signing ensures that updates deployed via CodePush are secure and verified. Follow these steps to set up Code Signing:
779
+
780
+
### 1. Generate a Signing Key
781
+
782
+
**Create private and public keys using OpenSSL:**
783
+
784
+
```shell
785
+
# generate private RSA key and write it to private.pem file
786
+
openssl genrsa -out private.pem
787
+
788
+
# export public key from private.pem into public.pem
0 commit comments