├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── misc.xml └── runConfigurations.xml ├── AdsExampleProject ├── .import │ ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 │ └── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── AdExample.gd ├── MainScene.tscn ├── default_env.tres ├── export_presets.cfg ├── icon.png ├── icon.png.import └── project.godot ├── Godot └── UnityAdsGodot.gdap ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── unityadsgodot ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml └── java └── com └── jandans └── unityaddsgodot └── UnityAdsInterface.java /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /AdsExampleProject/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 -------------------------------------------------------------------------------- /AdsExampleProject/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /AdsExampleProject/AdExample.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/AdExample.gd -------------------------------------------------------------------------------- /AdsExampleProject/MainScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/MainScene.tscn -------------------------------------------------------------------------------- /AdsExampleProject/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/default_env.tres -------------------------------------------------------------------------------- /AdsExampleProject/export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/export_presets.cfg -------------------------------------------------------------------------------- /AdsExampleProject/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/icon.png -------------------------------------------------------------------------------- /AdsExampleProject/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/icon.png.import -------------------------------------------------------------------------------- /AdsExampleProject/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/AdsExampleProject/project.godot -------------------------------------------------------------------------------- /Godot/UnityAdsGodot.gdap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/Godot/UnityAdsGodot.gdap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/settings.gradle -------------------------------------------------------------------------------- /unityadsgodot/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /unityadsgodot/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/unityadsgodot/build.gradle -------------------------------------------------------------------------------- /unityadsgodot/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unityadsgodot/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/unityadsgodot/proguard-rules.pro -------------------------------------------------------------------------------- /unityadsgodot/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/unityadsgodot/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /unityadsgodot/src/main/java/com/jandans/unityaddsgodot/UnityAdsInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j1and1/GodotUnityAdsInterface/HEAD/unityadsgodot/src/main/java/com/jandans/unityaddsgodot/UnityAdsInterface.java --------------------------------------------------------------------------------