remove debug.keystore from repository due to a credential issue report (#8113)

This commit is contained in:
Sunghoon 2021-06-22 10:15:10 -07:00 committed by GitHub
parent 27d1784d44
commit 8cacb26946
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -362,7 +362,15 @@ By default, ONNX Runtime React Native leverages ONNX Runtime Mobile package with
xcodebuild test -workspace OnnxruntimeModule.xcworkspace -scheme OnnxruntimeModuleTest -destination 'platform=iOS Simulator,name=iPhone 11,OS=14.5'
```
4. Test an example for Android and iOS. In Windows, open Android Emulator first. From `<ORT_ROOT>/js/react_native`
4. Test an example for Android and iOS. In Windows, open Android Emulator first.
`debug.keystore` must be generated ahead for Android example.
```sh
keytool -genkey -v -keystore <ORT_ROOT>/js/react_native/example/android/app/debug.keystore -alias androiddebugkey -storepass android -keypass android -keyalg RSA -keysize 2048 -validity 999999 -dname "CN=Android Debug,O=Android,C=US"
```
From `<ORT_ROOT>/js/react_native,
```sh
yarn bootstrap