summaryrefslogtreecommitdiff
path: root/hello_world/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'hello_world/src/main/AndroidManifest.xml')
-rw-r--r--hello_world/src/main/AndroidManifest.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/hello_world/src/main/AndroidManifest.xml b/hello_world/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..8bb5fa4
--- /dev/null
+++ b/hello_world/src/main/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="fhuyakou.godot.plugin.android.helloworld">
+
+ <application>
+ <!--
+ Plugin metadata:
+
+ - In the `android:name` attribute, the `org.godotengine.plugin.v1` prefix
+ is required so Godot can recognize the project as a valid Godot
+ Android plugin. The plugin name following the prefix should match the value
+ of the plugin name returned by the plugin initializer.
+
+ - The `android:value` attribute should be the classpath to the plugin
+ initializer.
+ -->
+ <meta-data
+ android:name="org.godotengine.plugin.v1.HelloWorld"
+ android:value="fhuyakou.godot.plugin.android.helloworld.HelloWorldPlugin" />
+ </application>
+</manifest>