Skip to content

Commit 1223e74

Browse files
authored
Merge pull request #239 from poingstudios/improve-docs
Improve docs
2 parents b91cd34 + b1b3fe2 commit 1223e74

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

.github/ISSUE_TEMPLATE/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Issue with AdMob on iOS only
4-
url: https://github.com/Poing-Studios/godot-admob-ios
4+
url: https://github.com/poingstudios/godot-admob-ios
55
about: Check the iOS plugin repository.
6-
- name: Issue with AdMob on Godot Editor
7-
url: https://github.com/Poing-Studios/godot-admob-editor
6+
- name: Issue with AdMob on Godot Plugin
7+
url: https://github.com/poingstudios/godot-admob-plugin
88
about: Check the Android plugin repository.

.github/workflows/manual_release_android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Build Android Action
3131
id: build-android
32-
uses: Poing-Studios/godot-android-action@master
32+
uses: poingstudios/godot-android-action@master
3333
with:
3434
godot_version: ${{ github.event.inputs.godot_version }}
3535
build_version: ${{ github.event.inputs.build_version }}

.github/workflows/release_android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Build Android Action
3131
id: build-android
32-
uses: Poing-Studios/godot-android-action@master
32+
uses: poingstudios/godot-android-action@master
3333
with:
3434
godot_version: ${{matrix.GODOT_VERSIONS}}
3535
project_path: admob

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,41 @@
1212
<a href="https://godotengine.org">
1313
<img src="https://img.shields.io/badge/GODOT-%23FFFFFF.svg?&logo=godot-engine">
1414
</a>
15-
<a href="https://github.com/Poing-Studios/godot-admob-android/releases">
16-
<img src="https://img.shields.io/github/v/tag/Poing-Studios/godot-admob-android?label=Version">
15+
<a href="https://github.com/poingstudios/godot-admob-android/releases">
16+
<img src="https://img.shields.io/github/v/tag/poingstudios/godot-admob-android?label=Version">
1717
</a>
18-
<a href="https://github.com/Poing-Studios/godot-admob-android/actions">
19-
<img src="https://github.com/Poing-Studios/godot-admob-android/workflows/Build%20Android/badge.svg">
18+
<a href="https://github.com/poingstudios/godot-admob-android/actions">
19+
<img src="https://github.com/poingstudios/godot-admob-android/workflows/Build%20Android/badge.svg">
2020
</a>
21-
<a href="https://github.com/Poing-Studios/godot-admob-android/blob/master/admob/AdMob.gdap">
22-
<img src="https://img.shields.io/badge/GAD SDK Android-v22.0.0-informational">
21+
<a href="https://github.com/poingstudios/godot-admob-android/blob/master/admob/AdMob.gdap">
22+
<img src="https://img.shields.io/badge/GAD SDK Android-v23.0.0-informational">
2323
</a>
24-
<a href="https://github.com/Poing-Studios/godot-admob-android/releases">
25-
<img src="https://img.shields.io/github/downloads/Poing-Studios/godot-admob-android/total?style=social">
24+
<a href="https://github.com/poingstudios/godot-admob-android/releases">
25+
<img src="https://img.shields.io/github/downloads/poingstudios/godot-admob-android/total?style=social">
2626
</a>
2727
<a href="#🌠star-history">
28-
<img src="https://img.shields.io/github/stars/Poing-Studios/godot-admob-android?style=social">
28+
<img src="https://img.shields.io/github/stars/poingstudios/godot-admob-android?style=social">
2929
</a>
30-
<img src="https://img.shields.io/github/license/Poing-Studios/godot-admob-android?style=plastic">
30+
<img src="https://img.shields.io/github/license/poingstudios/godot-admob-android?style=plastic">
3131
</p>
3232

3333
<p align="center">
3434
<a href="/docs">📃Documentation</a> •
35-
<a href="https://github.com/Poing-Studios/godot-admob-android/releases">💾Downloads</a>
35+
<a href="https://github.com/poingstudios/godot-admob-android/releases">💾Downloads</a>
3636
</p>
3737

