Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/achyutastudios/godot-play-billing
Godot Plugin to integrate Google Play Billing Library
https://github.com/achyutastudios/godot-play-billing
android godot playbillinglibrary
Last synced: 2 months ago
JSON representation
Godot Plugin to integrate Google Play Billing Library
- Host: GitHub
- URL: https://github.com/achyutastudios/godot-play-billing
- Owner: AchyutaStudios
- License: mit
- Created: 2024-10-26T15:03:10.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T12:39:33.000Z (2 months ago)
- Last Synced: 2024-10-29T13:29:07.195Z (2 months ago)
- Topics: android, godot, playbillinglibrary
- Language: GDScript
- Homepage: https://achyutastudios.github.io/godot-play-billing/
- Size: 854 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Godot Play Billing
Welcome to the **Godot Play Billing Library**!
This plugin simplifies integration with the Google Play Billing system by providing a GDScript-based interface. Developers can easily implement billing features without needing to write any Kotlin or Java code, making it accessible even for those without prior Android development experience.
## Quick Start
To get started, follow these steps:
- [Download the Library](https://achyutastudios.github.io/godot-play-billing/get-started/download/).
- [Follow Installation Guide](https://achyutastudios.github.io/godot-play-billing/get-started/installation/).
- Run a simple billing example to verify your setup.## Example
```gdscript
# The PlayBilling node is provided by the plugin,
# encapsulating all necessary signals and methods for Google Play Billing.
@onready var _play_billing: PlayBilling = $PlayBillingfunc _ready():
# Initiate the connection to the Google Play Billing service.
_play_billing.start_connection()func _on_play_billing_connected() -> void:
# Connection is established.
```## Documentation
Comprehensive documentation is available [here](https://achyutastudios.github.io/godot-play-billing) and includes:- [Introduction](https://achyutastudios.github.io/godot-play-billing/)
- Getting Started
- [Download](https://achyutastudios.github.io/godot-play-billing/get-started/download/)
- [Installation](https://achyutastudios.github.io/godot-play-billing/get-started/installation/)
- [Integration](https://achyutastudios.github.io/godot-play-billing/integrate/)
- [API Reference](https://achyutastudios.github.io/godot-play-billing/api-reference/)