summaryrefslogtreecommitdiff
path: root/plugins/hello_signals/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hello_signals/src/main/AndroidManifest.xml')
-rw-r--r--plugins/hello_signals/src/main/AndroidManifest.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/hello_signals/src/main/AndroidManifest.xml b/plugins/hello_signals/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..8f791bd
--- /dev/null
+++ b/plugins/hello_signals/src/main/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="fhuyakou.godot.plugin.android.hellosignals">
+
+ <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.HelloSignals"
+ android:value="fhuyakou.godot.plugin.android.hellosignals.HelloSignalsPlugin" />
+ </application>
+</manifest>