Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Thumbs.db
# IDE files
.vscode/
.idea/
.claude/
*.swp
*.swo
*~
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ APPLE_SDK_ARCHS = iphoneos/arm64 iphonesimulator/arm64 iphonesimulator/x86_64
# ============================================================================
# Version Configuration
# ============================================================================
GODOT_VERSION = 4.6-stable
GODOT_VERSION = 4.7-stable
GODOT_REPO = https://github.com/godotengine/godot.git
FIREBASE_VERSION = 12.7.0
FIREBASE_VERSION = 12.14.0

# ============================================================================
# Help
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ This project provides native Firebase plugins for Godot, built as separate modul

| Component | Version |
|-----------|---------|
| Godot | 4.6-stable |
| Godot | 4.7-stable |
| **iOS** | |
| Firebase iOS SDK | 12.7.0 |
| Firebase iOS SDK | 12.14.0 |
| Min iOS | 13.0 |
| **Android** | |
| firebase-analytics | 23.0.0 |
| firebase-crashlytics | 20.0.3 |
| firebase-crashlytics-ndk | 20.0.3 |
| firebase-messaging | 25.0.1 |
| firebase-analytics | 23.2.0 |
| firebase-crashlytics | 20.0.6 |
| firebase-crashlytics-ndk | 20.0.6 |
| firebase-messaging | 25.0.2 |
| firebase-common | 22.0.1 |
| Kotlin | 2.3.0 |
| Kotlin | 2.4.0 |
| Min Android SDK | 24 (Android 7.0) |

## Quick Start
Expand Down Expand Up @@ -691,7 +691,7 @@ A: Yes, Firebase adds approximately:
Only enabled modules are included in the final build.

**Q: Does this work with Godot 4.4 or earlier?**
A: This project is built for Godot 4.6 or later.
A: This project is built for Godot 4.7 or later.

**Q: How do I get Firebase config files?**
A:
Expand Down
6 changes: 3 additions & 3 deletions addons/godotx_firebase/export_plugin.gd
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class AndroidExportPlugin extends EditorExportPlugin:
"name": "firebase/analytics_version",
"type": TYPE_STRING
},
"default_value": "23.0.0"
"default_value": "23.2.0"
})

# Enable Crashlytics
Expand All @@ -150,7 +150,7 @@ class AndroidExportPlugin extends EditorExportPlugin:
"name": "firebase/crashlytics_version",
"type": TYPE_STRING
},
"default_value": "20.0.3"
"default_value": "20.0.6"
})

# Enable Messaging
Expand All @@ -168,7 +168,7 @@ class AndroidExportPlugin extends EditorExportPlugin:
"name": "firebase/messaging_version",
"type": TYPE_STRING
},
"default_value": "25.0.1"
"default_value": "25.0.2"
})

return options
Expand Down
2 changes: 1 addition & 1 deletion addons/godotx_firebase/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="Godotx Firebase"
description="Firebase integration for Godot"
author="Paulo Coutinho"
version="2.4.1"
version="2.5.0"
script="export_plugin.gd"
6 changes: 3 additions & 3 deletions export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,8 @@ firebase/android_config_file="res://temp/google-services.json"
firebase/enable_analytics=true
firebase/enable_crashlytics=true
firebase/enable_messaging=true
firebase/analytics_version="23.0.0"
firebase/crashlytics_version="20.0.3"
firebase/messaging_version="25.0.1"
firebase/analytics_version="23.2.0"
firebase/crashlytics_version="20.0.6"
firebase/messaging_version="25.0.2"
firebase/enable_core=true
firebase/core_version="22.0.1"
2 changes: 1 addition & 1 deletion project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ config_version=5

config/name="GodotxFirebaseSample"
run/main_scene="res://scenes/Main.tscn"
config/features=PackedStringArray("4.6")
config/features=PackedStringArray("4.7")

[display]

Expand Down
6 changes: 3 additions & 3 deletions source/android/firebase_analytics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.android.library") version "8.13.2"
id("org.jetbrains.kotlin.android") version "2.3.0"
id("org.jetbrains.kotlin.android") version "2.4.0"
}

android {
Expand Down Expand Up @@ -31,9 +31,9 @@ android {
}

dependencies {
compileOnly("org.godotengine:godot:4.6.0.stable")
compileOnly("org.godotengine:godot:4.7.0.stable")

// Firebase Analytics
implementation("com.google.firebase:firebase-analytics:23.0.0")
implementation("com.google.firebase:firebase-analytics:23.2.0")
}

4 changes: 2 additions & 2 deletions source/android/firebase_core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.android.library") version "8.13.2"
id("org.jetbrains.kotlin.android") version "2.3.0"
id("org.jetbrains.kotlin.android") version "2.4.0"
}

android {
Expand Down Expand Up @@ -31,7 +31,7 @@ android {
}

dependencies {
compileOnly("org.godotengine:godot:4.6.0.stable")
compileOnly("org.godotengine:godot:4.7.0.stable")

// Firebase Core
implementation("com.google.firebase:firebase-common:22.0.1")
Expand Down
8 changes: 4 additions & 4 deletions source/android/firebase_crashlytics/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.android.library") version "8.13.2"
id("org.jetbrains.kotlin.android") version "2.3.0"
id("org.jetbrains.kotlin.android") version "2.4.0"
}

android {
Expand Down Expand Up @@ -31,10 +31,10 @@ android {
}

dependencies {
compileOnly("org.godotengine:godot:4.6.0.stable")
compileOnly("org.godotengine:godot:4.7.0.stable")

// Firebase Crashlytics
implementation("com.google.firebase:firebase-crashlytics:20.0.3")
implementation("com.google.firebase:firebase-crashlytics-ndk:20.0.3")
implementation("com.google.firebase:firebase-crashlytics:20.0.6")
implementation("com.google.firebase:firebase-crashlytics-ndk:20.0.6")
}

6 changes: 3 additions & 3 deletions source/android/firebase_messaging/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.android.library") version "8.13.2"
id("org.jetbrains.kotlin.android") version "2.3.0"
id("org.jetbrains.kotlin.android") version "2.4.0"
}

android {
Expand Down Expand Up @@ -31,9 +31,9 @@ android {
}

dependencies {
compileOnly("org.godotengine:godot:4.6.0.stable")
compileOnly("org.godotengine:godot:4.7.0.stable")

// Firebase Messaging
implementation("com.google.firebase:firebase-messaging:25.0.1")
implementation("com.google.firebase:firebase-messaging:25.0.2")
}

2 changes: 1 addition & 1 deletion source/ios/firebase_analytics/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platform :ios, '15.0'
use_frameworks!

target 'GodotxFirebaseAnalytics' do
pod 'Firebase/Analytics', '12.7.0'
pod 'Firebase/Analytics', '12.14.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion source/ios/firebase_core/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platform :ios, '15.0'
use_frameworks!

target 'GodotxFirebaseCore' do
pod 'Firebase/Core', '12.7.0'
pod 'Firebase/Core', '12.14.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion source/ios/firebase_crashlytics/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platform :ios, '15.0'
use_frameworks!

target 'GodotxFirebaseCrashlytics' do
pod 'Firebase/Crashlytics', '12.7.0'
pod 'Firebase/Crashlytics', '12.14.0'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion source/ios/firebase_messaging/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platform :ios, '15.0'
use_frameworks!

target 'GodotxFirebaseMessaging' do
pod 'Firebase/Messaging', '12.7.0'
pod 'Firebase/Messaging', '12.14.0'
end

post_install do |installer|
Expand Down
Loading