blob: 8bb5fa424af50267990e23b7d9972d5827f73fe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
|