3838
## 📖About
3939
This repository is a _Godot Engine Plugin_ that makes it **easy** to display **AdMob** ads in your game, **just download and use**, no need to worry about building or version compatibility.
4040

41-
The plugin supports most versions of Godot from 3.x to 4.x and is **compatible** with both **Android and [iOS](https://github.com/Poing-Studios/godot-admob-ios)**.
41+
The plugin supports most versions of Godot from 3.x to 4.x and is **compatible** with both **Android and [iOS](https://github.com/poingstudios/godot-admob-ios)**.
4242

4343
## 💡Features
4444
- **Supports** _Almost_ all [AdFormats](https://support.google.com/admob/answer/6128738?hl=en)💵: `Banner`, `Interstitial`, `Rewarded`, `Rewarded Interstitial`
4545
- EU Consent for GDPR **compliance** 🏦 _[EU Consent/UMP](https://support.google.com/admob/answer/7666519?hl=en)_
4646
- Targeting **specific** ⭕ audience segments
4747
- Has `CI/CD` to **test** ✅, **build** 🛠️ and **release versions** 📨
4848
- Concise **documentation** 📄
49-
- Same **behavior** as [iOS Plugin](https://github.com/Poing-Studios/godot-admob-ios) 🍎
49+
- Same **behavior** as [iOS Plugin](https://github.com/poingstudios/godot-admob-ios) 🍎
5050

5151
## 🕵️‍♂️Preview
5252
| Banner | Interstitial | Rewarded | Rewarded Interstitial |
@@ -56,11 +56,11 @@ The plugin supports most versions of Godot from 3.x to 4.x and is **compatible**
5656
## 🔌Usage
5757
### Prerequisites
5858
- Basic knowledge about usage of Godot Plugins and AdMob
59-
- Usage of [AdMob Editor Plugin](https://github.com/Poing-Studios/Godot-AdMob-Editor-Plugin)
59+
- Usage of [AdMob Editor Plugin](https://github.com/poingstudios/godot-admob-plugin)
6060

6161
### Installation
6262
- [YouTube Tutorial](https://youtu.be/ZnlH3INcAGs)
63-
- Download the ```android-?-template-v{{ your_godot_version }}.zip``` in the [releases tab](https://github.com/Poing-Studios/godot-admob-android/releases), we recommend you to use always the latest.
63+
- Download the ```android-?-template-v{{ your_godot_version }}.zip``` in the [releases tab](https://github.com/poingstudios/godot-admob-android/releases), we recommend you to use always the latest.
6464
- Extract the content downloaded into ```res://android/plugins``` directory on your Godot project
6565
- Add your [AdMob App ID](https://support.google.com/admob/answer/7356431) to your app's ```res://android/build/AndroidManifest.xml``` file by adding a ```<meta-data>``` tag with name ```com.google.android.gms.ads.APPLICATION_ID```, as shown below.
6666
``` xml
@@ -89,7 +89,7 @@ The plugin supports most versions of Godot from 3.x to 4.x and is **compatible**
8989
- For complete and detailed documentation check here: [LINK]()
9090

9191
## 🌠Star History
92-
[![Star History Chart](https://api.star-history.com/svg?repos=Poing-Studios/godot-admob-android&type=Date)](https://star-history.com/#Poing-Studios/godot-admob-android&Date)
92+
[![Star History Chart](https://api.star-history.com/svg?repos=poingstudios/godot-admob-android&type=Date)](https://star-history.com/#poingstudios/godot-admob-android&Date)
9393

9494
## 🪪License
95-
This project is licensed under the [MIT License](https://github.com/Poing-Studios/godot-admob-android/blob/master/LICENSE).
95+
This project is licensed under the [MIT License](https://github.com/poingstudios/godot-admob-android/blob/master/LICENSE).

admob/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.6
1+
2.1.7

0 commit comments

Comments
 (0)