blob: ef982749abb8485460839f209fbc151d8c613516 (
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.HelloWorld"
android:value="fhuyakou.godot.plugin.android.helloworld.HelloWorldPlugin" />
</application>
</manifest>
|