summaryrefslogtreecommitdiff
path: root/build/android/src/main/AndroidManifest.xml
blob: df218fb337f5576c2254b2d5645821fd9747c22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
		package="net.minetest.minetest"
		android:installLocation="auto">
	<uses-feature android:glEsVersion="0x00010000" android:required="true"/>
	<uses-permission android:name="android.permission.INTERNET" />
	<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
	<application android:icon="@drawable/irr_icon"
			android:label="${project}"
			android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
			android:allowBackup="true">
		<activity android:name=".MtNativeActivity"
				android:label="${project}"
				android:launchMode="singleTask"
				android:configChanges="orientation|keyboard|keyboardHidden|navigation"
				android:screenOrientation="sensorLandscape"
				android:clearTaskOnLaunch="true">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
			<meta-data android:name="android.app.lib_name" android:value="minetest" />
		</activity>
		<activity android:name=".MinetestTextEntry"
				android:theme="@style/Theme.Transparent"
				android:excludeFromRecents="true">
		</activity>
		<activity android:name=".MinetestAssetCopy"
				android:theme="@style/Theme.Transparent"
				android:excludeFromRecents="true">
		</activity>
	</application>
</manifest>
class="hl kwd">l_clear_out_chat_queue(lua_State *L); // get_player_names() static int l_get_player_names(lua_State *L); // show_formspec(name, formspec) static int l_show_formspec(lua_State *L); // send_respawn() static int l_send_respawn(lua_State *L); // disconnect() static int l_disconnect(lua_State *L); // gettext(text) static int l_gettext(lua_State *L); // get_last_run_mod(n) static int l_get_last_run_mod(lua_State *L); // set_last_run_mod(modname) static int l_set_last_run_mod(lua_State *L); // get_node(pos) static int l_get_node_or_nil(lua_State *L); static int l_get_language(lua_State *L); // get_wielded_item() static int l_get_wielded_item(lua_State *L); // get_meta(pos) static int l_get_meta(lua_State *L); static int l_sound_play(lua_State *L); static int l_sound_stop(lua_State *L); // get_server_info() static int l_get_server_info(lua_State *L); // get_item_def(itemstring) static int l_get_item_def(lua_State *L); // get_node_def(nodename) static int l_get_node_def(lua_State *L); // get_privilege_list() static int l_get_privilege_list(lua_State *L); // get_builtin_path() static int l_get_builtin_path(lua_State *L); public: static void Initialize(lua_State *L, int top); };