emi-indo-cordova-plugin-admob 0.0.9 → 1.1.9
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/ISSUE_TEMPLATE/bug_report.md +124 -0
- package/README.md +137 -347
- package/example/Advanced topics/auto_load_and_show.html +94 -0
- package/example/{consent.html → Advanced topics/consent.html } +51 -22
- package/example/Advanced topics/globalSettings.html +39 -0
- package/example/Advanced topics/targeting.html +78 -0
- package/example/app_open_ads.html +151 -0
- package/example/banner_ads.html +248 -0
- package/example/interstitial_ads.html +166 -0
- package/example/rewarded_ads.html +185 -0
- package/example/rewarded_interstitial_ads.html +184 -0
- package/package.json +1 -1
- package/plugin.xml +8 -5
- package/src/android/emiAdmobPlugin.java +1 -1
- package/www/emiAdmobPlugin.js +24 -16
- package/example/index.html +0 -296
@@ -0,0 +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
|
+
-->
|