react-native-google-mobile-ads 9.1.1 → 10.0.0

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.
@@ -56,7 +56,6 @@ class ReactNativeGoogleMobileAdsAppOpenModule(reactContext: ReactApplicationCont
56
56
  activity,
57
57
  adUnitId,
58
58
  adRequest,
59
- AppOpenAd.APP_OPEN_AD_ORIENTATION_PORTRAIT,
60
59
  object :
61
60
  AppOpenAd.AppOpenAdLoadCallback() {
62
61
  override fun onAdLoaded(ad: AppOpenAd) {
@@ -38,6 +38,7 @@ import com.google.android.gms.ads.BaseAdView;
38
38
  import com.google.android.gms.ads.LoadAdError;
39
39
  import com.google.android.gms.ads.admanager.AdManagerAdView;
40
40
  import com.google.android.gms.ads.admanager.AppEventListener;
41
+ import io.invertase.googlemobileads.common.ReactNativeAdView;
41
42
  import java.util.ArrayList;
42
43
  import java.util.List;
43
44
  import java.util.Map;
@@ -45,7 +46,7 @@ import javax.annotation.Nonnull;
45
46
  import javax.annotation.Nullable;
46
47
 
47
48
  public class ReactNativeGoogleMobileAdsBannerAdViewManager
48
- extends SimpleViewManager<ReactViewGroup> {
49
+ extends SimpleViewManager<ReactNativeAdView> {
49
50
  private static final String REACT_CLASS = "RNGoogleMobileAdsBannerView";
50
51
  private final String EVENT_AD_LOADED = "onAdLoaded";
51
52
  private final String EVENT_AD_FAILED_TO_LOAD = "onAdFailedToLoad";
@@ -55,13 +56,6 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
55
56
  private final String EVENT_APP_EVENT = "onAppEvent";
56
57
  private final int COMMAND_ID_RECORD_MANUAL_IMPRESSION = 1;
57
58
 
58
- private AdRequest request;
59
- private List<AdSize> sizes;
60
- private String unitId;
61
- private Boolean manualImpressionsEnabled;
62
- private boolean propsChanged;
63
- private boolean isFluid;
64
-
65
59
  @Nonnull
66
60
  @Override
67
61
  public String getName() {
@@ -70,8 +64,8 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
70
64
 
71
65
  @Nonnull
72
66
  @Override
73
- public ReactViewGroup createViewInstance(@Nonnull ThemedReactContext themedReactContext) {
74
- return new ReactViewGroup(themedReactContext);
67
+ public ReactNativeAdView createViewInstance(@Nonnull ThemedReactContext themedReactContext) {
68
+ return new ReactNativeAdView(themedReactContext);
75
69
  }
76
70
 
77
71
  @Override
@@ -89,7 +83,7 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
89
83
 
90
84
  @Override
91
85
  public void receiveCommand(
92
- @NonNull ReactViewGroup reactViewGroup, String commandId, @Nullable ReadableArray args) {
86
+ @NonNull ReactNativeAdView reactViewGroup, String commandId, @Nullable ReadableArray args) {
93
87
  super.receiveCommand(reactViewGroup, commandId, args);
94
88
  int commandIdInt = Integer.parseInt(commandId);
95
89
 
@@ -102,19 +96,19 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
102
96
  }
103
97
 
104
98
  @ReactProp(name = "unitId")
105
- public void setUnitId(ReactViewGroup reactViewGroup, String value) {
106
- unitId = value;
107
- propsChanged = true;
99
+ public void setUnitId(ReactNativeAdView reactViewGroup, String value) {
100
+ reactViewGroup.setUnitId(value);
101
+ reactViewGroup.setPropsChanged(true);
108
102
  }
109
103
 
110
104
  @ReactProp(name = "request")
111
- public void setRequest(ReactViewGroup reactViewGroup, ReadableMap value) {
112
- request = ReactNativeGoogleMobileAdsCommon.buildAdRequest(value);
113
- propsChanged = true;
105
+ public void setRequest(ReactNativeAdView reactViewGroup, ReadableMap value) {
106
+ reactViewGroup.setRequest(ReactNativeGoogleMobileAdsCommon.buildAdRequest(value));
107
+ reactViewGroup.setPropsChanged(true);
114
108
  }
115
109
 
116
110
  @ReactProp(name = "sizes")
117
- public void setSizes(ReactViewGroup reactViewGroup, ReadableArray value) {
111
+ public void setSizes(ReactNativeAdView reactViewGroup, ReadableArray value) {
118
112
  List<AdSize> sizeList = new ArrayList<>();
119
113
  for (Object size : value.toArrayList()) {
120
114
  if (size instanceof String) {
@@ -131,33 +125,37 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
131
125
  sendEvent(reactViewGroup, EVENT_SIZE_CHANGE, payload);
132
126
  }
133
127
 
134
- sizes = sizeList;
135
- propsChanged = true;
128
+ reactViewGroup.setSizes(sizeList);
129
+ reactViewGroup.setPropsChanged(true);
136
130
  }
137
131
 
138
132
  @ReactProp(name = "manualImpressionsEnabled")
139
- public void setManualImpressionsEnabled(ReactViewGroup reactViewGroup, boolean value) {
140
- this.manualImpressionsEnabled = value;
141
- propsChanged = true;
133
+ public void setManualImpressionsEnabled(ReactNativeAdView reactViewGroup, boolean value) {
134
+ reactViewGroup.setManualImpressionsEnabled(value);
135
+ reactViewGroup.setPropsChanged(true);
142
136
  }
143
137
 
144
138
  @Override
145
- public void onAfterUpdateTransaction(@NonNull ReactViewGroup reactViewGroup) {
139
+ public void onAfterUpdateTransaction(@NonNull ReactNativeAdView reactViewGroup) {
146
140
  super.onAfterUpdateTransaction(reactViewGroup);
147
- if (propsChanged) {
141
+ if (reactViewGroup.getPropsChanged()) {
148
142
  requestAd(reactViewGroup);
149
143
  }
150
- propsChanged = false;
144
+ reactViewGroup.setPropsChanged(false);
151
145
  }
152
146
 
153
- private BaseAdView initAdView(ReactViewGroup reactViewGroup) {
147
+ private BaseAdView initAdView(ReactNativeAdView reactViewGroup) {
154
148
  BaseAdView oldAdView = getAdView(reactViewGroup);
155
149
  if (oldAdView != null) {
150
+ oldAdView.setAdListener(null);
151
+ if (oldAdView instanceof AdManagerAdView) {
152
+ ((AdManagerAdView) oldAdView).setAppEventListener(null);
153
+ }
156
154
  oldAdView.destroy();
157
155
  reactViewGroup.removeView(oldAdView);
158
156
  }
159
157
  BaseAdView adView;
160
- if (ReactNativeGoogleMobileAdsCommon.isAdManagerUnit(unitId)) {
158
+ if (ReactNativeGoogleMobileAdsCommon.isAdManagerUnit(reactViewGroup.getUnitId())) {
161
159
  adView = new AdManagerAdView(reactViewGroup.getContext());
162
160
  } else {
163
161
  adView = new AdView(reactViewGroup.getContext());
@@ -169,7 +167,7 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
169
167
  public void onAdLoaded() {
170
168
  AdSize adSize = adView.getAdSize();
171
169
  int left, top, width, height;
172
- if (isFluid) {
170
+ if (reactViewGroup.getIsFluid()) {
173
171
  // TODO size=FLUID is still not working
174
172
  left = 0;
175
173
  top = 0;
@@ -230,7 +228,12 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
230
228
  return (BaseAdView) reactViewGroup.getChildAt(0);
231
229
  }
232
230
 
233
- private void requestAd(ReactViewGroup reactViewGroup) {
231
+ private void requestAd(ReactNativeAdView reactViewGroup) {
232
+ String unitId = reactViewGroup.getUnitId();
233
+ List<AdSize> sizes = reactViewGroup.getSizes();
234
+ AdRequest request = reactViewGroup.getRequest();
235
+ Boolean manualImpressionsEnabled = reactViewGroup.getManualImpressionsEnabled();
236
+
234
237
  if (sizes == null || unitId == null || request == null || manualImpressionsEnabled == null) {
235
238
  return;
236
239
  }
@@ -238,10 +241,10 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
238
241
  BaseAdView adView = initAdView(reactViewGroup);
239
242
  adView.setAdUnitId(unitId);
240
243
 
241
- isFluid = false;
244
+ reactViewGroup.setIsFluid(false);
242
245
  if (adView instanceof AdManagerAdView) {
243
246
  if (sizes.contains(AdSize.FLUID)) {
244
- isFluid = true;
247
+ reactViewGroup.setIsFluid(true);
245
248
  ((AdManagerAdView) adView).setAdSizes(AdSize.FLUID);
246
249
  } else {
247
250
  ((AdManagerAdView) adView).setAdSizes(sizes.toArray(new AdSize[0]));
@@ -256,7 +259,7 @@ public class ReactNativeGoogleMobileAdsBannerAdViewManager
256
259
  adView.loadAd(request);
257
260
  }
258
261
 
259
- private void sendEvent(ReactViewGroup reactViewGroup, String type, WritableMap payload) {
262
+ private void sendEvent(ReactNativeAdView reactViewGroup, String type, WritableMap payload) {
260
263
  WritableMap event = Arguments.createMap();
261
264
  event.putString("type", type);
262
265
 
@@ -0,0 +1,68 @@
1
+ package io.invertase.googlemobileads.common;
2
+
3
+ import android.content.Context;
4
+ import com.facebook.react.views.view.ReactViewGroup;
5
+ import com.google.android.gms.ads.AdRequest;
6
+ import com.google.android.gms.ads.AdSize;
7
+ import java.util.List;
8
+
9
+ public class ReactNativeAdView extends ReactViewGroup {
10
+ private AdRequest request;
11
+ private List<AdSize> sizes;
12
+ private String unitId;
13
+ private boolean manualImpressionsEnabled;
14
+ private boolean propsChanged;
15
+ private boolean isFluid;
16
+
17
+ public ReactNativeAdView(final Context context) {
18
+ super(context);
19
+ }
20
+
21
+ public void setRequest(AdRequest request) {
22
+ this.request = request;
23
+ }
24
+
25
+ public AdRequest getRequest() {
26
+ return this.request;
27
+ }
28
+
29
+ public void setSizes(List<AdSize> sizes) {
30
+ this.sizes = sizes;
31
+ }
32
+
33
+ public List<AdSize> getSizes() {
34
+ return this.sizes;
35
+ }
36
+
37
+ public void setUnitId(String unitId) {
38
+ this.unitId = unitId;
39
+ }
40
+
41
+ public String getUnitId() {
42
+ return this.unitId;
43
+ }
44
+
45
+ public void setManualImpressionsEnabled(boolean manualImpressionsEnabled) {
46
+ this.manualImpressionsEnabled = manualImpressionsEnabled;
47
+ }
48
+
49
+ public boolean getManualImpressionsEnabled() {
50
+ return this.manualImpressionsEnabled;
51
+ }
52
+
53
+ public void setPropsChanged(boolean propsChanged) {
54
+ this.propsChanged = propsChanged;
55
+ }
56
+
57
+ public boolean getPropsChanged() {
58
+ return this.propsChanged;
59
+ }
60
+
61
+ public void setIsFluid(boolean isFluid) {
62
+ this.isFluid = isFluid;
63
+ }
64
+
65
+ public boolean getIsFluid() {
66
+ return this.isFluid;
67
+ }
68
+ }
@@ -86,6 +86,7 @@ Return values of the hook are:
86
86
  | :------------- | :--------------------------------- | :----------------------------------------------------------------------------------------------------------------- |
87
87
  | isLoaded | boolean | Whether the ad is loaded and ready to to be shown to the user. Automatically set to false when the ad was shown. |
88
88
  | isOpened | boolean | Whether the ad is opened. The value is remained `true` even after the ad is closed unless **new ad is requested**. |
89
+ | isClicked | boolean | Whether the ad is clicked. |
89
90
  | isClosed | boolean | Whether your ad is dismissed. |
90
91
  | isShowing | boolean | Whether your ad is showing. The value is equal with `isOpened && !isClosed`. |
91
92
  | error | Error \| undefined | `Error` object throwed during ad load. |
@@ -28,6 +28,7 @@ To setup and configure ads consent collection, first of all:
28
28
  -keep class com.google.android.gms.internal.consent_sdk.** { *; }
29
29
  ```
30
30
  - For Expo users, add extraProguardRules property to `app.json` file following this guide [Expo](https://docs.expo.dev/versions/latest/sdk/build-properties/#pluginconfigtypeandroid):
31
+
31
32
  ```json
32
33
  {
33
34
  "expo": {
@@ -37,15 +38,15 @@ To setup and configure ads consent collection, first of all:
37
38
  {
38
39
  "android": {
39
40
  "extraProguardRules": "-keep class com.google.android.gms.internal.consent_sdk.** { *; }"
40
- },
41
+ }
41
42
  }
42
43
  ]
43
44
  ]
44
45
  }
45
46
  }
46
47
  ```
47
- You'll need to generate a new development build before using it.
48
48
 
49
+ You'll need to generate a new development build before using it.
49
50
 
50
51
  ### Delaying app measurement
51
52
 
package/docs/index.mdx CHANGED
@@ -169,6 +169,37 @@ mobileAds()
169
169
 
170
170
  If you are using mediation, you may wish to wait until the promise is settled before loading ads, as this will ensure that all mediation adapters are initialized.
171
171
 
172
+ ### App Tracking Transparency (iOS)
173
+
174
+ Apple requires apps to display the App Tracking Transparency authorization request for accessing the IDFA (leaving the choice to the user, whether to use personalized or non-personalized ads).
175
+ Within your projects `app.json` file, you have to use the `user_tracking_usage_description` to describe your usage:
176
+
177
+ ```json
178
+ {
179
+ "react-native-google-mobile-ads": {
180
+ "android_app_id": "ca-app-pub-xxxxxxxx~xxxxxxxx",
181
+ "ios_app_id": "ca-app-pub-xxxxxxxx~xxxxxxxx",
182
+ "user_tracking_usage_description": "This identifier will be used to deliver personalized ads to you."
183
+ }
184
+ }
185
+ ```
186
+
187
+ To request the App Tracking Transparency authorization we recommend using the [react-native-permissions](https://github.com/zoontek/react-native-permissions) library or making it part of the UMP consent flow [European User Consent page](/european-user-consent).
188
+
189
+ ```js
190
+ import { check, request, PERMISSIONS, RESULTS } from 'react-native-permissions';
191
+
192
+ const result = await check(PERMISSIONS.IOS.APP_TRACKING_TRANSPARENCY);
193
+ if (result === RESULTS.DENIED) {
194
+ // The permission has not been requested, so request it.
195
+ await request(PERMISSIONS.IOS.APP_TRACKING_TRANSPARENCY);
196
+ }
197
+
198
+ const adapterStatuses = await mobileAds().initialize();
199
+
200
+ // Now ads can be loaded.
201
+ ```
202
+
172
203
  ### European User Consent
173
204
 
174
205
  Out of the box, AdMob does not handle any related regulations which you may need to enforce on your application.
@@ -5,6 +5,6 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // Generated by genversion.
8
- const version = '9.1.1';
8
+ const version = '10.0.0';
9
9
  exports.version = version;
10
10
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["version"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":";;;;;;AAAA;AACO,MAAMA,OAAO,GAAG,OAAO;AAAC"}
1
+ {"version":3,"names":["version"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":";;;;;;AAAA;AACO,MAAMA,OAAO,GAAG,QAAQ;AAAC"}
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '9.1.1';
2
+ export const version = '10.0.0';
3
3
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["version"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":"AAAA;AACA,OAAO,MAAMA,OAAO,GAAG,OAAO"}
1
+ {"version":3,"names":["version"],"sourceRoot":"../../src","sources":["version.ts"],"mappings":"AAAA;AACA,OAAO,MAAMA,OAAO,GAAG,QAAQ"}
@@ -1,4 +1,4 @@
1
- export declare const SDK_VERSION = "9.1.1";
1
+ export declare const SDK_VERSION = "10.0.0";
2
2
  export { default, MobileAds } from './MobileAds';
3
3
  export { AdsConsentDebugGeography } from './AdsConsentDebugGeography';
4
4
  export { AdsConsentPurposes } from './AdsConsentPurposes';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,WAAW,UAAU,CAAC;AAEnC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AAC9E,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAoBA,eAAO,MAAM,WAAW,WAAU,CAAC;AAEnC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AAC9E,cAAc,SAAS,CAAC"}
@@ -1,2 +1,2 @@
1
- export declare const version = "9.1.1";
1
+ export declare const version = "10.0.0";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,OAAO,UAAU,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,OAAO,WAAW,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-google-mobile-ads",
3
- "version": "9.1.1",
3
+ "version": "10.0.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.",
6
6
  "main": "lib/commonjs/index.js",
@@ -41,15 +41,15 @@
41
41
  ],
42
42
  "sdkVersions": {
43
43
  "ios": {
44
- "googleMobileAds": "9.14.0",
45
- "googleUmp": "2.0.0"
44
+ "googleMobileAds": "10.2.0",
45
+ "googleUmp": "2.0.1"
46
46
  },
47
47
  "android": {
48
48
  "minSdk": 19,
49
49
  "targetSdk": 30,
50
50
  "compileSdk": 31,
51
51
  "buildTools": "31.0.0",
52
- "googleMobileAds": "21.4.0",
52
+ "googleMobileAds": "21.5.0",
53
53
  "googleUmp": "2.0.0"
54
54
  }
55
55
  },
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '9.1.1';
2
+ export const version = '10.0.0';