Method: Fastlane::Actions::GenerateAndroidKeystoreAction.encrypt_keystore
- Defined in:
- lib/fastlane/plugin/react_native_release/actions/generate_android_keystore.rb
.encrypt_keystore(keystore_path) ⇒ Object
Saves a keystore to the repo. Note this will overwrite it!
66 67 68 69 70 71 72 73 74 |
# File 'lib/fastlane/plugin/react_native_release/actions/generate_android_keystore.rb', line 66 def self.encrypt_keystore(keystore_path) key = Helper::ReactNativeReleaseHelper::ANDROID_KEYSTORE_CRYPTEX_KEY other_action.cryptex( type: "import", in: keystore_path, key: key ) end |