You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@
7
7
Overview
8
8
----------
9
9
10
-
The Predix Mobile Java application is an example of how the [Predix Mobile Java SDK](https://github.com/PredixDev/PredixMobileJavaSDK) can be used to create a native exectuting client for Mac, Windows, Linux or any other operating system that Java supports. For an overview of Predix Mobile development please visit the [SDK repo](https://github.com/PredixDev/PredixMobileSDK) and [wiki](https://github.com/PredixDev/PredixMobileSDK/wiki).
10
+
The Predix Mobile Java application is an example of how the [Predix Mobile Java SDK](https://github.com/PredixDev/PredixMobileJavaSDK) can be used to create a think client for Mac, Windows, Linux or any other operating system that Java supports. For an overview of Predix Mobile development please visit the [SDK repo](https://github.com/PredixDev/PredixMobileSDK) and [wiki](https://github.com/PredixDev/PredixMobileSDK/wiki).
11
11
12
12
This reference application provides the following:
13
13
14
14
- A container for a web application hosted with the Predix Mobile Service
15
-
- A way to Authenticate with a UAA instance bound to a Predix Mobile Service
15
+
- A way Authenticate with a UAA instance bound to a Predix Mobile Service
16
16
- A way to run the container application on platforms that support Java
17
-
- An installer example using a gradle task that creates a platfrom installer for the running platform (Windows and Mac only)
17
+
- An installer example using a gradle task that creates an installer on the executed platform (Windows and Mac only)
18
18
19
19
Technology
20
20
----------
@@ -51,7 +51,7 @@ This will cause a message to be printed to the console that looks something like
51
51
52
52
This will allow you to set break points and examine areas of your JavaScript running in the JavaFX WebView.
53
53
54
-
##### Limitations:
54
+
##### limitations:
55
55
56
56
One limitation is console messages from you JavaScript will not be available in the Chrome console tab. Instead you should enable a redirect that shows JavaScript console logs in the Java console.
57
57
@@ -95,11 +95,11 @@ logging_level=error
95
95
96
96
Using gradle you can simple issue gradle commands from the command line to run the application.
In some cases both the configuration file and the Java VM argument may be required.
127
127
128
+
###****GE ONLY****
129
+
130
+
This proxy config will work for GE's proxy
131
+
```
132
+
http.proxyHost=sjc1intproxy01.crd.ge.com
133
+
http.proxyPort=8080
134
+
https.proxyHost=sjc1intproxy01.crd.ge.com
135
+
https.proxyPort=8080
136
+
```
137
+
128
138
Using an IDE
129
139
----------
130
140
@@ -146,7 +156,7 @@ Example installer
146
156
This example includes a very basic way to generate an Installer you could use to distribute your application for Mac, Windows, Linux, etc... The included installer is just an example and is not required to be used if you want to distribute your application using another install builder like install4j (http://www.ej-technologies.com/products/install4j/overview.html) or lzPack (http://izpack.org/). This is simply a quick and dirty example to show what is possible.
147
157
148
158
to use the example installer simply execute the jfxNative task from your IDE or using the Gradle command line. Here is an example of executing the installer task using Gradle in the command line.
149
-
#####Mac:
159
+
#####Mac:
150
160
```
151
161
./gradlew jfxNative
152
162
```
@@ -156,7 +166,7 @@ On Mac this will produce a DMG file that can be used to install the application
156
166
157
167
This example does not deal with signing the MacOS DMG or the application. For more on how to sign your DMG and APP file please visit Apple's documentation on signing (https://developer.apple.com/library/content/technotes/tn2206/_index.html). To integrate signing into the jfxNative Gradle Plugin please visit (https://github.com/FibreFoX/javafx-gradle-plugin)
0 commit comments