Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.

Commit 3ce328d

Browse files
authored
Merge pull request #266 from poingstudios/261-lts-for-android-admob-sdk-v24
chore: bump play-services-ads to 24.9.0
2 parents c438c9c + 2368ce1 commit 3ce328d

11 files changed

Lines changed: 298 additions & 211 deletions

File tree

.github/workflows/manual_release_android.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: "ubuntu-latest"
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v6
2323

2424
- name: Set up Java
25-
uses: actions/setup-java@v2
25+
uses: actions/setup-java@v5
2626
with:
2727
java-version: 17
2828
distribution: "temurin"
@@ -42,7 +42,7 @@ jobs:
4242
project_path: admob
4343
gdap_file_path: admob/AdMob.gdap
4444

45-
- uses: actions/download-artifact@v3
45+
- uses: actions/download-artifact@v7
4646
with:
4747
name: ${{ steps.build-android.outputs.artifact_name }}
4848
path: artifacts_output
@@ -57,7 +57,7 @@ jobs:
5757
working-directory: artifacts_output
5858

5959
- name: Upload binaries to release
60-
uses: svenstaro/upload-release-action@2.3.0
60+
uses: svenstaro/upload-release-action@v2
6161
with:
6262
repo_token: ${{ secrets.GITHUB_TOKEN }}
6363
file: artifacts_output/${{ env.OUTPUT_FILENAME }}

.github/workflows/release_android.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
runs-on: "ubuntu-latest"
99
strategy:
1010
matrix:
11-
GODOT_VERSIONS: [3.5, 3.5.1, 3.5.2, 3.5.3, 4.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.1, 4.1.1, 4.1.2, 4.1.3]
11+
GODOT_VERSIONS: [3.5, 3.5.1, 3.5.2, 3.5.3, 3.6, 3.6.1, 3.6.2, 4.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.1, 4.1.1, 4.1.2, 4.1.3]
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
with:
1616
ref: ${{ github.ref_name }}
1717

1818
- name: Set up Java
19-
uses: actions/setup-java@v2
19+
uses: actions/setup-java@v5
2020
with:
2121
java-version: 17
2222
distribution: "temurin"
@@ -41,7 +41,7 @@ jobs:
4141
project_path: admob
4242
gdap_file_path: admob/AdMob.gdap
4343

44-
- uses: actions/download-artifact@v3
44+
- uses: actions/download-artifact@v7
4545
with:
4646
name: ${{ steps.build-android.outputs.artifact_name }}
4747
path: artifacts_output

.github/workflows/update_readme_sdk_version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v6
2020
with:
2121
token: ${{ secrets.ADMOB_ANDROID_WORKFLOW }}
2222

@@ -31,6 +31,6 @@ jobs:
3131
cat ${{ env.MD_FILE }}
3232
3333
- name: Git Auto Commit
34-
uses: stefanzweifel/git-auto-commit-action@v4.15.0
34+
uses: stefanzweifel/git-auto-commit-action@v7
3535
with:
3636
commit_message: Auto changed version on README.md

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ local.properties
4040
*android*.zip
4141

4242
ios/.sconsign.dblite
43+
.output/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<img src="https://github.com/poingstudios/godot-admob-android/workflows/Build%20Android/badge.svg">
2020
</a>
2121
<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">
22+
<img src="https://img.shields.io/badge/GAD SDK Android-v24.9.0-informational">
2323
</a>
2424
<a href="https://github.com/poingstudios/godot-admob-android/releases">
2525
<img src="https://img.shields.io/github/downloads/poingstudios/godot-admob-android/total?style=social">

admob/AdMob.gdap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ binary="admob-release.aar"
66

77
[dependencies]
88

9-
remote=["com.google.android.gms:play-services-ads:23.0.0"]
9+
remote=["com.google.android.gms:play-services-ads:24.9.0"]

admob/src/main/java/com/poing/admob/AdMob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
import java.util.Set;
7676

7777
public class AdMob extends org.godotengine.godot.plugin.GodotPlugin {
78-
private static final String PLUGIN_VERSION = "2.1.7";
78+
private static final String PLUGIN_VERSION = "2.1.8";
7979
private static final String LOG_TAG_NAME = "poing-godot-admob";
8080
private boolean aIsInitialized = false;
8181
private String aInitializationDesc = "";

gradle/wrapper/gradle-wrapper.jar

-10.6 KB
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Mon Sep 02 21:18:55 BRT 2024
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)