├── .gitignore ├── LICENSE ├── README.md ├── analytics ├── SCsub ├── android │ ├── AndroidManifestChunk.xml │ └── GodotGoogleAnalytics.java └── config.py └── demo └── Analytics.gd /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kloder-games/godot-google-analytics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kloder-games/godot-google-analytics/HEAD/README.md -------------------------------------------------------------------------------- /analytics/SCsub: -------------------------------------------------------------------------------- 1 | 2 | Import('env') 3 | 4 | -------------------------------------------------------------------------------- /analytics/android/AndroidManifestChunk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kloder-games/godot-google-analytics/HEAD/analytics/android/AndroidManifestChunk.xml -------------------------------------------------------------------------------- /analytics/android/GodotGoogleAnalytics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kloder-games/godot-google-analytics/HEAD/analytics/android/GodotGoogleAnalytics.java -------------------------------------------------------------------------------- /analytics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kloder-games/godot-google-analytics/HEAD/analytics/config.py -------------------------------------------------------------------------------- /demo/Analytics.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kloder-games/godot-google-analytics/HEAD/demo/Analytics.gd --------------------------------------------------------------------------------