react-native-google-mobile-ads 14.2.2 → 14.2.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/__tests__/banner.test.tsx +14 -0
- package/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.kt +166 -0
- package/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.kt +42 -0
- package/docs/european-user-consent.mdx +4 -3
- package/docs/index.mdx +6 -6
- package/docs/testing.mdx +17 -0
- package/docs.json +2 -1
- package/jest.setup.ts +1 -4
- package/lib/commonjs/validateAdRequestOptions.js +3 -0
- package/lib/commonjs/validateAdRequestOptions.js.map +1 -1
- package/lib/commonjs/version.js +1 -1
- package/lib/module/validateAdRequestOptions.js +3 -0
- package/lib/module/validateAdRequestOptions.js.map +1 -1
- package/lib/module/version.js +1 -1
- package/lib/typescript/src/AdEventType.d.ts.map +1 -0
- package/lib/typescript/src/AdsConsent.d.ts.map +1 -0
- package/lib/typescript/src/AdsConsentDebugGeography.d.ts.map +1 -0
- package/lib/typescript/src/AdsConsentPrivacyOptionsRequirementStatus.d.ts.map +1 -0
- package/lib/typescript/src/AdsConsentPurposes.d.ts.map +1 -0
- package/lib/typescript/src/AdsConsentSpecialFeatures.d.ts.map +1 -0
- package/lib/typescript/src/AdsConsentStatus.d.ts.map +1 -0
- package/lib/typescript/src/BannerAdSize.d.ts.map +1 -0
- package/lib/typescript/src/GAMAdEventType.d.ts.map +1 -0
- package/lib/typescript/src/MaxAdContentRating.d.ts.map +1 -0
- package/lib/typescript/src/MobileAds.d.ts.map +1 -0
- package/lib/typescript/src/NativeGoogleMobileAdsModule.d.ts.map +1 -0
- package/lib/typescript/src/RewardedAdEventType.d.ts.map +1 -0
- package/lib/typescript/src/TestIds.d.ts.map +1 -0
- package/lib/typescript/src/ads/AppOpenAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/BannerAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/BaseAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/GAMBannerAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/GAMInterstitialAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/GoogleMobileAdsBannerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/ads/InterstitialAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/MobileAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/RewardedAd.d.ts.map +1 -0
- package/lib/typescript/src/ads/RewardedInterstitialAd.d.ts.map +1 -0
- package/lib/typescript/src/common/constants.d.ts.map +1 -0
- package/lib/typescript/src/common/debounce.d.ts.map +1 -0
- package/lib/typescript/src/common/index.d.ts.map +1 -0
- package/lib/typescript/src/common/validate.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useAppOpenAd.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useForeground.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useFullScreenAd.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useInterstitialAd.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useRewardedAd.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useRewardedInterstitialAd.d.ts.map +1 -0
- package/lib/typescript/{index.d.ts → src/index.d.ts} +1 -1
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/internal/GoogleMobileAdsNativeEventEmitter.d.ts.map +1 -0
- package/lib/typescript/src/internal/NativeError.d.ts.map +1 -0
- package/lib/typescript/src/internal/SharedEventEmitter.d.ts.map +1 -0
- package/lib/typescript/src/types/AdEventListener.d.ts.map +1 -0
- package/lib/typescript/src/types/AdEventsListener.d.ts.map +1 -0
- package/lib/typescript/src/types/AdShowOptions.d.ts.map +1 -0
- package/lib/typescript/src/types/AdStates.d.ts.map +1 -0
- package/lib/typescript/src/types/AdapterStatus.d.ts.map +1 -0
- package/lib/typescript/src/types/AdsConsent.interface.d.ts.map +1 -0
- package/lib/typescript/src/types/AppEvent.d.ts.map +1 -0
- package/lib/typescript/src/types/BannerAdProps.d.ts.map +1 -0
- package/lib/typescript/src/types/MobileAd.interface.d.ts.map +1 -0
- package/lib/typescript/src/types/MobileAdsModule.interface.d.ts.map +1 -0
- package/lib/typescript/src/types/PaidEventListener.d.ts.map +1 -0
- package/lib/typescript/src/types/RequestConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/RequestOptions.d.ts.map +1 -0
- package/lib/typescript/src/types/RewardedAdReward.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/lib/typescript/src/validateAdRequestConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/validateAdRequestOptions.d.ts.map +1 -0
- package/lib/typescript/src/validateAdShowOptions.d.ts.map +1 -0
- package/lib/typescript/src/version.d.ts +2 -0
- package/lib/typescript/src/version.d.ts.map +1 -0
- package/lib/typescript/type-test.d.ts +2 -0
- package/lib/typescript/type-test.d.ts.map +1 -0
- package/package.json +4 -4
- package/plugin/__tests__/__snapshots__/plugin.test.ts.snap +278 -0
- package/plugin/__tests__/fixtures/app.config.js +24 -0
- package/plugin/__tests__/fixtures/app.config.ts +24 -0
- package/plugin/__tests__/fixtures/without-params/app.config.js +11 -0
- package/plugin/__tests__/fixtures/without-params/app.config.ts +11 -0
- package/plugin/__tests__/plugin.test.ts +13 -10
- package/src/validateAdRequestOptions.ts +3 -0
- package/src/version.ts +1 -1
- package/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.java +0 -207
- package/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.java +0 -49
- package/lib/typescript/AdEventType.d.ts.map +0 -1
- package/lib/typescript/AdsConsent.d.ts.map +0 -1
- package/lib/typescript/AdsConsentDebugGeography.d.ts.map +0 -1
- package/lib/typescript/AdsConsentPrivacyOptionsRequirementStatus.d.ts.map +0 -1
- package/lib/typescript/AdsConsentPurposes.d.ts.map +0 -1
- package/lib/typescript/AdsConsentSpecialFeatures.d.ts.map +0 -1
- package/lib/typescript/AdsConsentStatus.d.ts.map +0 -1
- package/lib/typescript/BannerAdSize.d.ts.map +0 -1
- package/lib/typescript/GAMAdEventType.d.ts.map +0 -1
- package/lib/typescript/MaxAdContentRating.d.ts.map +0 -1
- package/lib/typescript/MobileAds.d.ts.map +0 -1
- package/lib/typescript/NativeGoogleMobileAdsModule.d.ts.map +0 -1
- package/lib/typescript/RewardedAdEventType.d.ts.map +0 -1
- package/lib/typescript/TestIds.d.ts.map +0 -1
- package/lib/typescript/ads/AppOpenAd.d.ts.map +0 -1
- package/lib/typescript/ads/BannerAd.d.ts.map +0 -1
- package/lib/typescript/ads/BaseAd.d.ts.map +0 -1
- package/lib/typescript/ads/GAMBannerAd.d.ts.map +0 -1
- package/lib/typescript/ads/GAMInterstitialAd.d.ts.map +0 -1
- package/lib/typescript/ads/GoogleMobileAdsBannerViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/ads/InterstitialAd.d.ts.map +0 -1
- package/lib/typescript/ads/MobileAd.d.ts.map +0 -1
- package/lib/typescript/ads/RewardedAd.d.ts.map +0 -1
- package/lib/typescript/ads/RewardedInterstitialAd.d.ts.map +0 -1
- package/lib/typescript/common/constants.d.ts.map +0 -1
- package/lib/typescript/common/debounce.d.ts.map +0 -1
- package/lib/typescript/common/index.d.ts.map +0 -1
- package/lib/typescript/common/validate.d.ts.map +0 -1
- package/lib/typescript/hooks/useAppOpenAd.d.ts.map +0 -1
- package/lib/typescript/hooks/useForeground.d.ts.map +0 -1
- package/lib/typescript/hooks/useFullScreenAd.d.ts.map +0 -1
- package/lib/typescript/hooks/useInterstitialAd.d.ts.map +0 -1
- package/lib/typescript/hooks/useRewardedAd.d.ts.map +0 -1
- package/lib/typescript/hooks/useRewardedInterstitialAd.d.ts.map +0 -1
- package/lib/typescript/index.d.ts.map +0 -1
- package/lib/typescript/internal/GoogleMobileAdsNativeEventEmitter.d.ts.map +0 -1
- package/lib/typescript/internal/NativeError.d.ts.map +0 -1
- package/lib/typescript/internal/SharedEventEmitter.d.ts.map +0 -1
- package/lib/typescript/types/AdEventListener.d.ts.map +0 -1
- package/lib/typescript/types/AdEventsListener.d.ts.map +0 -1
- package/lib/typescript/types/AdShowOptions.d.ts.map +0 -1
- package/lib/typescript/types/AdStates.d.ts.map +0 -1
- package/lib/typescript/types/AdapterStatus.d.ts.map +0 -1
- package/lib/typescript/types/AdsConsent.interface.d.ts.map +0 -1
- package/lib/typescript/types/AppEvent.d.ts.map +0 -1
- package/lib/typescript/types/BannerAdProps.d.ts.map +0 -1
- package/lib/typescript/types/MobileAd.interface.d.ts.map +0 -1
- package/lib/typescript/types/MobileAdsModule.interface.d.ts.map +0 -1
- package/lib/typescript/types/PaidEventListener.d.ts.map +0 -1
- package/lib/typescript/types/RequestConfiguration.d.ts.map +0 -1
- package/lib/typescript/types/RequestOptions.d.ts.map +0 -1
- package/lib/typescript/types/RewardedAdReward.d.ts.map +0 -1
- package/lib/typescript/types/index.d.ts.map +0 -1
- package/lib/typescript/validateAdRequestConfiguration.d.ts.map +0 -1
- package/lib/typescript/validateAdRequestOptions.d.ts.map +0 -1
- package/lib/typescript/validateAdShowOptions.d.ts.map +0 -1
- package/lib/typescript/version.d.ts +0 -2
- package/lib/typescript/version.d.ts.map +0 -1
- /package/lib/typescript/{AdEventType.d.ts → src/AdEventType.d.ts} +0 -0
- /package/lib/typescript/{AdsConsent.d.ts → src/AdsConsent.d.ts} +0 -0
- /package/lib/typescript/{AdsConsentDebugGeography.d.ts → src/AdsConsentDebugGeography.d.ts} +0 -0
- /package/lib/typescript/{AdsConsentPrivacyOptionsRequirementStatus.d.ts → src/AdsConsentPrivacyOptionsRequirementStatus.d.ts} +0 -0
- /package/lib/typescript/{AdsConsentPurposes.d.ts → src/AdsConsentPurposes.d.ts} +0 -0
- /package/lib/typescript/{AdsConsentSpecialFeatures.d.ts → src/AdsConsentSpecialFeatures.d.ts} +0 -0
- /package/lib/typescript/{AdsConsentStatus.d.ts → src/AdsConsentStatus.d.ts} +0 -0
- /package/lib/typescript/{BannerAdSize.d.ts → src/BannerAdSize.d.ts} +0 -0
- /package/lib/typescript/{GAMAdEventType.d.ts → src/GAMAdEventType.d.ts} +0 -0
- /package/lib/typescript/{MaxAdContentRating.d.ts → src/MaxAdContentRating.d.ts} +0 -0
- /package/lib/typescript/{MobileAds.d.ts → src/MobileAds.d.ts} +0 -0
- /package/lib/typescript/{NativeGoogleMobileAdsModule.d.ts → src/NativeGoogleMobileAdsModule.d.ts} +0 -0
- /package/lib/typescript/{RewardedAdEventType.d.ts → src/RewardedAdEventType.d.ts} +0 -0
- /package/lib/typescript/{TestIds.d.ts → src/TestIds.d.ts} +0 -0
- /package/lib/typescript/{ads → src/ads}/AppOpenAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/BannerAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/BaseAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/GAMBannerAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/GAMInterstitialAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/GoogleMobileAdsBannerViewNativeComponent.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/InterstitialAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/MobileAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/RewardedAd.d.ts +0 -0
- /package/lib/typescript/{ads → src/ads}/RewardedInterstitialAd.d.ts +0 -0
- /package/lib/typescript/{common → src/common}/constants.d.ts +0 -0
- /package/lib/typescript/{common → src/common}/debounce.d.ts +0 -0
- /package/lib/typescript/{common → src/common}/index.d.ts +0 -0
- /package/lib/typescript/{common → src/common}/validate.d.ts +0 -0
- /package/lib/typescript/{hooks → src/hooks}/useAppOpenAd.d.ts +0 -0
- /package/lib/typescript/{hooks → src/hooks}/useForeground.d.ts +0 -0
- /package/lib/typescript/{hooks → src/hooks}/useFullScreenAd.d.ts +0 -0
- /package/lib/typescript/{hooks → src/hooks}/useInterstitialAd.d.ts +0 -0
- /package/lib/typescript/{hooks → src/hooks}/useRewardedAd.d.ts +0 -0
- /package/lib/typescript/{hooks → src/hooks}/useRewardedInterstitialAd.d.ts +0 -0
- /package/lib/typescript/{internal → src/internal}/GoogleMobileAdsNativeEventEmitter.d.ts +0 -0
- /package/lib/typescript/{internal → src/internal}/NativeError.d.ts +0 -0
- /package/lib/typescript/{internal → src/internal}/SharedEventEmitter.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AdEventListener.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AdEventsListener.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AdShowOptions.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AdStates.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AdapterStatus.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AdsConsent.interface.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/AppEvent.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/BannerAdProps.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/MobileAd.interface.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/MobileAdsModule.interface.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/PaidEventListener.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/RequestConfiguration.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/RequestOptions.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/RewardedAdReward.d.ts +0 -0
- /package/lib/typescript/{types → src/types}/index.d.ts +0 -0
- /package/lib/typescript/{validateAdRequestConfiguration.d.ts → src/validateAdRequestConfiguration.d.ts} +0 -0
- /package/lib/typescript/{validateAdRequestOptions.d.ts → src/validateAdRequestOptions.d.ts} +0 -0
- /package/lib/typescript/{validateAdShowOptions.d.ts → src/validateAdShowOptions.d.ts} +0 -0
- /package/plugin/__tests__/fixtures/{app-without-params.json → without-params/app.json} +0 -0
package/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsModule.java
DELETED
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
package io.invertase.googlemobileads;
|
|
2
|
-
|
|
3
|
-
/*
|
|
4
|
-
* Copyright (c) 2016-present Invertase Limited & Contributors
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this library except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
|
|
20
|
-
import androidx.annotation.Nullable;
|
|
21
|
-
import com.facebook.react.bridge.Arguments;
|
|
22
|
-
import com.facebook.react.bridge.Promise;
|
|
23
|
-
import com.facebook.react.bridge.ReactApplicationContext;
|
|
24
|
-
import com.facebook.react.bridge.ReactMethod;
|
|
25
|
-
import com.facebook.react.bridge.ReadableMap;
|
|
26
|
-
import com.facebook.react.bridge.WritableArray;
|
|
27
|
-
import com.facebook.react.bridge.WritableMap;
|
|
28
|
-
import com.google.android.gms.ads.AdInspectorError;
|
|
29
|
-
import com.google.android.gms.ads.AdRequest;
|
|
30
|
-
import com.google.android.gms.ads.MobileAds;
|
|
31
|
-
import com.google.android.gms.ads.OnAdInspectorClosedListener;
|
|
32
|
-
import com.google.android.gms.ads.RequestConfiguration;
|
|
33
|
-
import com.google.android.gms.ads.initialization.AdapterStatus;
|
|
34
|
-
import com.google.android.gms.ads.initialization.InitializationStatus;
|
|
35
|
-
import com.google.android.gms.ads.initialization.OnInitializationCompleteListener;
|
|
36
|
-
import io.invertase.googlemobileads.common.ReactNativeModule;
|
|
37
|
-
import java.util.ArrayList;
|
|
38
|
-
import java.util.List;
|
|
39
|
-
import java.util.Map;
|
|
40
|
-
import java.util.Objects;
|
|
41
|
-
|
|
42
|
-
public class ReactNativeGoogleMobileAdsModule extends ReactNativeModule {
|
|
43
|
-
private static final String SERVICE = "RNGoogleMobileAdsModule";
|
|
44
|
-
|
|
45
|
-
ReactNativeGoogleMobileAdsModule(ReactApplicationContext reactContext) {
|
|
46
|
-
super(reactContext, SERVICE);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
private RequestConfiguration buildRequestConfiguration(ReadableMap requestConfiguration) {
|
|
50
|
-
RequestConfiguration.Builder builder = new RequestConfiguration.Builder();
|
|
51
|
-
|
|
52
|
-
if (requestConfiguration.hasKey("testDeviceIdentifiers")) {
|
|
53
|
-
ArrayList<Object> devices =
|
|
54
|
-
Objects.requireNonNull(requestConfiguration.getArray("testDeviceIdentifiers"))
|
|
55
|
-
.toArrayList();
|
|
56
|
-
|
|
57
|
-
List<String> testDeviceIds = new ArrayList<>();
|
|
58
|
-
|
|
59
|
-
for (Object device : devices) {
|
|
60
|
-
String id = (String) device;
|
|
61
|
-
|
|
62
|
-
if (id.equals("EMULATOR")) {
|
|
63
|
-
testDeviceIds.add(AdRequest.DEVICE_ID_EMULATOR);
|
|
64
|
-
} else {
|
|
65
|
-
testDeviceIds.add(id);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
builder.setTestDeviceIds(testDeviceIds);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (requestConfiguration.hasKey("maxAdContentRating")) {
|
|
72
|
-
String rating = requestConfiguration.getString("maxAdContentRating");
|
|
73
|
-
|
|
74
|
-
switch (Objects.requireNonNull(rating)) {
|
|
75
|
-
case "G":
|
|
76
|
-
builder.setMaxAdContentRating(RequestConfiguration.MAX_AD_CONTENT_RATING_G);
|
|
77
|
-
break;
|
|
78
|
-
case "PG":
|
|
79
|
-
builder.setMaxAdContentRating(RequestConfiguration.MAX_AD_CONTENT_RATING_PG);
|
|
80
|
-
break;
|
|
81
|
-
case "T":
|
|
82
|
-
builder.setMaxAdContentRating(RequestConfiguration.MAX_AD_CONTENT_RATING_T);
|
|
83
|
-
break;
|
|
84
|
-
case "MA":
|
|
85
|
-
builder.setMaxAdContentRating(RequestConfiguration.MAX_AD_CONTENT_RATING_MA);
|
|
86
|
-
break;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
if (requestConfiguration.hasKey("tagForChildDirectedTreatment")) {
|
|
91
|
-
boolean tagForChildDirectedTreatment =
|
|
92
|
-
requestConfiguration.getBoolean("tagForChildDirectedTreatment");
|
|
93
|
-
if (tagForChildDirectedTreatment) {
|
|
94
|
-
builder.setTagForChildDirectedTreatment(
|
|
95
|
-
RequestConfiguration.TAG_FOR_CHILD_DIRECTED_TREATMENT_TRUE);
|
|
96
|
-
} else {
|
|
97
|
-
builder.setTagForChildDirectedTreatment(
|
|
98
|
-
RequestConfiguration.TAG_FOR_CHILD_DIRECTED_TREATMENT_FALSE);
|
|
99
|
-
}
|
|
100
|
-
} else {
|
|
101
|
-
builder.setTagForChildDirectedTreatment(
|
|
102
|
-
RequestConfiguration.TAG_FOR_CHILD_DIRECTED_TREATMENT_UNSPECIFIED);
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
if (requestConfiguration.hasKey("tagForUnderAgeOfConsent")) {
|
|
106
|
-
boolean tagForUnderAgeOfConsent = requestConfiguration.getBoolean("tagForUnderAgeOfConsent");
|
|
107
|
-
if (tagForUnderAgeOfConsent) {
|
|
108
|
-
builder.setTagForUnderAgeOfConsent(RequestConfiguration.TAG_FOR_UNDER_AGE_OF_CONSENT_TRUE);
|
|
109
|
-
} else {
|
|
110
|
-
builder.setTagForUnderAgeOfConsent(RequestConfiguration.TAG_FOR_UNDER_AGE_OF_CONSENT_FALSE);
|
|
111
|
-
}
|
|
112
|
-
} else {
|
|
113
|
-
builder.setTagForUnderAgeOfConsent(
|
|
114
|
-
RequestConfiguration.TAG_FOR_UNDER_AGE_OF_CONSENT_UNSPECIFIED);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
return builder.build();
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
@ReactMethod
|
|
121
|
-
public void initialize(Promise promise) {
|
|
122
|
-
MobileAds.initialize(
|
|
123
|
-
getApplicationContext(),
|
|
124
|
-
new OnInitializationCompleteListener() {
|
|
125
|
-
@Override
|
|
126
|
-
public void onInitializationComplete(InitializationStatus initializationStatus) {
|
|
127
|
-
WritableArray result = Arguments.createArray();
|
|
128
|
-
for (Map.Entry<String, AdapterStatus> entry :
|
|
129
|
-
initializationStatus.getAdapterStatusMap().entrySet()) {
|
|
130
|
-
WritableMap info = Arguments.createMap();
|
|
131
|
-
info.putString("name", entry.getKey());
|
|
132
|
-
info.putInt("state", entry.getValue().getInitializationState().ordinal());
|
|
133
|
-
info.putString("description", entry.getValue().getDescription());
|
|
134
|
-
result.pushMap(info);
|
|
135
|
-
}
|
|
136
|
-
promise.resolve(result);
|
|
137
|
-
}
|
|
138
|
-
});
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
@ReactMethod
|
|
142
|
-
public void setRequestConfiguration(ReadableMap requestConfiguration, Promise promise) {
|
|
143
|
-
MobileAds.setRequestConfiguration(buildRequestConfiguration(requestConfiguration));
|
|
144
|
-
promise.resolve(null);
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
@ReactMethod
|
|
148
|
-
public void openAdInspector(Promise promise) {
|
|
149
|
-
if (getCurrentActivity() == null) {
|
|
150
|
-
rejectPromiseWithCodeAndMessage(
|
|
151
|
-
promise,
|
|
152
|
-
"null-activity",
|
|
153
|
-
"Ad Inspector attempted to open but the current Activity was null.");
|
|
154
|
-
return;
|
|
155
|
-
}
|
|
156
|
-
getCurrentActivity()
|
|
157
|
-
.runOnUiThread(
|
|
158
|
-
() -> {
|
|
159
|
-
MobileAds.openAdInspector(
|
|
160
|
-
getApplicationContext(),
|
|
161
|
-
new OnAdInspectorClosedListener() {
|
|
162
|
-
@Override
|
|
163
|
-
public void onAdInspectorClosed(@Nullable AdInspectorError adInspectorError) {
|
|
164
|
-
if (adInspectorError != null) {
|
|
165
|
-
String code = "";
|
|
166
|
-
switch (adInspectorError.getCode()) {
|
|
167
|
-
case AdInspectorError.ERROR_CODE_INTERNAL_ERROR:
|
|
168
|
-
code = "INTERNAL_ERROR";
|
|
169
|
-
break;
|
|
170
|
-
case AdInspectorError.ERROR_CODE_FAILED_TO_LOAD:
|
|
171
|
-
code = "FAILED_TO_LOAD";
|
|
172
|
-
break;
|
|
173
|
-
case AdInspectorError.ERROR_CODE_NOT_IN_TEST_MODE:
|
|
174
|
-
code = "NOT_IN_TEST_MODE";
|
|
175
|
-
break;
|
|
176
|
-
case AdInspectorError.ERROR_CODE_ALREADY_OPEN:
|
|
177
|
-
code = "ALREADY_OPEN";
|
|
178
|
-
break;
|
|
179
|
-
}
|
|
180
|
-
rejectPromiseWithCodeAndMessage(
|
|
181
|
-
promise, code, adInspectorError.getMessage());
|
|
182
|
-
} else {
|
|
183
|
-
promise.resolve(null);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
});
|
|
187
|
-
});
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
@ReactMethod
|
|
191
|
-
public void openDebugMenu(final String adUnit) {
|
|
192
|
-
if (getCurrentActivity() != null) {
|
|
193
|
-
getCurrentActivity()
|
|
194
|
-
.runOnUiThread(() -> MobileAds.openDebugMenu(getCurrentActivity(), adUnit));
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
@ReactMethod
|
|
199
|
-
public void setAppVolume(final Float volume) {
|
|
200
|
-
MobileAds.setAppVolume(volume);
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
@ReactMethod
|
|
204
|
-
public void setAppMuted(final Boolean muted) {
|
|
205
|
-
MobileAds.setAppMuted(muted);
|
|
206
|
-
}
|
|
207
|
-
}
|
package/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsPackage.java
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
package io.invertase.googlemobileads;
|
|
2
|
-
|
|
3
|
-
/*
|
|
4
|
-
* Copyright (c) 2016-present Invertase Limited & Contributors
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this library except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
|
|
20
|
-
import com.facebook.react.ReactPackage;
|
|
21
|
-
import com.facebook.react.bridge.NativeModule;
|
|
22
|
-
import com.facebook.react.bridge.ReactApplicationContext;
|
|
23
|
-
import com.facebook.react.uimanager.ViewManager;
|
|
24
|
-
import java.util.ArrayList;
|
|
25
|
-
import java.util.Arrays;
|
|
26
|
-
import java.util.List;
|
|
27
|
-
import javax.annotation.Nonnull;
|
|
28
|
-
|
|
29
|
-
@SuppressWarnings("unused")
|
|
30
|
-
public class ReactNativeGoogleMobileAdsPackage implements ReactPackage {
|
|
31
|
-
@Override
|
|
32
|
-
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
|
|
33
|
-
List<NativeModule> modules = new ArrayList<>();
|
|
34
|
-
modules.add(new ReactNativeAppModule(reactContext));
|
|
35
|
-
modules.add(new ReactNativeGoogleMobileAdsModule(reactContext));
|
|
36
|
-
modules.add(new ReactNativeGoogleMobileAdsConsentModule(reactContext));
|
|
37
|
-
modules.add(new ReactNativeGoogleMobileAdsAppOpenModule(reactContext));
|
|
38
|
-
modules.add(new ReactNativeGoogleMobileAdsInterstitialModule(reactContext));
|
|
39
|
-
modules.add(new ReactNativeGoogleMobileAdsRewardedModule(reactContext));
|
|
40
|
-
modules.add(new ReactNativeGoogleMobileAdsRewardedInterstitialModule(reactContext));
|
|
41
|
-
return modules;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
@Nonnull
|
|
45
|
-
@Override
|
|
46
|
-
public List<ViewManager> createViewManagers(@Nonnull ReactApplicationContext reactContext) {
|
|
47
|
-
return Arrays.asList(new ReactNativeGoogleMobileAdsBannerAdViewManager());
|
|
48
|
-
}
|
|
49
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdEventType.d.ts","sourceRoot":"","sources":["../../src/AdEventType.ts"],"names":[],"mappings":"AAiBA,oBAAY,WAAW;IACrB;;;;;;;;;;;;OAYG;IACH,MAAM,WAAW;IAEjB;;;;;;;;;;;;OAYG;IACH,KAAK,UAAU;IAEf;;;OAGG;IACH,MAAM,WAAW;IAEjB;;;OAGG;IACH,IAAI,SAAS;IAEb;;OAEG;IACH,OAAO,YAAY;IAEnB;;OAEG;IACH,MAAM,WAAW;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsent.d.ts","sourceRoot":"","sources":["../../src/AdsConsent.ts"],"names":[],"mappings":"AAuBA,OAAO,EAGL,mBAAmB,EAEpB,MAAM,8BAA8B,CAAC;AAItC,eAAO,MAAM,UAAU,EAAE,mBAqIxB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsentDebugGeography.d.ts","sourceRoot":"","sources":["../../src/AdsConsentDebugGeography.ts"],"names":[],"mappings":"AAiBA;;;;GAIG;AACH,oBAAY,wBAAwB;IAClC;;OAEG;IACH,QAAQ,IAAI;IAEZ;;OAEG;IACH,GAAG,IAAI;IAEP;;OAEG;IACH,OAAO,IAAI;CACZ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsentPrivacyOptionsRequirementStatus.d.ts","sourceRoot":"","sources":["../../src/AdsConsentPrivacyOptionsRequirementStatus.ts"],"names":[],"mappings":"AAiBA;;GAEG;AACH,oBAAY,yCAAyC;IACnD;;OAEG;IACH,OAAO,YAAY;IAEnB;;OAEG;IACH,QAAQ,aAAa;IAErB;;OAEG;IACH,YAAY,iBAAiB;CAC9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsentPurposes.d.ts","sourceRoot":"","sources":["../../src/AdsConsentPurposes.ts"],"names":[],"mappings":"AAyBA,oBAAY,kBAAkB;IAC5B;;;;;;;OAOG;IACH,sCAAsC,IAAI;IAE1C;;;;;;;;;;;;;;;;;;OAkBG;IACH,gBAAgB,IAAI;IAEpB;;;;;;;;;;;OAWG;IACH,iCAAiC,IAAI;IAErC;;;;;;;OAOG;IACH,uBAAuB,IAAI;IAE3B;;;;;;;;;;;OAWG;IACH,qCAAqC,IAAI;IAEzC;;;;;;;OAOG;IACH,2BAA2B,IAAI;IAE/B;;;;;;;;;;;;;;;;;;OAkBG;IACH,sBAAsB,IAAI;IAE1B;;;;;;;;;;;;;;;OAeG;IACH,2BAA2B,IAAI;IAE/B;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,mDAAmD,IAAI;IAEvD;;;;;;;;;;;;OAYG;IACH,4BAA4B,KAAK;CAClC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsentSpecialFeatures.d.ts","sourceRoot":"","sources":["../../src/AdsConsentSpecialFeatures.ts"],"names":[],"mappings":"AAyBA,oBAAY,yBAAyB;IACnC;;;;;;;;OAQG;IACH,4BAA4B,IAAI;IAEhC;;;;;;;;OAQG;IACH,uDAAuD,IAAI;CAC5D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsentStatus.d.ts","sourceRoot":"","sources":["../../src/AdsConsentStatus.ts"],"names":[],"mappings":"AAiBA;;GAEG;AACH,oBAAY,gBAAgB;IAC1B;;OAEG;IACH,OAAO,YAAY;IAEnB;;OAEG;IACH,QAAQ,aAAa;IAErB;;OAEG;IACH,YAAY,iBAAiB;IAE7B;;OAEG;IACH,QAAQ,aAAa;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BannerAdSize.d.ts","sourceRoot":"","sources":["../../src/BannerAdSize.ts"],"names":[],"mappings":"AAkBA,oBAAY,YAAY;IACtB;;OAEG;IACH,MAAM,WAAW;IAEjB;;OAEG;IACH,WAAW,gBAAgB;IAE3B;;OAEG;IACH,YAAY,iBAAiB;IAE7B;;OAEG;IACH,WAAW,gBAAgB;IAE3B;;OAEG;IACH,gBAAgB,qBAAqB;IAErC;;OAEG;IACH,eAAe,oBAAoB;IAEnC;;OAEG;IACH,wBAAwB,6BAA6B;IAErD;;;OAGG;IACH,sBAAsB,2BAA2B;IAEjD;;OAEG;IACH,eAAe,oBAAoB;CACpC;AAED,eAAO,MAAM,eAAe;IAG1B;;OAEG;;IApDH;;OAEG;;IAGH;;OAEG;;IAGH;;OAEG;;IAGH;;OAEG;;IAGH;;OAEG;;IAGH;;OAEG;;IAGH;;OAEG;;IAGH;;;OAGG;;IAGH;;OAEG;;CAWK,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GAMAdEventType.d.ts","sourceRoot":"","sources":["../../src/GAMAdEventType.ts"],"names":[],"mappings":"AAiBA,oBAAY,cAAc;IACxB;;;;;;;;;;;;;;;;OAgBG;IACH,SAAS,cAAc;CACxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MaxAdContentRating.d.ts","sourceRoot":"","sources":["../../src/MaxAdContentRating.ts"],"names":[],"mappings":"AAiBA,oBAAY,kBAAkB;IAC5B;;OAEG;IACH,CAAC,MAAM;IAEP;;OAEG;IACH,EAAE,OAAO;IAET;;OAEG;IACH,CAAC,MAAM;IAEP;;OAEG;IACH,EAAE,OAAO;CACV"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MobileAds.d.ts","sourceRoot":"","sources":["../../src/MobileAds.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAWpE,cAAM,eAAgB,YAAW,wBAAwB;;IASvD,4BAA4B,CAAC,SAAS,EAAE,MAAM;IAU9C,UAAU;IAIV,uBAAuB,CAAC,oBAAoB,EAAE,oBAAoB;IAalE,eAAe;IAIf,aAAa,CAAC,MAAM,EAAE,MAAM;IAK5B,YAAY,CAAC,MAAM,EAAE,MAAM;IAM3B,WAAW,CAAC,KAAK,EAAE,OAAO;CAG3B;AAID,eAAO,MAAM,SAAS,uBAErB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NativeGoogleMobileAdsModule.d.ts","sourceRoot":"","sources":["../../src/NativeGoogleMobileAdsModule.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,2CAA2C,CAAC;AAEzE,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,MAAM,WAAW,IAAK,SAAQ,WAAW;IACvC,UAAU,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC;IACvC,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC5E,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACjC,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;CACnC;;AAED,wBAAiF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RewardedAdEventType.d.ts","sourceRoot":"","sources":["../../src/RewardedAdEventType.ts"],"names":[],"mappings":"AAiBA,oBAAY,mBAAmB;IAC7B;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,MAAM,oBAAoB;IAE1B;;;;;;;;;;;;;;;;OAgBG;IACH,aAAa,2BAA2B;CACzC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TestIds.d.ts","sourceRoot":"","sources":["../../src/TestIds.ts"],"names":[],"mappings":"AAmBA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;CAiCnB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AppOpenAd.d.ts","sourceRoot":"","sources":["../../../src/ads/AppOpenAd.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAEzD,qBAAa,SAAU,SAAQ,QAAQ;IACrC,SAAS,CAAC,MAAM,CAAC,eAAe,SAAK;IAErC,MAAM,CAAC,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc;IAwB3E,mBAAmB,CAAC,CAAC,SAAS,WAAW,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAAG,MAAM,IAAI;IAIrF,kBAAkB,CAAC,CAAC,SAAS,WAAW,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC;CAGhF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BannerAd.d.ts","sourceRoot":"","sources":["../../../src/ads/BannerAd.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAIvD,qBAAa,QAAS,SAAQ,KAAK,CAAC,SAAS,CAAC,aAAa,CAAC;IAC1D,OAAO,CAAC,GAAG,CAAmE;IAE9E,IAAI;IAMJ,MAAM;CAGP"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaseAd.d.ts","sourceRoot":"","sources":["../../../src/ads/BaseAd.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAA8B,MAAM,OAAO,CAAC;AASnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAK1D,eAAO,MAAM,MAAM,sNAkJjB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GAMBannerAd.d.ts","sourceRoot":"","sources":["../../../src/ads/GAMBannerAd.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAI1D,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC;IAChE,OAAO,CAAC,GAAG,CAAmE;IAE9E,sBAAsB;IAMtB,IAAI;IAMJ,MAAM;CAGP"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GAMInterstitialAd.d.ts","sourceRoot":"","sources":["../../../src/ads/GAMInterstitialAd.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,qBAAa,iBAAkB,SAAQ,cAAc;IACnD;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,MAAM,CAAC,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc,GACZ,iBAAiB;IAGhF,mBAAmB,CAAC,CAAC,SAAS,WAAW,GAAG,cAAc,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC;IAIzF,kBAAkB,CAAC,CAAC,SAAS,WAAW,GAAG,cAAc,EACvD,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC;CAI/B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GoogleMobileAdsBannerViewNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/ads/GoogleMobileAdsBannerViewNativeComponent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AACpC,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,KAAK,EAAE,oBAAoB,EAAE,KAAK,EAAE,MAAM,2CAA2C,CAAC;AAI7F,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,KAAK,CAAC;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC;CACf,CAAC;AAEF,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,wBAAwB,EAAE,OAAO,CAAC;IAClC,aAAa,EAAE,oBAAoB,CAAC,WAAW,CAAC,CAAC;CAClD;AAED,MAAM,MAAM,aAAa,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC;AAEvD,UAAU,cAAc;IACtB,sBAAsB,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,KAAK,IAAI,CAAC;IAC3E,IAAI,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,KAAK,IAAI,CAAC;CAC1D;AAID,eAAO,MAAM,QAAQ,EAAE,cAErB,CAAC;wBAIE,aAAa,CAAC,WAAW,CAAC;AAF/B,wBAEgC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"InterstitialAd.d.ts","sourceRoot":"","sources":["../../../src/ads/InterstitialAd.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,qBAAa,cAAe,SAAQ,QAAQ;IAC1C,SAAS,CAAC,MAAM,CAAC,oBAAoB,SAAK;IAC1C;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,MAAM,CAAC,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc;IAwB3E,mBAAmB,CAAC,CAAC,SAAS,WAAW,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC;IAIxE,kBAAkB,CAAC,CAAC,SAAS,WAAW,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC;CAGhF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MobileAd.d.ts","sourceRoot":"","sources":["../../../src/ads/MobileAd.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,mBAAmB,EAAiB,MAAM,cAAc,CAAC;AAGlE,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAE7D,OAAO,EAAE,eAAe,EAAkB,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAG7C,KAAK,MAAM,GAAG,UAAU,GAAG,cAAc,GAAG,UAAU,GAAG,uBAAuB,CAAC;AACjF,KAAK,YAAY,GACb,gCAAgC,GAChC,qCAAqC,GACrC,iCAAiC,GACjC,6CAA6C,CAAC;AAClD,KAAK,SAAS,GAAG,WAAW,GAAG,mBAAmB,GAAG,cAAc,CAAC;AAQpE,8BAAsB,QAAS,YAAW,iBAAiB;IACzD,SAAS,CAAC,KAAK,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,aAAa,EAAE,YAAY,CAAC;IACtC,SAAS,CAAC,UAAU,EAAE,MAAM,CAAC;IAC7B,SAAS,CAAC,SAAS,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,eAAe,EAAE,cAAc,CAAC;IAC1C,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC;IAC3B,SAAS,CAAC,aAAa,EAAE,OAAO,CAAC;IACjC,SAAS,CAAC,kBAAkB,EAAE,GAAG,CAAC,MAAM,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC,CAAC;IACvE,SAAS,CAAC,oBAAoB,EAAE,GAAG,CAAC,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;IACxF,SAAS,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACtC,SAAS,CAAC,kBAAkB,EAAE,MAAM,CAAC;IACrC,SAAS,CAAC,eAAe,EAAE,mBAAmB,CAAC;IAE/C,SAAS,aACP,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,YAAY,EAC1B,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,cAAc,EAAE,cAAc;IA6BhC,SAAS,CAAC,cAAc,CAAC,KAAK,EAAE;QAC9B,IAAI,EAAE;YACJ,IAAI,EAAE,SAAS,CAAC;YAChB,KAAK,CAAC,EAAE;gBAAE,IAAI,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAC1C,IAAI,CAAC,EAAE,gBAAgB,GAAG,QAAQ,CAAC;SACpC,CAAC;KACH;IAgCD,SAAS,CAAC,oBAAoB,CAAC,CAAC,SAAS,SAAS,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC;IAYjF,SAAS,CAAC,mBAAmB,CAAC,CAAC,SAAS,SAAS,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC;IA0BxF,SAAS,CAAC,oBAAoB,CAAC,CAAC,SAAS,SAAS,EAAE,IAAI,EAAE,CAAC,GACX,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC;IAG/E,SAAS,KAAK,UAAU,WAEvB;IAED,SAAS,KAAK,cAAc,qEAU3B;IAEM,IAAI;IAWJ,IAAI,CAAC,WAAW,CAAC,EAAE,aAAa;aAsBvB,mBAAmB,CAAC,CAAC,SAAS,KAAK,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAAG,MAAM,IAAI;aAE/E,kBAAkB,CAAC,CAAC,SAAS,KAAK,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC,GAAG,IAAI;IAEzF,kBAAkB;IAOzB,IAAW,QAAQ,WAElB;IAED,IAAW,MAAM,YAEhB;CACF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RewardedAd.d.ts","sourceRoot":"","sources":["../../../src/ads/RewardedAd.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,qBAAa,UAAW,SAAQ,QAAQ;IACtC,SAAS,CAAC,MAAM,CAAC,gBAAgB,SAAK;IACtC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,MAAM,CAAC,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc;IAwB3E,mBAAmB,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,EAC7D,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAC5B,MAAM,IAAI;IAIb,kBAAkB,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,EAC5D,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC;CAS/B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RewardedInterstitialAd.d.ts","sourceRoot":"","sources":["../../../src/ads/RewardedInterstitialAd.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,qBAAa,sBAAuB,SAAQ,QAAQ;IAClD,SAAS,CAAC,MAAM,CAAC,4BAA4B,SAAK;IAClD;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,MAAM,CAAC,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc;IA0B3E,mBAAmB,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,EAC7D,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAC5B,MAAM,IAAI;IAIb,kBAAkB,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,EAC5D,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC;CAS/B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/common/constants.ts"],"names":[],"mappings":"AASA,oBAAY,iBAAiB;IAC3B,SAAuC;IACvC,OAAmC;IACnC,kBAAyD;IACzD,OAAmC;CACpC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"debounce.d.ts","sourceRoot":"","sources":["../../../src/common/debounce.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,GAAI,SAAS,SAAS,OAAO,EAAE,EAAE,MAAM,QACpD,CAAC,GAAG,IAAI,EAAE,SAAS,KAAK,MAAM,WAC3B,MAAM,KACd,CAAC,CAAC,GAAG,IAAI,EAAE,SAAS,KAAK,IAAI,CAW/B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/index.ts"],"names":[],"mappings":"AAiBA,cAAc,YAAY,CAAC;AAG3B,wBAAgB,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,WAEpE;AAED,wBAAgB,aAAa,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,WAKnE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate.d.ts","sourceRoot":"","sources":["../../../src/common/validate.ts"],"names":[],"mappings":"AAiBA;;;;;GAKG;AACH,wBAAgB,MAAM,CAAC,KAAK,EAAE,OAAO,iBAEpC;AAED;;;;;GAKG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,OAAO,WAEtC;AAED;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,OAAO,WAExC;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,OAAO,mBAEtC;AAED;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,OAAO,oBAEvC;AAED;;;;GAIG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,OAAO,kBAErC;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,SAAS,CAE9D;AAQD,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,WAErC;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,OAAO,EAAE,KAAK,GAAE,OAAO,EAAO,WAK5D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useAppOpenAd.d.ts","sourceRoot":"","sources":["../../../src/hooks/useAppOpenAd.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAIzD;;;;;GAKG;AACH,wBAAgB,YAAY,CAC1B,QAAQ,EAAE,MAAM,GAAG,IAAI,EACvB,cAAc,GAAE,cAAmB,GAClC,IAAI,CAAC,aAAa,EAAE,QAAQ,GAAG,gBAAgB,CAAC,CAUlD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useForeground.d.ts","sourceRoot":"","sources":["../../../src/hooks/useForeground.ts"],"names":[],"mappings":"AAoBA;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,IAAI,QAejD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useFullScreenAd.d.ts","sourceRoot":"","sources":["../../../src/hooks/useFullScreenAd.ts"],"names":[],"mappings":"AAoBA,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AAEvE,OAAO,EAAY,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAe5D,wBAAgB,eAAe,CAC7B,CAAC,SAAS,SAAS,GAAG,cAAc,GAAG,UAAU,GAAG,sBAAsB,GAAG,IAAI,EACjF,EAAE,EAAE,CAAC,GAAG,aAAa,CAmEtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useInterstitialAd.d.ts","sourceRoot":"","sources":["../../../src/hooks/useInterstitialAd.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAIzD;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,QAAQ,EAAE,MAAM,GAAG,IAAI,EACvB,cAAc,GAAE,cAAmB,GAClC,IAAI,CAAC,aAAa,EAAE,QAAQ,GAAG,gBAAgB,CAAC,CAUlD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useRewardedAd.d.ts","sourceRoot":"","sources":["../../../src/hooks/useRewardedAd.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAIzD;;;;;GAKG;AACH,wBAAgB,aAAa,CAC3B,QAAQ,EAAE,MAAM,GAAG,IAAI,EACvB,cAAc,GAAE,cAAmB,GAClC,aAAa,CAUf"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useRewardedInterstitialAd.d.ts","sourceRoot":"","sources":["../../../src/hooks/useRewardedInterstitialAd.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAIzD;;;;;GAKG;AACH,wBAAgB,yBAAyB,CACvC,QAAQ,EAAE,MAAM,GAAG,IAAI,EACvB,cAAc,GAAE,cAAmB,GAClC,aAAa,CAWf"}
|
|
@@ -1 +0,0 @@
|
|
|
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,yCAAyC,EAAE,MAAM,6CAA6C,CAAC;AACxG,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,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAC/D,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,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACvD,cAAc,SAAS,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GoogleMobileAdsNativeEventEmitter.d.ts","sourceRoot":"","sources":["../../../src/internal/GoogleMobileAdsNativeEventEmitter.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,kBAAkB,EAAiB,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAItF,cAAM,oBAAqB,SAAQ,kBAAkB;IACnD,KAAK,EAAE,OAAO,CAAC;;IAOf,WAAW,CACT,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,CAAC,KAAK,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,EAClE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAqCnC,kBAAkB,CAAC,SAAS,EAAE,MAAM;IAMpC,kBAAkB,CAAC,YAAY,EAAE,mBAAmB;CAUrD;AAED,eAAO,MAAM,iCAAiC,sBAA6B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NativeError.d.ts","sourceRoot":"","sources":["../../../src/internal/NativeError.ts"],"names":[],"mappings":"AAiBA,qBAAa,WAAY,SAAQ,KAAK;IACpC,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IAE5C,MAAM,CAAC,SAAS,CACd,UAAU,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,EAC7C,SAAS,EAAE,MAAM,EACjB,KAAK,CAAC,EAAE,MAAM;gBAMd,WAAW,EAAE;QAAE,QAAQ,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,EAC5D,OAAO,EAAE,MAAM,EACf,SAAS,EAAE,MAAM;IAYnB;;;;OAIG;IACH,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM;CAG5D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SharedEventEmitter.d.ts","sourceRoot":"","sources":["../../../src/internal/SharedEventEmitter.ts"],"names":[],"mappings":"AAiBA,OAAO,YAAY,MAAM,oDAAoD,CAAC;AAE9E,eAAO,MAAM,kBAAkB,EAAE,YAAiC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdEventListener.d.ts","sourceRoot":"","sources":["../../../src/types/AdEventListener.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,GAAG,cAAc,GAAG,KAAK,IAC7F,CAAC,SAAS,WAAW,CAAC,KAAK,GACvB,KAAK,GACL,CAAC,SAAS,mBAAmB,GAC7B,gBAAgB,GAChB,CAAC,SAAS,cAAc,GACxB,QAAQ,GACR,SAAS,CAAC;AAEhB,MAAM,MAAM,eAAe,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,GAAG,cAAc,GAAG,KAAK,IAC9F,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdEventsListener.d.ts","sourceRoot":"","sources":["../../../src/types/AdEventsListener.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAEnD,MAAM,MAAM,gBAAgB,CAAC,CAAC,SAAS,WAAW,GAAG,mBAAmB,GAAG,cAAc,GAAG,KAAK,IAC/F,CAAC,SAAS,EAAE;IAAE,IAAI,EAAE,CAAC,CAAC;IAAC,OAAO,EAAE,cAAc,CAAC,CAAC,CAAC,CAAA;CAAE,KAAK,IAAI,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdShowOptions.d.ts","sourceRoot":"","sources":["../../../src/types/AdShowOptions.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;;;OAKG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdStates.d.ts","sourceRoot":"","sources":["../../../src/types/AdStates.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC;IACd;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C;;;OAGG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;;;;;;;;;;;;;OAcG;IACH,IAAI,EAAE,MAAM,IAAI,CAAC;IACjB;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BG;IACH,IAAI,EAAE,CAAC,WAAW,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CAC7C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdapterStatus.d.ts","sourceRoot":"","sources":["../../../src/types/AdapterStatus.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B;;OAEG;IACH,kCAAkC,IAAI;IAEtC;;OAEG;IACH,+BAA+B,IAAI;CACpC;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,mBAAmB,CAAC;CAC5B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AdsConsent.interface.d.ts","sourceRoot":"","sources":["../../../src/types/AdsConsent.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AAEzG;;;;;;;;;;GAUG;AAEH,MAAM,WAAW,mBAAmB;IAClC;;;;;;;;;;;;;;;OAeG;IACH,iBAAiB,CAAC,OAAO,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAE5E;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,QAAQ,IAAI,OAAO,CAAC,cAAc,CAAC,CAAC;IAEpC;;OAEG;IACH,sBAAsB,IAAI,OAAO,CAAC,cAAc,CAAC,CAAC;IAElD;;;;OAIG;IACH,gCAAgC,IAAI,OAAO,CAAC,cAAc,CAAC,CAAC;IAE5D;;;;;;;;;;OAUG;IACH,cAAc,IAAI,OAAO,CAAC,cAAc,CAAC,CAAC;IAE1C;;;;;;;;;;;;;;;OAeG;IACH,WAAW,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IAE/B;;;;;;;;;;OAUG;IACH,UAAU,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IAE/B;;;;;;;;;;;;;;;;OAgBG;IACH,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IAEnC;;;;;;;;;;;;;;;;;OAiBG;IACH,kBAAkB,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IAEtC;;;;;;;;;;OAUG;IACH,cAAc,IAAI,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAEjD;;;;;;;;;;OAUG;IACH,KAAK,IAAI,IAAI,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,cAAc,CAAC,EAAE,wBAAwB,CAAC;IAE1C;;OAEG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;;;OAOG;IACH,MAAM,EAAE,gBAAgB,CAAC;IAEzB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IAEvB;;OAEG;IACH,+BAA+B,EAAE,yCAAyC,CAAC;IAE3E;;OAEG;IACH,sBAAsB,EAAE,OAAO,CAAC;CACjC;AAED;;;;;GAKG;AACH,MAAM,WAAW,qBAAqB;IACpC;;;;;;;;OAQG;IACH,kDAAkD,EAAE,OAAO,CAAC;IAC5D;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,6CAA6C,EAAE,OAAO,CAAC;IACvD;;;;;;;;;;;OAWG;IACH,6BAA6B,EAAE,OAAO,CAAC;IACvC;;;;;;;;;;;OAWG;IACH,iCAAiC,EAAE,OAAO,CAAC;IAC3C;;;;;;;;;;;;OAYG;IACH,yBAAyB,EAAE,OAAO,CAAC;IACnC;;;;;;;;;;;;;;;;;;OAkBG;IACH,oBAAoB,EAAE,OAAO,CAAC;IAC9B;;;;;;;;;;;;;;;OAeG;IACH,yBAAyB,EAAE,OAAO,CAAC;IACnC;;;;;;;;;;;;;;;;;;OAkBG;IACH,cAAc,EAAE,OAAO,CAAC;IACxB;;;;;;;OAOG;IACH,qBAAqB,EAAE,OAAO,CAAC;IAC/B;;;;;;;OAOG;IACH,yBAAyB,EAAE,OAAO,CAAC;IACnC;;;;;;;OAOG;IACH,iCAAiC,EAAE,OAAO,CAAC;IAC3C;;;;;;;;OAQG;IACH,yBAAyB,EAAE,OAAO,CAAC;CACpC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AppEvent.d.ts","sourceRoot":"","sources":["../../../src/types/AppEvent.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BannerAdProps.d.ts","sourceRoot":"","sources":["../../../src/types/BannerAdProps.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;;;OAIG;IACH,IAAI,EAAE,YAAY,GAAG,MAAM,CAAC;IAE5B;;OAEG;IACH,cAAc,CAAC,EAAE,cAAc,CAAC;IAEhC;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IAErE;;OAEG;IACH,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IAE1C;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IAExB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IAExB;;;OAGG;IACH,MAAM,CAAC,EAAE,iBAAiB,CAAC;IAE3B;;OAEG;IACH,YAAY,CAAC,EAAE,CAAC,UAAU,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;CACxE;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,aAAa,EAAE,MAAM,CAAC;IACnE;;;;OAIG;IACH,KAAK,EAAE,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,EAAE,GAAG,MAAM,EAAE,CAAC;IAE3E;;;;;;;;;;;;;;;;;;;;;;;;;;;OA2BG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IAEnC;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;CAC3C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MobileAd.interface.d.ts","sourceRoot":"","sources":["../../../src/types/MobileAd.interface.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAEhB;;;;OAIG;IACH,IAAI,IAAI,IAAI,CAAC;IAEb;;;;;;;;;;;;;;;;;OAiBG;IACH,IAAI,CAAC,WAAW,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjD;;;;;;;;;;;;;;;;;;;OAmBG;IACH,mBAAmB,CAAC,CAAC,SAAS,KAAK,EAAE,QAAQ,EAAE,gBAAgB,CAAC,CAAC,CAAC,GAAG,MAAM,IAAI,CAAC;IAEhF;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,kBAAkB,CAAC,CAAC,SAAS,KAAK,EAAE,IAAI,EAAE,CAAC,EAAE,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;IAEjF;;OAEG;IACH,kBAAkB,IAAI,IAAI,CAAC;CAC5B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"MobileAdsModule.interface.d.ts","sourceRoot":"","sources":["../../../src/types/MobileAdsModule.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,UAAU,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC;IAEvC;;;;;;;;;;;;;;;OAeG;IACH,uBAAuB,CAAC,oBAAoB,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnF;;;;;;;OAOG;IACH,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjC;;;;;;;;;OASG;IACH,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpC;;;;;;;;;;;OAWG;IACH,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAEnC;;;;;;;;;;;OAWG;IACH,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;CACnC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PaidEventListener.d.ts","sourceRoot":"","sources":["../../../src/types/PaidEventListener.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,iBAAiB,CAAC;IAC7B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestConfiguration.d.ts","sourceRoot":"","sources":["../../../src/types/RequestConfiguration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAE3D;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IAExC;;;;;;;OAOG;IACH,4BAA4B,CAAC,EAAE,OAAO,CAAC;IAEvC;;;;;;;OAOG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;CAClC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RequestOptions.d.ts","sourceRoot":"","sources":["../../../src/types/RequestOptions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,oBAAoB,GAAG,KAAK,GAAG,QAAQ,CAAC;AAEpD,MAAM,WAAW,6BAA6B;IAC5C;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;;;;OAKG;IACH,6BAA6B,CAAC,EAAE,OAAO,CAAC;IAExC;;;;;;;;;;;;;;;;OAgBG;IACH,aAAa,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG;QAAE,WAAW,CAAC,EAAE,oBAAoB,CAAA;KAAE,CAAC;IAEnF;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IAEpB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACH,eAAe,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;IAEvD;;;;;;;;;;;;;OAaG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,6BAA6B,CAAC,EAAE,6BAA6B,CAAC;IAE9D;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RewardedAdReward.d.ts","sourceRoot":"","sources":["../../../src/types/RewardedAdReward.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAiBA,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validateAdRequestConfiguration.d.ts","sourceRoot":"","sources":["../../src/validateAdRequestConfiguration.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAEpE,wBAAgB,8BAA8B,CAAC,oBAAoB,EAAE,oBAAoB,wBAiDxF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validateAdRequestOptions.d.ts","sourceRoot":"","sources":["../../src/validateAdRequestOptions.ts"],"names":[],"mappings":"AA0BA,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAExD,wBAAgB,wBAAwB,CAAC,OAAO,CAAC,EAAE,cAAc,kBA4GhE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validateAdShowOptions.d.ts","sourceRoot":"","sources":["../../src/validateAdShowOptions.ts"],"names":[],"mappings":"AAkBA,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,wBAAgB,qBAAqB,CAAC,OAAO,CAAC,EAAE,aAAa,iBAoB5D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,OAAO,WAAW,CAAC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/typescript/{AdsConsentSpecialFeatures.d.ts → src/AdsConsentSpecialFeatures.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/typescript/{NativeGoogleMobileAdsModule.d.ts → src/NativeGoogleMobileAdsModule.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|