emi-indo-cordova-plugin-admob 1.3.9 → 1.4.1
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/.github/FUNDING.yml +13 -13
- package/.github/ISSUE_TEMPLATE/bug_report.md +124 -124
- package/LICENSE +7 -7
- package/README.md +509 -446
- package/example/Advanced topics/auto_load_and_show.html +94 -94
- package/example/Advanced topics/consent_GDPR_IAB_TFCv2.2.html +279 -0
- package/example/Advanced topics/targeting.html +78 -78
- package/example/app_open_ads.html +151 -151
- package/example/banner_ads.html +248 -248
- package/example/interstitial_ads.html +166 -166
- package/example/rewarded_ads.html +185 -185
- package/example/rewarded_interstitial_ads.html +184 -184
- package/package.json +36 -34
- package/plugin.xml +307 -284
- package/src/android/emiAdmobPlugin.java +1 -1
- package/src/ios/emiAdmobPlugin.h +33 -0
- package/src/ios/emiAdmobPlugin.m +554 -0
- package/www/emiAdmobPlugin.js +14 -10
- package/src/ios/emiAdmobPlugin.swift +0 -286
package/.github/FUNDING.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
# These are supported funding model platforms
|
2
|
-
|
3
|
-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
4
|
-
patreon: # Replace with a single Patreon username
|
5
|
-
open_collective: # Replace with a single Open Collective username
|
6
|
-
ko_fi: # Replace with a single Ko-fi username
|
7
|
-
tidelift: # npm/emi-indo-cordova-plugin-admob
|
8
|
-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
9
|
-
liberapay: # Replace with a single Liberapay username
|
10
|
-
issuehunt: # Replace with a single IssueHunt username
|
11
|
-
otechie: # Replace with a single Otechie username
|
12
|
-
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
13
|
-
custom: ['paypal.me/emiindo']
|
1
|
+
# These are supported funding model platforms
|
2
|
+
|
3
|
+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
4
|
+
patreon: # Replace with a single Patreon username
|
5
|
+
open_collective: # Replace with a single Open Collective username
|
6
|
+
ko_fi: # Replace with a single Ko-fi username
|
7
|
+
tidelift: # npm/emi-indo-cordova-plugin-admob
|
8
|
+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
9
|
+
liberapay: # Replace with a single Liberapay username
|
10
|
+
issuehunt: # Replace with a single IssueHunt username
|
11
|
+
otechie: # Replace with a single Otechie username
|
12
|
+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
13
|
+
custom: ['paypal.me/emiindo']
|
@@ -1,124 +1,124 @@
|
|
1
|
-
---
|
2
|
-
name: Bug report
|
3
|
-
about: Create a report to help us improve
|
4
|
-
title: ''
|
5
|
-
labels: ''
|
6
|
-
assignees: ''
|
7
|
-
|
8
|
-
---
|
9
|
-
|
10
|
-
<!--
|
11
|
-
IMPORTANT: PLEASE READ
|
12
|
-
|
13
|
-
WARNING: Failure to follow the issue template guidelines below will result in the issue being immediately closed.
|
14
|
-
-->
|
15
|
-
|
16
|
-
<!-- Fill out the relevant sections below and delete irrelevant sections. -->
|
17
|
-
|
18
|
-
# Bug report
|
19
|
-
|
20
|
-
<!-- COMPLETE THIS CHECKLIST -->
|
21
|
-
|
22
|
-
|
23
|
-
- [ ] I confirm this is a suspected bug or issue that will affect other users
|
24
|
-
<!-- i.e. this is not a request for support in using/integrating the plugin into your specific project -->
|
25
|
-
|
26
|
-
- [ ] I have reproduced the issue using the [example project](https://github.com/EMI-INDO/emi-indo-cordova-plugin-admob/blob/main/example/index.html) or provided the necessary information to reproduce the issue.
|
27
|
-
<!-- necessary information e.g. exact steps, FCM notification message content, test case project repo -->
|
28
|
-
|
29
|
-
- [ ] I have read [the documentation](https://github.com/EMI-INDO/emi-indo-cordova-plugin-admob/blob/main/README.md) thoroughly and it does not help solve my issue.
|
30
|
-
<!-- e.g. if you're having a build issue ensure you've read through the build environment notes -->
|
31
|
-
|
32
|
-
- [ ] I have checked that no similar issues (open or closed) already exist.
|
33
|
-
<!-- Duplicates or near-duplicates will be closed immediately. -->
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
**Current behavior:**
|
38
|
-
|
39
|
-
<!-- Describe how the bug manifests. -->
|
40
|
-
|
41
|
-
<!-- Explain how you're sure there is an issue with this plugin rather than your own code:
|
42
|
-
- If this plugin has an example project, have you been able to reproduce the issue within it?
|
43
|
-
- Have you created a clean test Cordova project containing only this plugin to eliminate the potential for interference with other plugins/code?
|
44
|
-
-->
|
45
|
-
|
46
|
-
**Expected behavior:**
|
47
|
-
<!-- Describe what the behavior should be without the bug. -->
|
48
|
-
|
49
|
-
**Steps to reproduce:**
|
50
|
-
<!-- If you are able to illustrate the bug with an example, please provide steps to reproduce. -->
|
51
|
-
|
52
|
-
**Screenshots**
|
53
|
-
<!-- If applicable, add screenshots to help explain your problem. -->
|
54
|
-
|
55
|
-
**Environment information**
|
56
|
-
<!-- Please supply full details of your development environment including: -->
|
57
|
-
- Cordova CLI version
|
58
|
-
- `cordova -v`
|
59
|
-
- Cordova platform version
|
60
|
-
- `cordova platform ls`
|
61
|
-
- Plugins & versions installed in project (including this plugin)
|
62
|
-
- `cordova plugin ls`
|
63
|
-
- Dev machine OS and version, e.g.
|
64
|
-
- OSX
|
65
|
-
- `sw_vers`
|
66
|
-
- Windows 10
|
67
|
-
- `winver`
|
68
|
-
|
69
|
-
_Runtime issue_
|
70
|
-
- Device details
|
71
|
-
- _e.g. iPhone X, Samsung Galaxy S8, iPhone X Simulator, Pixel XL Emulator_
|
72
|
-
- OS details
|
73
|
-
- _e.g. iOS 12.2, Android 9.0_
|
74
|
-
|
75
|
-
_Android build issue:_
|
76
|
-
- Node JS version
|
77
|
-
- `node -v`
|
78
|
-
- Gradle version
|
79
|
-
- `ls platforms/android/.gradle`
|
80
|
-
- Target Android SDK version
|
81
|
-
- `android:targetSdkVersion` in `AndroidManifest.xml`
|
82
|
-
- Android SDK details
|
83
|
-
- `sdkmanager --list | sed -e '/Available Packages/q'`
|
84
|
-
|
85
|
-
_iOS build issue:_
|
86
|
-
- Node JS version
|
87
|
-
- `node -v`
|
88
|
-
- XCode version
|
89
|
-
|
90
|
-
|
91
|
-
**Related code:**
|
92
|
-
```
|
93
|
-
insert any relevant code here such as plugin API calls / input parameters
|
94
|
-
```
|
95
|
-
|
96
|
-
**Console output**
|
97
|
-
<details>
|
98
|
-
<summary>console output</summary>
|
99
|
-
|
100
|
-
```
|
101
|
-
|
102
|
-
// Paste any relevant JS/native console output here
|
103
|
-
|
104
|
-
```
|
105
|
-
|
106
|
-
</details><br/><br/>
|
107
|
-
|
108
|
-
**Other information:**
|
109
|
-
|
110
|
-
<!-- List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc. -->
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
<!--
|
117
|
-
A POLITE REMINDER
|
118
|
-
|
119
|
-
- This is free, open-source software.
|
120
|
-
- Although the author makes every effort to maintain it, no guarantees are made as to the quality or reliability, and reported issues will be addressed if and when the author has time.
|
121
|
-
- Help/support will not be given by the author, so forums (e.g. Ionic) or Stack Overflow should be used. Any issues requesting help/support will be closed immediately.
|
122
|
-
- If you have urgent need of a bug fix/feature, the author can be engaged for PAID contract work to do so: please contact dave@workingedge.co.uk
|
123
|
-
- Rude or abusive comments/issues will not be tolerated, nor will opening multiple issues if those previously closed are deemed unsuitable. Any of the above will result in you being BANNED from ALL of my Github repositories.
|
124
|
-
-->
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
<!--
|
11
|
+
IMPORTANT: PLEASE READ
|
12
|
+
|
13
|
+
WARNING: Failure to follow the issue template guidelines below will result in the issue being immediately closed.
|
14
|
+
-->
|
15
|
+
|
16
|
+
<!-- Fill out the relevant sections below and delete irrelevant sections. -->
|
17
|
+
|
18
|
+
# Bug report
|
19
|
+
|
20
|
+
<!-- COMPLETE THIS CHECKLIST -->
|
21
|
+
|
22
|
+
|
23
|
+
- [ ] I confirm this is a suspected bug or issue that will affect other users
|
24
|
+
<!-- i.e. this is not a request for support in using/integrating the plugin into your specific project -->
|
25
|
+
|
26
|
+
- [ ] I have reproduced the issue using the [example project](https://github.com/EMI-INDO/emi-indo-cordova-plugin-admob/blob/main/example/index.html) or provided the necessary information to reproduce the issue.
|
27
|
+
<!-- necessary information e.g. exact steps, FCM notification message content, test case project repo -->
|
28
|
+
|
29
|
+
- [ ] I have read [the documentation](https://github.com/EMI-INDO/emi-indo-cordova-plugin-admob/blob/main/README.md) thoroughly and it does not help solve my issue.
|
30
|
+
<!-- e.g. if you're having a build issue ensure you've read through the build environment notes -->
|
31
|
+
|
32
|
+
- [ ] I have checked that no similar issues (open or closed) already exist.
|
33
|
+
<!-- Duplicates or near-duplicates will be closed immediately. -->
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
**Current behavior:**
|
38
|
+
|
39
|
+
<!-- Describe how the bug manifests. -->
|
40
|
+
|
41
|
+
<!-- Explain how you're sure there is an issue with this plugin rather than your own code:
|
42
|
+
- If this plugin has an example project, have you been able to reproduce the issue within it?
|
43
|
+
- Have you created a clean test Cordova project containing only this plugin to eliminate the potential for interference with other plugins/code?
|
44
|
+
-->
|
45
|
+
|
46
|
+
**Expected behavior:**
|
47
|
+
<!-- Describe what the behavior should be without the bug. -->
|
48
|
+
|
49
|
+
**Steps to reproduce:**
|
50
|
+
<!-- If you are able to illustrate the bug with an example, please provide steps to reproduce. -->
|
51
|
+
|
52
|
+
**Screenshots**
|
53
|
+
<!-- If applicable, add screenshots to help explain your problem. -->
|
54
|
+
|
55
|
+
**Environment information**
|
56
|
+
<!-- Please supply full details of your development environment including: -->
|
57
|
+
- Cordova CLI version
|
58
|
+
- `cordova -v`
|
59
|
+
- Cordova platform version
|
60
|
+
- `cordova platform ls`
|
61
|
+
- Plugins & versions installed in project (including this plugin)
|
62
|
+
- `cordova plugin ls`
|
63
|
+
- Dev machine OS and version, e.g.
|
64
|
+
- OSX
|
65
|
+
- `sw_vers`
|
66
|
+
- Windows 10
|
67
|
+
- `winver`
|
68
|
+
|
69
|
+
_Runtime issue_
|
70
|
+
- Device details
|
71
|
+
- _e.g. iPhone X, Samsung Galaxy S8, iPhone X Simulator, Pixel XL Emulator_
|
72
|
+
- OS details
|
73
|
+
- _e.g. iOS 12.2, Android 9.0_
|
74
|
+
|
75
|
+
_Android build issue:_
|
76
|
+
- Node JS version
|
77
|
+
- `node -v`
|
78
|
+
- Gradle version
|
79
|
+
- `ls platforms/android/.gradle`
|
80
|
+
- Target Android SDK version
|
81
|
+
- `android:targetSdkVersion` in `AndroidManifest.xml`
|
82
|
+
- Android SDK details
|
83
|
+
- `sdkmanager --list | sed -e '/Available Packages/q'`
|
84
|
+
|
85
|
+
_iOS build issue:_
|
86
|
+
- Node JS version
|
87
|
+
- `node -v`
|
88
|
+
- XCode version
|
89
|
+
|
90
|
+
|
91
|
+
**Related code:**
|
92
|
+
```
|
93
|
+
insert any relevant code here such as plugin API calls / input parameters
|
94
|
+
```
|
95
|
+
|
96
|
+
**Console output**
|
97
|
+
<details>
|
98
|
+
<summary>console output</summary>
|
99
|
+
|
100
|
+
```
|
101
|
+
|
102
|
+
// Paste any relevant JS/native console output here
|
103
|
+
|
104
|
+
```
|
105
|
+
|
106
|
+
</details><br/><br/>
|
107
|
+
|
108
|
+
**Other information:**
|
109
|
+
|
110
|
+
<!-- List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc. -->
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
<!--
|
117
|
+
A POLITE REMINDER
|
118
|
+
|
119
|
+
- This is free, open-source software.
|
120
|
+
- Although the author makes every effort to maintain it, no guarantees are made as to the quality or reliability, and reported issues will be addressed if and when the author has time.
|
121
|
+
- Help/support will not be given by the author, so forums (e.g. Ionic) or Stack Overflow should be used. Any issues requesting help/support will be closed immediately.
|
122
|
+
- If you have urgent need of a bug fix/feature, the author can be engaged for PAID contract work to do so: please contact dave@workingedge.co.uk
|
123
|
+
- Rude or abusive comments/issues will not be tolerated, nor will opening multiple issues if those previously closed are deemed unsuitable. Any of the above will result in you being BANNED from ALL of my Github repositories.
|
124
|
+
-->
|
package/LICENSE
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
## ISC License
|
2
|
-
|
3
|
-
Copyright (c) 2023 EMI-INDO
|
4
|
-
|
5
|
-
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
6
|
-
|
7
|
-
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
1
|
+
## ISC License
|
2
|
+
|
3
|
+
Copyright (c) 2023 EMI-INDO
|
4
|
+
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|