@appcircle/react-native-code-push 0.0.2-alpha.2 → 0.0.2-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CodePush.podspec +1 -1
- package/README.md +73 -389
- package/android/app/build.gradle +48 -0
- package/android/build.gradle +8 -34
- package/android/codepush.gradle +1 -1
- package/android/settings.gradle +1 -0
- package/docs/api-android.md +5 -3
- package/docs/multi-deployment-testing-android.md +94 -1
- package/docs/setup-android.md +407 -20
- package/docs/setup-ios.md +172 -1
- package/package.json +3 -3
- package/react-native.config.js +1 -2
- package/scripts/tools/linkToolsAndroid.js +2 -2
- package/scripts/check-package.mjs +0 -11
- /package/android/{proguard-rules.pro → app/proguard-rules.pro} +0 -0
- /package/android/{src → app/src}/main/AndroidManifest.xml +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePush.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushBuilder.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushConstants.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushDialog.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushInstallMode.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushInvalidPublicKeyException.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushInvalidUpdateException.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushMalformedDataException.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushNativeModule.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushNotInitializedException.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushTelemetryManager.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushUnknownException.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushUpdateManager.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushUpdateState.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushUpdateUtils.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/CodePushUtils.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/DownloadProgress.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/DownloadProgressCallback.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/FileUtils.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/ReactHostHolder.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/ReactInstanceHolder.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/SettingsManager.java +0 -0
- /package/android/{src → app/src}/main/java/com/microsoft/codepush/react/TLSSocketFactory.java +0 -0
package/CodePush.podspec
CHANGED
|
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
|
|
|
9
9
|
s.author = package['author']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.homepage = package['homepage']
|
|
12
|
-
s.source = { :git => 'https://github.com/
|
|
12
|
+
s.source = { :git => 'https://github.com/microsoft/react-native-code-push.git', :tag => "v#{s.version}"}
|
|
13
13
|
s.ios.deployment_target = '15.5'
|
|
14
14
|
s.tvos.deployment_target = '15.5'
|
|
15
15
|
s.preserve_paths = '*.js'
|
package/README.md
CHANGED
|
@@ -1,439 +1,123 @@
|
|
|
1
|
-
|
|
2
|
-
> This NPM package is a fork of the original GitHub repository.
|
|
3
|
-
> The implementation has been modified and may differ from the original.
|
|
4
|
-
> Documentation is currently being updated to reflect these changes.
|
|
1
|
+
# Appcircle React Native CodePush SDK
|
|
5
2
|
|
|
6
|
-
##
|
|
3
|
+
## Overview
|
|
7
4
|
|
|
8
|
-
This
|
|
9
|
-
with additional custom modifications for specific use cases.
|
|
5
|
+
Appcircle React Native CodePush SDK enables you to deploy mobile app updates directly to your users' devices through Appcircle's CI/CD platform. This integration allows you to automate your deployment process and manage your app updates efficiently.
|
|
10
6
|
|
|
11
|
-
|
|
7
|
+
## Features
|
|
12
8
|
|
|
9
|
+
- **Appcircle Integration**: Seamless integration with Appcircle CI/CD platform
|
|
10
|
+
- **Automated Deployments**: Automatic deployment of updates through Appcircle workflows
|
|
11
|
+
- **Instant Updates**: Deploy updates to your users' devices instantly
|
|
12
|
+
- **Rollback Support**: Automatically rollback to previous versions if issues occur
|
|
13
|
+
- **Differential Updates**: Only download the files that have changed
|
|
14
|
+
- **Multi-Platform Support**: Works with iOS, Android, and Windows
|
|
15
|
+
- **TypeScript Support**: Full TypeScript definitions included
|
|
13
16
|
|
|
14
|
-
[](http://microsoft.github.io/code-push/)
|
|
15
17
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
# React Native Module for CodePush
|
|
19
|
-
> [!WARNING]
|
|
20
|
-
> ~~React Native CodePush won't support new Architecture. In order to use this plugin on React Native versions starting from 0.76 you will need to [opt out](https://reactnative.dev/blog/2024/10/23/the-new-architecture-is-here#opt-out) from new architecture.~~
|
|
21
|
-
> React Native CodePush support for new architecture is in progress.
|
|
22
|
-
>
|
|
23
|
-
*Note: This README is only relevant to the latest version of our plugin. If you are using an older version, please switch to the relevant tag on [our GitHub repo](https://github.com/microsoft/react-native-code-push) to view the docs for that particular version.*
|
|
24
|
-
|
|
25
|
-

|
|
26
|
-
|
|
27
|
-
This plugin provides client-side integration for the [CodePush service](https://microsoft.github.io/code-push/), allowing you to easily add a dynamic update experience to your React Native app(s).
|
|
28
|
-
|
|
29
|
-
<!-- React Native Catalog -->
|
|
30
|
-
|
|
31
|
-
* [How does it work?](#how-does-it-work)
|
|
32
|
-
* [Supported React Native Platforms](#supported-react-native-platforms)
|
|
33
|
-
* [Supported Components](#supported-components)
|
|
34
|
-
* [Getting Started](#getting-started)
|
|
35
|
-
* [iOS Setup](docs/setup-ios.md)
|
|
36
|
-
* [Android Setup](docs/setup-android.md)
|
|
37
|
-
* [Windows Setup](docs/setup-windows.md)
|
|
38
|
-
* [Plugin Usage](#plugin-usage)
|
|
39
|
-
* [Store Guideline Compliance](#store-guideline-compliance)
|
|
40
|
-
* [Releasing Updates](#releasing-updates)
|
|
41
|
-
* [Multi-Deployment Testing](#multi-deployment-testing)
|
|
42
|
-
* [Android](docs/multi-deployment-testing-android.md)
|
|
43
|
-
* [iOS](docs/multi-deployment-testing-ios.md)
|
|
44
|
-
* [Dynamic Deployment Assignment](#dynamic-deployment-assignment)
|
|
45
|
-
* [API Reference](#api-reference)
|
|
46
|
-
* [JavaScript API](docs/api-js.md)
|
|
47
|
-
* [Objective-C API Reference (iOS)](docs/api-ios.md)
|
|
48
|
-
* [Java API Reference (Android)](docs/api-android.md)
|
|
49
|
-
* [Debugging / Troubleshooting](#debugging--troubleshooting)
|
|
50
|
-
* [Example Apps / Starters](#example-apps--starters)
|
|
51
|
-
* [Continuous Integration / Delivery](#continuous-integration--delivery)
|
|
52
|
-
* [TypeScript Consumption](#typescript-consumption)
|
|
53
|
-
|
|
54
|
-
<!-- React Native Catalog -->
|
|
55
|
-
|
|
56
|
-
## How does it work?
|
|
57
|
-
|
|
58
|
-
A React Native app is composed of JavaScript files and any accompanying [images](https://reactnative.dev/docs/image), which are bundled together by the [metro bundler](https://github.com/facebook/metro) and distributed as part of a platform-specific binary (i.e. an `.ipa` or `.apk` file). Once the app is released, updating either the JavaScript code (e.g. making bug fixes, adding new features) or image assets, requires you to recompile and redistribute the entire binary, which of course, includes any review time associated with the store(s) you are publishing to.
|
|
59
|
-
|
|
60
|
-
The CodePush plugin helps get product improvements in front of your end users instantly, by keeping your JavaScript and images synchronized with updates you release to the CodePush server. This way, your app gets the benefits of an offline mobile experience, as well as the "web-like" agility of side-loading updates as soon as they are available. It's a win-win!
|
|
61
|
-
|
|
62
|
-
In order to ensure that your end users always have a functioning version of your app, the CodePush plugin maintains a copy of the previous update, so that in the event that you accidentally push an update which includes a crash, it can automatically roll back. This way, you can rest assured that your newfound release agility won't result in users becoming blocked before you have a chance to [roll back](https://docs.microsoft.com/en-us/appcenter/distribution/codepush/cli#rolling-back-updates) on the server. It's a win-win-win!
|
|
63
|
-
|
|
64
|
-
*Note: Any product changes which touch native code (e.g. modifying your `AppDelegate.m`/`MainActivity.java` file, adding a new plugin) cannot be distributed via CodePush, and therefore, must be updated via the appropriate store(s).*
|
|
65
|
-
|
|
66
|
-
## Supported React Native platforms
|
|
67
|
-
|
|
68
|
-
- iOS (7+)
|
|
69
|
-
- Android (4.1+) on TLS 1.2 compatible devices
|
|
70
|
-
- Windows (UWP) - Not Tested. We recommend to use [microsoft/code-push-react-native](https://github.com/microsoft/react-native-code-push)
|
|
71
|
-
|
|
72
|
-
We try our best to maintain backwards compatibility of our plugin with previous versions of React Native, but due to the nature of the platform, and the existence of breaking changes between releases, it is possible that you need to use a specific version of the CodePush plugin in order to support the exact version of React Native you are using. The following table outlines which CodePush plugin versions officially support the respective React Native versions:
|
|
73
|
-
|
|
74
|
-
| React Native version(s) | Supporting CodePush version(s) |
|
|
75
|
-
|-------------------------|------------------------------------------------------------------------------------------------------|
|
|
76
|
-
| <v0.76 | **Consider [microsoft/code-push-react-native](https://github.com/microsoft/react-native-code-push)** |
|
|
77
|
-
| v0.76 | v10.0+ *(Available for Old/New Architecture)* |
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
### Supported Components
|
|
82
|
-
|
|
83
|
-
When using the React Native assets system (i.e. using the `require("./foo.png")` syntax), the following list represents the set of core components (and props) that support having their referenced images and videos updated via CodePush:
|
|
84
|
-
|
|
85
|
-
| Component | Prop(s) |
|
|
86
|
-
|-------------------------------------------------|------------------------------------------|
|
|
87
|
-
| `Image` | `source` |
|
|
88
|
-
| `MapView.Marker` <br />*(Requires [react-native-maps](https://github.com/lelandrichardson/react-native-maps) `>=O.3.2`)* | `image` |
|
|
89
|
-
| `ProgressViewIOS` | `progressImage`, `trackImage` |
|
|
90
|
-
| `TabBarIOS.Item` | `icon`, `selectedIcon` |
|
|
91
|
-
| `ToolbarAndroid` <br />*(React Native 0.21.0+)* | `actions[].icon`, `logo`, `overflowIcon` |
|
|
92
|
-
| `Video` | `source` |
|
|
93
|
-
|
|
94
|
-
The following list represents the set of components (and props) that don't currently support their assets being updated via CodePush, due to their dependency on static images and videos (i.e. using the `{ uri: "foo" }` syntax):
|
|
95
|
-
|
|
96
|
-
| Component | Prop(s) |
|
|
97
|
-
|-------------|----------------------------------------------------------------------|
|
|
98
|
-
| `SliderIOS` | `maximumTrackImage`, `minimumTrackImage`, `thumbImage`, `trackImage` |
|
|
99
|
-
| `Video` | `source` |
|
|
100
|
-
|
|
101
|
-
As new core components are released, which support referencing assets, we'll update this list to ensure users know what exactly they can expect to update using CodePush.
|
|
102
|
-
|
|
103
|
-
*Note: CodePush only works with Video components when using `require` in the source prop. For example:*
|
|
104
|
-
|
|
105
|
-
```javascript
|
|
106
|
-
<Video source={require("./foo.mp4")} />
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
## Getting Started
|
|
110
|
-
|
|
111
|
-
Once you've followed the general-purpose ["getting started"](https://docs.microsoft.com/en-us/appcenter/distribution/codepush/index) instructions for setting up your CodePush account, you can start CodePush-ifying your React Native app by running the following command from within your app's root directory:
|
|
18
|
+
## Installation
|
|
19
|
+
Run the following command to add the Appcircle CodePush SDK to your project.
|
|
112
20
|
|
|
113
21
|
```shell
|
|
114
|
-
|
|
22
|
+
npm install @appcircle/react-native-code-push
|
|
115
23
|
```
|
|
116
24
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
If you want to see how other projects have integrated with CodePush, you can check out the excellent [example apps](#example-apps--starters) provided by the community. Additionally, if you'd like to quickly familiarize yourself with CodePush + React Native, you can check out the awesome getting started videos produced by [Bilal Budhani](https://www.youtube.com/watch?v=uN0FRWk-YW8&feature=youtu.be) and/or [Deepak Sisodiya ](https://www.youtube.com/watch?v=f6I9y7V-Ibk).
|
|
120
|
-
|
|
121
|
-
*NOTE: This guide assumes you have used the `react-native init` command to initialize your React Native project. As of March 2017, the command `create-react-native-app` can also be used to initialize a React Native project. If using this command, please run `npm run eject` in your project's home directory to get a project very similar to what `react-native init` would have created.*
|
|
122
|
-
|
|
123
|
-
Then continue with installing the native module
|
|
124
|
-
* [iOS Setup](docs/setup-ios.md)
|
|
125
|
-
* [Android Setup](docs/setup-android.md)
|
|
126
|
-
* [Windows Setup](docs/setup-windows.md)
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
## Plugin Usage
|
|
25
|
+
## Platform Setup
|
|
130
26
|
|
|
131
|
-
|
|
27
|
+
### iOS Setup
|
|
132
28
|
|
|
133
|
-
1.
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
The simplest way to do this is to "CodePush-ify" your app's root component. To do so, you can choose one of the following two options:
|
|
138
|
-
|
|
139
|
-
* **Option 1: Wrap your root component with the `codePush` higher-order component:**
|
|
140
|
-
|
|
141
|
-
* For class component
|
|
142
|
-
|
|
143
|
-
```javascript
|
|
144
|
-
import codePush from "react-native-code-push";
|
|
145
|
-
|
|
146
|
-
class MyApp extends Component {
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
MyApp = codePush(MyApp);
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
* For functional component
|
|
153
|
-
|
|
154
|
-
```javascript
|
|
155
|
-
import codePush from "react-native-code-push";
|
|
156
|
-
|
|
157
|
-
let MyApp: () => React$Node = () => {
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
MyApp = codePush(MyApp);
|
|
161
|
-
```
|
|
162
|
-
|
|
163
|
-
* **Option 2: Use the [ES7 decorator](https://github.com/wycats/javascript-decorators) syntax:**
|
|
164
|
-
|
|
165
|
-
*NOTE: Decorators are not yet supported in Babel 6.x pending proposal update.* You may need to enable it by installing and using [babel-preset-react-native-stage-0](https://github.com/skevy/babel-preset-react-native-stage-0#babel-preset-react-native-stage-0).
|
|
166
|
-
|
|
167
|
-
* For class component
|
|
168
|
-
|
|
169
|
-
```javascript
|
|
170
|
-
import codePush from "react-native-code-push";
|
|
171
|
-
|
|
172
|
-
@codePush
|
|
173
|
-
class MyApp extends Component {
|
|
174
|
-
}
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
* For functional component
|
|
178
|
-
|
|
179
|
-
```javascript
|
|
180
|
-
import codePush from "react-native-code-push";
|
|
181
|
-
|
|
182
|
-
const MyApp: () => React$Node = () => {
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
export default codePush(MyApp);
|
|
186
|
-
```
|
|
187
|
-
|
|
188
|
-
By default, CodePush will check for updates on every app start. If an update is available, it will be silently downloaded, and installed the next time the app is restarted (either explicitly by the end user or by the OS), which ensures the least invasive experience for your end users. If an available update is mandatory, then it will be installed immediately, ensuring that the end user gets it as soon as possible.
|
|
189
|
-
|
|
190
|
-
If you would like your app to discover updates more quickly, you can also choose to sync up with the CodePush server every time the app resumes from the background.
|
|
191
|
-
|
|
192
|
-
* For class component
|
|
193
|
-
|
|
194
|
-
```javascript
|
|
195
|
-
let codePushOptions = { checkFrequency: codePush.CheckFrequency.ON_APP_RESUME };
|
|
196
|
-
|
|
197
|
-
class MyApp extends Component {
|
|
198
|
-
}
|
|
29
|
+
1. Add the following to your `Podfile`:
|
|
30
|
+
```ruby
|
|
31
|
+
pod 'CodePush', :path => '../node_modules/@appcircle/react-native-code-push'
|
|
32
|
+
```
|
|
199
33
|
|
|
200
|
-
|
|
201
|
-
```
|
|
34
|
+
2. Run `pod install` in the iOS directory
|
|
202
35
|
|
|
203
|
-
|
|
36
|
+
### Android Setup
|
|
204
37
|
|
|
205
|
-
|
|
206
|
-
|
|
38
|
+
1. Add the following to your `android/settings.gradle`:
|
|
39
|
+
```gradle
|
|
40
|
+
include ':appcircle-react-native-code-push'
|
|
41
|
+
project(':appcircle-react-native-code-push').projectDir = new File(rootProject.projectDir, '../node_modules/@appcircle/react-native-code-push/android/app')
|
|
42
|
+
```
|
|
207
43
|
|
|
208
|
-
|
|
209
|
-
|
|
44
|
+
2. Add the following to your `android/app/build.gradle`:
|
|
45
|
+
```gradle
|
|
46
|
+
dependencies {
|
|
47
|
+
implementation project(':appcircle-react-native-code-push')
|
|
48
|
+
}
|
|
49
|
+
```
|
|
210
50
|
|
|
211
|
-
|
|
212
|
-
```
|
|
51
|
+
## Basic Usage
|
|
213
52
|
|
|
214
|
-
|
|
53
|
+
### JavaScript Integration
|
|
215
54
|
|
|
216
55
|
```javascript
|
|
217
|
-
|
|
56
|
+
import codePush from "@appcircle/react-native-code-push";
|
|
218
57
|
|
|
58
|
+
// For class components
|
|
219
59
|
class MyApp extends Component {
|
|
220
|
-
|
|
221
|
-
codePush.sync({
|
|
222
|
-
updateDialog: true,
|
|
223
|
-
installMode: codePush.InstallMode.IMMEDIATE
|
|
224
|
-
});
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
render() {
|
|
228
|
-
return (
|
|
229
|
-
<View>
|
|
230
|
-
<TouchableOpacity onPress={this.onButtonPress}>
|
|
231
|
-
<Text>Check for updates</Text>
|
|
232
|
-
</TouchableOpacity>
|
|
233
|
-
</View>
|
|
234
|
-
)
|
|
235
|
-
}
|
|
60
|
+
// Your component code
|
|
236
61
|
}
|
|
62
|
+
MyApp = codePush(MyApp);
|
|
237
63
|
|
|
238
|
-
|
|
64
|
+
// For functional components
|
|
65
|
+
const MyApp = () => {
|
|
66
|
+
// Your component code
|
|
67
|
+
}
|
|
68
|
+
export default codePush(MyApp);
|
|
239
69
|
```
|
|
240
70
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
*NOTE: If you are using [Redux](http://redux.js.org) and [Redux Saga](https://redux-saga.js.org/), you can alternatively use the [react-native-code-push-saga](http://github.com/lostintangent/react-native-code-push-saga) module, which allows you to customize when `sync` is called in a perhaps simpler/more idiomatic way.*
|
|
244
|
-
|
|
245
|
-
### Store Guideline Compliance
|
|
246
|
-
|
|
247
|
-
Android Google Play and iOS App Store have corresponding guidelines that have rules you should be aware of before integrating the CodePush solution within your application.
|
|
71
|
+
### Configuration Options
|
|
248
72
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
That fully allow CodePush as it updates just JS bundles and can't update native code part.
|
|
255
|
-
|
|
256
|
-
#### App Store
|
|
257
|
-
|
|
258
|
-
Paragraph **3.3.2**, since back in 2015's [Apple Developer Program License Agreement](https://developer.apple.com/programs/ios/information/) fully allowed performing over-the-air updates of JavaScript and assets - and in its latest version (20170605) [downloadable here](https://developer.apple.com/terms/) this ruling is even broader:
|
|
259
|
-
|
|
260
|
-
> Interpreted code may be downloaded to an Application but only so long as such code: (a) does not change the primary purpose of the Application by providing features or functionality that are inconsistent with the intended and advertised purpose of the Application as submitted to the App Store, (b) does not create a store or storefront for other code or applications, and (c) does not bypass signing, sandbox, or other security features of the OS.
|
|
261
|
-
|
|
262
|
-
CodePush allows you to follow these rules in full compliance so long as the update you push does not significantly deviate your product from its original App Store approved intent.
|
|
263
|
-
|
|
264
|
-
To further remain in compliance with Apple's guidelines we suggest that App Store-distributed apps don't enable the `updateDialog` option when calling `sync`, since in the [App Store Review Guidelines](https://developer.apple.com/app-store/review/guidelines/) it is written that:
|
|
265
|
-
|
|
266
|
-
> Apps must not force users to rate the app, review the app, download other apps, or other similar actions in order to access functionality, content, or use of the app.
|
|
73
|
+
```javascript
|
|
74
|
+
let codePushOptions = {
|
|
75
|
+
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME
|
|
76
|
+
};
|
|
267
77
|
|
|
268
|
-
|
|
78
|
+
// Apply options
|
|
79
|
+
MyApp = codePush(codePushOptions)(MyApp);
|
|
80
|
+
```
|
|
269
81
|
|
|
270
82
|
## Releasing Updates
|
|
271
83
|
|
|
272
|
-
|
|
84
|
+
### Manual Release
|
|
273
85
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
In its most basic form, this command only requires one parameter: your owner name + "/" + app name.
|
|
86
|
+
Use the Appcircle CLI to release updates:
|
|
277
87
|
|
|
278
88
|
```shell
|
|
279
|
-
|
|
89
|
+
# Basic release
|
|
90
|
+
appcircle-code-push release-react -a <AppName>/<Deployment Name>
|
|
280
91
|
|
|
281
|
-
|
|
282
|
-
|
|
92
|
+
# Release with specific options
|
|
93
|
+
appcircle-code-push release-react -a <AppName>/<DeplymentName> -m --description "Update description"
|
|
283
94
|
```
|
|
284
95
|
|
|
285
96
|
The `release-react` command enables such a simple workflow because it provides many sensible defaults (like generating a release bundle, assuming your app's entry file on iOS is either `index.ios.js` or `index.js`). However, all of these defaults can be customized to allow incremental flexibility as necessary, which makes it a good fit for most scenarios.
|
|
286
97
|
|
|
287
|
-
|
|
288
|
-
# Release a mandatory update with a changelog
|
|
289
|
-
appcenter codepush release-react -a <ownerName>/MyApp-iOS -m --description "Modified the header color"
|
|
290
|
-
|
|
291
|
-
# Release an update for an app that uses a non-standard entry file name, and also capture
|
|
292
|
-
# the sourcemap file generated by react-native bundle
|
|
293
|
-
appcenter codepush release-react -a <ownerName>/MyApp-iOS --entry-file MyApp.js --sourcemap-output ../maps/MyApp.map
|
|
294
|
-
|
|
295
|
-
# Release a dev Android build to just 1/4 of your end users
|
|
296
|
-
appcenter codepush release-react -a <ownerName>/MyApp-Android --rollout 25 --development true
|
|
297
|
-
|
|
298
|
-
# Release an update that targets users running any 1.1.* binary, as opposed to
|
|
299
|
-
# limiting the update to exact version name in the build.gradle file
|
|
300
|
-
appcenter codepush release-react -a <ownerName>/MyApp-Android --target-binary-version "~1.1.0"
|
|
301
|
-
|
|
302
|
-
```
|
|
303
|
-
|
|
304
|
-
The CodePush client supports differential updates, so even though you are releasing your JS bundle and assets on every update, your end users will only actually download the files they need. The service handles this automatically so that you can focus on creating awesome apps and we can worry about optimizing end user downloads.
|
|
305
|
-
|
|
306
|
-
For more details about how the `release-react` command works, as well as the various parameters it exposes, refer to the [CLI docs](https://github.com/microsoft/code-push/tree/v3.0.1/cli#releasing-updates-react-native). Additionally, if you would prefer to handle running the `react-native bundle` command yourself, and therefore, want an even more flexible solution than `release-react`, refer to the [`release` command](https://github.com/microsoft/code-push/tree/v3.0.1/cli#releasing-updates-general) for more details.
|
|
307
|
-
|
|
308
|
-
If you run into any issues, or have any questions/comments/feedback, you can ping us within the [#code-push](https://discord.gg/0ZcbPKXt5bWxFdFu) channel on Reactiflux, [e-mail us](mailto:codepushfeed@microsoft.com) and/or check out the [troubleshooting](#debugging--troubleshooting) details below.
|
|
309
|
-
|
|
310
|
-
*NOTE: CodePush updates should be tested in modes other than Debug mode. In Debug mode, React Native app always downloads JS bundle generated by packager, so JS bundle downloaded by CodePush does not apply.*
|
|
311
|
-
|
|
312
|
-
### Multi-Deployment Testing
|
|
313
|
-
|
|
314
|
-
In our [getting started](#getting-started) docs, we illustrated how to configure the CodePush plugin using a specific deployment key. However, in order to effectively test your releases, it is critical that you leverage the `Staging` and `Production` deployments that are auto-generated when you first created your CodePush app (or any custom deployments you may have created). This way, you never release an update to your end users that you haven't been able to validate yourself.
|
|
315
|
-
|
|
316
|
-
*NOTE: Our client-side rollback feature can help unblock users after installing a release that resulted in a crash, and server-side rollbacks (i.e. `appcenter codepush rollback`) allow you to prevent additional users from installing a bad release once it's been identified. However, it's obviously better if you can prevent an erroneous update from being broadly released in the first place.*
|
|
317
|
-
|
|
318
|
-
Taking advantage of the `Staging` and `Production` deployments allows you to achieve a workflow like the following (feel free to customize!):
|
|
319
|
-
|
|
320
|
-
1. Release a CodePush update to your `Staging` deployment using the `appcenter codepush release-react` command (or `appcenter codepush release` if you need more control)
|
|
321
|
-
|
|
322
|
-
2. Run your staging/beta build of your app, sync the update from the server, and verify it works as expected
|
|
323
|
-
|
|
324
|
-
3. Promote the tested release from `Staging` to `Production` using the `appcenter codepush promote` command
|
|
325
|
-
|
|
326
|
-
4. Run your production/release build of your app, sync the update from the server and verify it works as expected
|
|
327
|
-
|
|
328
|
-
*NOTE: If you want to take a more cautious approach, you can even choose to perform a "staged rollout" as part of #3, which allows you to mitigate additional potential risk with the update (like did your testing in #2 touch all possible devices/conditions?) by only making the production update available to a percentage of your users (for example `appcenter codepush promote -a <ownerName>/<appName> -s Staging -d Production -r 20`). Then, after waiting for a reasonable amount of time to see if any crash reports or customer feedback comes in, you can expand it to your entire audience by running `appcenter codepush patch -a <ownerName>/<appName> Production -r 100`.*
|
|
329
|
-
|
|
330
|
-
You'll notice that the above steps refer to a "staging build" and "production build" of your app. If your build process already generates distinct binaries per "environment", then you don't need to read any further, since swapping out CodePush deployment keys is just like handling environment-specific config for any other service your app uses (like Facebook). However, if you're looking for examples (**including demo projects**) on how to setup your build process to accommodate this, then refer to the following sections, depending on the platform(s) your app is targeting:
|
|
331
|
-
|
|
332
|
-
* [Android](docs/multi-deployment-testing-android.md)
|
|
333
|
-
* [iOS](docs/multi-deployment-testing-ios.md)
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
### Dynamic Deployment Assignment
|
|
337
|
-
|
|
338
|
-
The above section illustrated how you can leverage multiple CodePush deployments in order to effectively test your updates before broadly releasing them to your end users. However, since that workflow statically embeds the deployment assignment into the actual binary, a staging or production build will only ever sync updates from that deployment. In many cases, this is sufficient, since you only want your team, customers, stakeholders, etc. to sync with your pre-production releases, and therefore, only they need a build that knows how to sync with staging. However, if you want to be able to perform A/B tests, or provide early access of your app to certain users, it can prove very useful to be able to dynamically place specific users (or audiences) into specific deployments at runtime.
|
|
339
|
-
|
|
340
|
-
In order to achieve this kind of workflow, all you need to do is specify the deployment key you want the current user to syncronize with when calling the `codePush` method. When specified, this key will override the "default" one that was provided in your app's `Info.plist` (iOS) or `MainActivity.java` (Android) files. This allows you to produce a build for staging or production, that is also capable of being dynamically "redirected" as needed.
|
|
341
|
-
|
|
342
|
-
```javascript
|
|
343
|
-
// Imagine that "userProfile" is a prop that this component received
|
|
344
|
-
// which includes the deployment key that the current user should use.
|
|
345
|
-
codePush.sync({ deploymentKey: userProfile.CODEPUSH_KEY });
|
|
346
|
-
```
|
|
347
|
-
|
|
348
|
-
With that change in place, now it's just a matter of choosing how your app determines the right deployment key for the current user. In practice, there are typically two solutions for this:
|
|
349
|
-
|
|
350
|
-
1. Expose a user-visible mechanism for changing deployments at any time. For example, your settings page could have a toggle for enabling "beta" access. This model works well if you're not concerned with the privacy of your pre-production updates, and you have power users that may want to opt-in to earlier (and potentially buggy) updates at their own will (kind of like Chrome channels). However, this solution puts the decision in the hands of your users, which doesn't help you perform A/B tests transparently.
|
|
351
|
-
|
|
352
|
-
2. Annotate the server-side profile of your users with an additional piece of metadata that indicates the deployment they should sync with. By default, your app could just use the binary-embedded key, but after a user has authenticated, your server can choose to "redirect" them to a different deployment, which allows you to incrementally place certain users or groups in different deployments as needed. You could even choose to store the server-response in local storage so that it becomes the new default. How you store the key alongside your user's profiles is entirely up to your authentication solution (for example Auth0, Firebase, custom DB + REST API), but is generally pretty trivial to do.
|
|
353
|
-
|
|
354
|
-
*NOTE: If needed, you could also implement a hybrid solution that allowed your end-users to toggle between different deployments, while also allowing your server to override that decision. This way, you have a hierarchy of "deployment resolution" that ensures your app has the ability to update itself out-of-the-box, your end users can feel rewarded by getting early access to bits, but you also have the ability to run A/B tests on your users as needed.*
|
|
355
|
-
|
|
356
|
-
Since we recommend using the `Staging` deployment for pre-release testing of your updates (as explained in the previous section), it doesn't neccessarily make sense to use it for performing A/B tests on your users, as opposed to allowing early-access (as explained in option #1 above). Therefore, we recommend making full use of custom app deployments, so that you can segment your users however makes sense for your needs. For example, you could create long-term or even one-off deployments, release a variant of your app to it, and then place certain users into it in order to see how they engage.
|
|
357
|
-
|
|
358
|
-
```javascript
|
|
359
|
-
// #1) Create your new deployment to hold releases of a specific app variant
|
|
360
|
-
appcenter codepush deployment add -a <ownerName>/<appName> test-variant-one
|
|
361
|
-
|
|
362
|
-
// #2) Target any new releases at that custom deployment
|
|
363
|
-
appcenter codepush release-react -a <ownerName>/<appName> -d test-variant-one
|
|
364
|
-
```
|
|
365
|
-
|
|
366
|
-
*NOTE: The total user count that is reported in your deployment's "Install Metrics" will take into account users that have "switched" from one deployment to another. For example, if your `Production` deployment currently reports having 1 total user, but you dynamically switch that user to `Staging`, then the `Production` deployment would report 0 total users, while `Staging` would report 1 (the user that just switched). This behavior allows you to accurately track your release adoption, even in the event of using a runtime-based deployment redirection solution.*
|
|
367
|
-
|
|
368
|
-
---
|
|
369
|
-
|
|
370
|
-
## API Reference
|
|
371
|
-
|
|
372
|
-
* [JavaScript API](docs/api-js.md)
|
|
373
|
-
* [Objective-C API Reference (iOS)](docs/api-ios.md)
|
|
374
|
-
* [Java API Reference (Android)](docs/api-android.md)
|
|
375
|
-
|
|
376
|
-
### Example Apps / Starters
|
|
377
|
-
|
|
378
|
-
The React Native community has graciously created some awesome open source apps that can serve as examples for developers that are getting started. The following is a list of OSS React Native apps that are also using CodePush, and can therefore be used to see how others are using the service:
|
|
379
|
-
|
|
380
|
-
* [F8 App](https://github.com/fbsamples/f8app) - The official conference app for [F8 2016](https://www.fbf8.com/).
|
|
381
|
-
* [Feline for Product Hunt](https://github.com/arjunkomath/Feline-for-Product-Hunt) - An Android client for Product Hunt.
|
|
382
|
-
* [GeoEncoding](https://github.com/LynxITDigital/GeoEncoding) - An app by [Lynx IT Digital](https://digital.lynxit.com.au) which demonstrates how to use numerous React Native components and modules.
|
|
383
|
-
* [Math Facts](https://github.com/Khan/math-facts) - An app by Khan Academy to help memorize math facts more easily.
|
|
384
|
-
|
|
385
|
-
Additionally, if you're looking to get started with React Native + CodePush, and are looking for an awesome starter kit, you should check out the following:
|
|
386
|
-
|
|
387
|
-
* [Pepperoni](http://getpepperoni.com/)
|
|
388
|
-
|
|
389
|
-
*Note: If you've developed a React Native app using CodePush, that is also open-source, please let us know. We would love to add it to this list!*
|
|
390
|
-
|
|
391
|
-
### Debugging / Troubleshooting
|
|
392
|
-
|
|
393
|
-
The `sync` method includes a lot of diagnostic logging out-of-the-box, so if you're encountering an issue when using it, the best thing to try first is examining the output logs of your app. This will tell you whether the app is configured correctly (like can the plugin find your deployment key?), if the app is able to reach the server, if an available update is being discovered, if the update is being successfully downloaded/installed, etc. We want to continue improving the logging to be as intuitive/comprehensive as possible, so please [let us know](mailto:codepushfeed@microsoft.com) if you find it to be confusing or missing anything.
|
|
394
|
-
|
|
395
|
-
The simplest way to view these logs is to add the flag `--debug` for each command. This will output a log stream that is filtered to just CodePush messages. This makes it easy to identify issues, without needing to use a platform-specific tool, or wade through a potentially high volume of logs.
|
|
396
|
-
|
|
397
|
-
<img width="540" alt="screen shot 2016-06-21 at 10 15 42 am" src="https://cloud.githubusercontent.com/assets/116461/16246973/838e2e98-37bc-11e6-9649-685f39e325a0.png">
|
|
398
|
-
|
|
399
|
-
Additionally, you can also use any of the platform-specific tools to view the CodePush logs, if you are more comfortable with them. Simple start up the Chrome DevTools Console, the Xcode Console (iOS), the [OS X Console](https://en.wikipedia.org/wiki/Console_%28OS_X%29#.7E.2FLibrary.2FLogs) (iOS) and/or ADB logcat (Android), and look for messages which are prefixed with `[CodePush]`.
|
|
400
|
-
|
|
401
|
-
Note that by default, React Native logs are disabled on iOS in release builds, so if you want to view them in a release build, you need to make the following changes to your `AppDelegate.m` file:
|
|
402
|
-
|
|
403
|
-
1. Add an `#import <React/RCTLog.h>` statement. For RN < v0.40 use: `#import "RCTLog.h"`
|
|
404
|
-
|
|
405
|
-
2. Add the following statement to the top of your `application:didFinishLaunchingWithOptions` method:
|
|
98
|
+
### Automated Release
|
|
406
99
|
|
|
407
|
-
|
|
408
|
-
RCTSetLogThreshold(RCTLogLevelInfo);
|
|
409
|
-
```
|
|
100
|
+
For Appcircle CodePush release automation, please visit the Appcircle CodePush workflow step [documentation](https://docs.appcircle.io/workflows/react-native-specific-workflow-steps/appcircle-codepush).
|
|
410
101
|
|
|
411
|
-
|
|
102
|
+
## Multi-Deployment Testing
|
|
412
103
|
|
|
413
|
-
|
|
414
|
-
|-----------------|-------------------|
|
|
415
|
-
| Compilation Error | Double-check that your version of React Native is [compatible](#supported-react-native-platforms) with the CodePush version you are using. |
|
|
416
|
-
| Network timeout / hang when calling `sync` or `checkForUpdate` in the iOS Simulator | Try resetting the simulator by selecting the `Simulator -> Reset Content and Settings..` menu item, and then re-running your app. |
|
|
417
|
-
| Server responds with a `404` when calling `sync` or `checkForUpdate` | Double-check that the deployment key you added to your `Info.plist` (iOS), `build.gradle` (Android) or that you're passing to `sync`/`checkForUpdate`, is in fact correct. You can run `appcenter codepush deployment list <ownerName>/<appName> --displayKeys` to view the correct keys for your app deployments. |
|
|
418
|
-
| Update not being discovered | Double-check that the version of your running app (like `1.0.0`) matches the version you specified when releasing the update to CodePush. Additionally, make sure that you are releasing to the same deployment that your app is configured to sync with. |
|
|
419
|
-
| Update not being displayed after restart | If you're not calling `sync` on app start (like within `componentDidMount` of your root component), then you need to explicitly call `notifyApplicationReady` on app start, otherwise, the plugin will think your update failed and roll it back. |
|
|
420
|
-
| I've released an update for iOS but my Android app also shows an update and it breaks it | Be sure you have different deployment keys for each platform in order to receive updates correctly |
|
|
421
|
-
| I've released new update but changes are not reflected | Be sure that you are running app in modes other than Debug. In Debug mode, React Native app always downloads JS bundle generated by packager, so JS bundle downloaded by CodePush does not apply.
|
|
422
|
-
| No JS bundle is being found when running your app against the iOS simulator | By default, React Native doesn't generate your JS bundle when running against the simulator. Therefore, if you're using `[CodePush bundleURL]`, and targetting the iOS simulator, you may be getting a `nil` result. This issue will be fixed in RN 0.22.0, but only for release builds. You can unblock this scenario right now by making [this change](https://github.com/facebook/react-native/commit/9ae3714f4bebdd2bcab4d7fdbf23acebdc5ed2ba) locally.
|
|
104
|
+
The SDK supports multiple deployment environments through Appcircle:
|
|
423
105
|
|
|
424
|
-
|
|
106
|
+
- **Staging**: For testing updates before production
|
|
107
|
+
- **Production**: For end-user updates
|
|
108
|
+
- **Custom Deployments**: For A/B testing or specific user groups
|
|
425
109
|
|
|
426
|
-
In addition to being able to use the CodePush CLI to "manually" release updates, we believe that it's important to create a repeatable and sustainable solution for contiously delivering updates to your app. That way, it's simple enough for you and/or your team to create and maintain the rhythm of performing agile deployments. In order to assist with setting up a CodePush-based CD pipeline, refer to the following integrations with various CI servers:
|
|
427
110
|
|
|
428
|
-
|
|
429
|
-
* [Travis CI](https://github.com/mondora/code-push-travis-cli)
|
|
111
|
+
## Contributing
|
|
430
112
|
|
|
431
|
-
|
|
113
|
+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
432
114
|
|
|
433
|
-
|
|
115
|
+
## License
|
|
434
116
|
|
|
435
|
-
This
|
|
117
|
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
436
118
|
|
|
437
|
-
|
|
119
|
+
## Support
|
|
438
120
|
|
|
439
|
-
|
|
121
|
+
For support with Appcircle integration:
|
|
122
|
+
- Visit [Appcircle Documentation](https://docs.appcircle.io)
|
|
123
|
+
- Contact [Appcircle Support](https://appcircle.io/contact)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
apply plugin: "com.android.library"
|
|
2
|
+
|
|
3
|
+
def isNewArchitectureEnabled() {
|
|
4
|
+
// To opt-in for the New Architecture, you can either:
|
|
5
|
+
// - Set `newArchEnabled` to true inside the `gradle.properties` file
|
|
6
|
+
// - Invoke gradle with `-newArchEnabled=true`
|
|
7
|
+
// - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
|
|
8
|
+
return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
def IS_NEW_ARCHITECTURE_ENABLED = isNewArchitectureEnabled()
|
|
12
|
+
|
|
13
|
+
if (IS_NEW_ARCHITECTURE_ENABLED) {
|
|
14
|
+
apply plugin: "com.facebook.react"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
def DEFAULT_COMPILE_SDK_VERSION = 26
|
|
18
|
+
def DEFAULT_BUILD_TOOLS_VERSION = "26.0.3"
|
|
19
|
+
def DEFAULT_TARGET_SDK_VERSION = 26
|
|
20
|
+
def DEFAULT_MIN_SDK_VERSION = 16
|
|
21
|
+
|
|
22
|
+
android {
|
|
23
|
+
namespace "com.microsoft.codepush.react"
|
|
24
|
+
|
|
25
|
+
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
|
|
26
|
+
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
|
|
27
|
+
|
|
28
|
+
defaultConfig {
|
|
29
|
+
minSdkVersion rootProject.hasProperty('minSdkVersion') ? rootProject.minSdkVersion : DEFAULT_MIN_SDK_VERSION
|
|
30
|
+
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
|
|
31
|
+
versionCode 1
|
|
32
|
+
versionName "1.0"
|
|
33
|
+
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", IS_NEW_ARCHITECTURE_ENABLED.toString()
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
lintOptions {
|
|
37
|
+
abortOnError false
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
defaultConfig {
|
|
41
|
+
consumerProguardFiles 'proguard-rules.pro'
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
dependencies {
|
|
46
|
+
implementation "com.facebook.react:react-native:+"
|
|
47
|
+
implementation 'com.nimbusds:nimbus-jose-jwt:9.37.3'
|
|
48
|
+
}
|
package/android/build.gradle
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Top-level build file
|
|
1
|
+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
2
2
|
|
|
3
3
|
buildscript {
|
|
4
4
|
repositories {
|
|
@@ -7,44 +7,18 @@ buildscript {
|
|
|
7
7
|
}
|
|
8
8
|
dependencies {
|
|
9
9
|
classpath 'com.android.tools.build:gradle:1.3.0'
|
|
10
|
+
|
|
11
|
+
// NOTE: Do not place your application dependencies here; they belong
|
|
12
|
+
// in the individual module build.gradle files
|
|
10
13
|
}
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
allprojects {
|
|
17
|
+
android {
|
|
18
|
+
namespace "com.microsoft.codepush.react"
|
|
19
|
+
}
|
|
14
20
|
repositories {
|
|
15
|
-
|
|
21
|
+
mavenLocal()
|
|
16
22
|
mavenCentral()
|
|
17
23
|
}
|
|
18
24
|
}
|
|
19
|
-
|
|
20
|
-
apply plugin: "com.android.library"
|
|
21
|
-
|
|
22
|
-
def isNewArchitectureEnabled() {
|
|
23
|
-
return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
def IS_NEW_ARCHITECTURE_ENABLED = isNewArchitectureEnabled()
|
|
27
|
-
|
|
28
|
-
android {
|
|
29
|
-
namespace "com.microsoft.codepush.react"
|
|
30
|
-
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : 33
|
|
31
|
-
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : "33.0.0"
|
|
32
|
-
|
|
33
|
-
defaultConfig {
|
|
34
|
-
minSdkVersion rootProject.hasProperty('minSdkVersion') ? rootProject.minSdkVersion : 21
|
|
35
|
-
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : 33
|
|
36
|
-
versionCode 1
|
|
37
|
-
versionName "1.0"
|
|
38
|
-
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", IS_NEW_ARCHITECTURE_ENABLED.toString()
|
|
39
|
-
consumerProguardFiles 'proguard-rules.pro'
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
lintOptions {
|
|
43
|
-
abortOnError false
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
dependencies {
|
|
48
|
-
implementation "com.facebook.react:react-native:+"
|
|
49
|
-
implementation 'com.nimbusds:nimbus-jose-jwt:9.37.3'
|
|
50
|
-
}
|