-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathAndroidManifest.xml
34 lines (32 loc) · 1.55 KB
/
AndroidManifest.xml
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"
android:versionCode="1"
android:versionName="last"
package="org.jphp.group.android.javafx.hello">
<!-- Permission for internet -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- For more see https://developer.android.com/guide/topics/permissions/overview -->
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="jphp-android-javafx-hello"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:name="android.support.multidex.MultiDexApplication"
android:debuggable="false">
<activity
android:name="javafxports.android.FXActivity"
android:label="jphp-android-javafx-hello"
android:configChanges="orientation|screenSize"> <!-- DONT CHANGE android:name -->
<meta-data android:name="main.class"
android:value="org.venity.jphp.ext.android.UXAndroidApplication"/>
<!-- DONT CHANGE android:value -->
<meta-data android:name="debug.port"
android:value="0"/>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>