All Projects → yalcin-ata → godot-android-plugin-firebase

yalcin-ata / godot-android-plugin-firebase

Licence: other
Godot 3.2.2 Android plugin for Firebase

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to godot-android-plugin-firebase

Project-Map
No description or website provided.
Stars: ✭ 52 (+26.83%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin, godot3
godot-local-notification
Godot module for local notifications (android and iOS)
Stars: ✭ 111 (+170.73%)
Mutual labels:  godotengine, godot, godot-engine, godot-module, godot-plugin
MySQL Module
MySQL connector to Godot Engine.
Stars: ✭ 30 (-26.83%)
Mutual labels:  godotengine, godot, godot-engine, godot-module, godot3
godot-practice-shaders
Some practice shaders in Godot
Stars: ✭ 79 (+92.68%)
Mutual labels:  godotengine, godot, godot-engine, godot3
Godot-DialogPlugin
🗨️ A Dialog Node for Godot Engine
Stars: ✭ 194 (+373.17%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin
nativelib-cli
NativeLib is a plugin management system for Godot engine.
Stars: ✭ 19 (-53.66%)
Mutual labels:  godot, godot-engine, godot-module, godot-plugin
discord.gd
Discord Bot API wrapper for Godot. Make bots in GDScript.
Stars: ✭ 69 (+68.29%)
Mutual labels:  godotengine, godot, godot-engine, godot-plugin
PostgreSQLClient
PostgreSQL connector for Godot Engine in GDScript.
Stars: ✭ 28 (-31.71%)
Mutual labels:  godot, godot-engine, godot-module, godot-plugin
GodotFAN
Facebook Audience Network Ad module for godot
Stars: ✭ 25 (-39.02%)
Mutual labels:  godot, godot-engine, godot-module, godot-plugin
godot-admob-editor
This repository is for Godot's Addons to integrate natively AdMob to your Game Project without much configurations, with a beautiful UI and directly inside Godot Editor!
Stars: ✭ 43 (+4.88%)
Mutual labels:  godotengine, godot, godot-engine, admob
godot box2d
A C++ module that integrates the Box2D library with the Godot game engine by providing nodes for standard Box2D objects.
Stars: ✭ 32 (-21.95%)
Mutual labels:  godotengine, godot, godot-engine, godot-module
novemberdev soulslike darksouls godot
Dark Souls clone in 3D with Godot
Stars: ✭ 51 (+24.39%)
Mutual labels:  godotengine, godot, godot-engine
GDGotm
Official Godot plugin for gotm.io - the Godot Platform!
Stars: ✭ 43 (+4.88%)
Mutual labels:  godotengine, godot, godot-engine
godot-rpgdb
An easy to use JSON database-manager for Godot.
Stars: ✭ 25 (-39.02%)
Mutual labels:  godot, godot-engine, godot-plugin
Game-Examples
Godot game examples for gotm.io - the Godot Platform!
Stars: ✭ 27 (-34.15%)
Mutual labels:  godotengine, godot, godot-engine
DartGodot
Godot + Dart 🎯
Stars: ✭ 79 (+92.68%)
Mutual labels:  godotengine, godot, godot-engine
godot-gameshell
Godot export templates and instructions for the GameShell portable game console and other single-board computers
Stars: ✭ 34 (-17.07%)
Mutual labels:  godotengine, godot, godot-engine
toziuha-night-oota
Opensource Metroidvania inspired on Castlevania Order of Ecclesia
Stars: ✭ 78 (+90.24%)
Mutual labels:  godotengine, godot, godot-engine
godot-performance-comparison
Godot performance comparison between the `3.x` and `master` branch
Stars: ✭ 12 (-70.73%)
Mutual labels:  godotengine, godot, godot-engine
Pixelorama
A free & open-source 2D sprite editor, made with the Godot Engine! Available on Windows, Linux, macOS and the Web!
Stars: ✭ 2,535 (+6082.93%)
Mutual labels:  godotengine, godot, godot-engine

Godot (3.2.2) Android plugin for Firebase

This is the updated version of godot-android-module-firebase for the new Godot (3.2.2) Android plugin system (v1).

For the general documentation look there.

Steps to add this plugin to your Godot project are as follows:

  • Open your project in Godot
  • Install Export Templates if necessary
  • Install Android build template
  • Download from this repository's downloads directory both Firebase.release.aar and Firebase.release.gdpa and copy them to [GODOT-PROJECT]/android/plugins/
  • Download from this repository's downloads directory godot-firebase-config.json and copy it to [GODOT-PROJECT]/android/build/assets (create the directory if necessary) and edit it to match your settings (especially AdMob App ID and ad unit IDs)
  • Download your project's google-services.json from Firebase Console and copy it to [GODOT-PROJECT]/android/build/
  • Edit [GODOT-PROJECT]/android/build/build.gradle:
    • add classpath 'com.google.gms:google-services:4.3.3' above the line //CHUNK_BUILDSCRIPT_DEPENDENCIES_BEGIN
    • add apply plugin: 'com.google.gms.google-services' above the line //CHUNK_GLOBAL_BEGIN
    • optional (for Authentication): search for buildTypes.all { and add to this block: resValue "string", "server_client_id", "project-123456..." where project-123456... is the public-facing name of your Firebase project
  • Edit [GODOT-PROJECT]/android/build/AndroidManifest.xml:
    • add the following above the line <!--CHUNK_APPLICATION_BEGIN--> and do not forget to set your AdMob App Id

      <meta-data
          android:name="com.google.android.gms.ads.APPLICATION_ID"
          android:value="ca-app-pub-ADMOB_APP_ID"/>
      
  • Edit [GODOT-PROJECT]/android/build/config.gradle and set minSdk to 21 (otherwise a gradle build error occurs: Number of method references cannot exceed 64K)
  • In Godot select menu Project > Export, add Android and edit your settings (package unique name, keystores, etc.) and select under Custom Template: Use Custom Build and also under Plugins: Firebase.

That should be it!

Steps to build .aar from this project:

After checking out this project open Android Studio and start an empty Android project (with no activity, minimum SDK 21). Then select menu File > New > Import module and import this project as a module. In the Android Studio's terminal you can then run:

  • gradlew clean
  • gradlew build

When finished the .aar for both debug and release can be found here: build/outputs/aar

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].