blob: 45f0e71ab3b6fcd582a762455b5c7baebc39274e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<!--
Plugin metadata:
- In the `android:name` attribute, the `org.godotengine.plugin.v2` 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.v2.HelloSignals"
android:value="fhuyakou.godot.plugin.android.hellosignals.HelloSignalsPlugin" />
</application>
</manifest>
|