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
{{ message }}
This repository was archived by the owner on Jul 2, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,20 @@ yo oraclejet <app name> --template=basic
27
27
yo oraclejet:hybrid myApp --appId=com.oracle.samples --appName=MyApp --template=navDrawer --platforms=android
28
28
```
29
29
30
+
### Release Notes
31
+
* Invoking 'grunt serve:release' may attempt to deploy an unsigned APK file, which fails. This will occur if you have an unsigned APK file in your build outputs directory, because the underlying call to 'cordova run' attempts to install the first APK file located in that directory.
32
+
**Solution:** Remove the unsigned APK file before invoking 'grunt serve:release'.
33
+
* Invoking 'grunt build' may cause corruption of `<button>` tags whereby `<button></button>` is changed to `<button />` which in turn may lead to the page not displaying correctly.
34
+
**Solution:** Invoke 'grunt serve' then modify the `<button>` tags manually.
35
+
* Warning message 'No Content-Security-Policy meta tag found' displayed repeatedly in Chrome debugger, due to there being no Content-Security-Policy meta tag in the index.html file. This meta tag is required by the Cordova whitelist plugin that is included in Cordova apps by default.
36
+
**Solution:** Add `<meta http-equiv="Content-Security-Policy"/>` tag manually to the index.html file.
37
+
* Invoking 'grunt build' may lead to an error message that Android API 23 is required. By default, apps built using cordova-android@5.1 target API 23 and therefore require Android API 23 to be installed, however the Cordova documentation for this release states that you need to install API 22.
38
+
**Solution:** Install Android API 23 if you have cordova-android@5.1 installed.
39
+
* Android 6 (API 23) emulator may crash or freeze following 'grunt serve' the first time. This appears to be a known issue with the Android emulator.
40
+
**Solution:** Setting "Use host GPU" may help, but running 'grunt serve' a second time should be successful.
41
+
* Invoking 'yo oraclejet:hybrid' to scaffold a JET hybrid app on Oracle Enterprise Linux (OEL) 6 may fail if you have Android Platform-tools v23.1.0 installed. This happens because Android Platform-tools now requires GNU C Library (glibc) 2.15 or later, which is not available on OEL 6.
42
+
**Solution:** Either upgrade to OEL 7 or install an earlier version of Android Platform-tools, which would mean that you cannot target or emulate Android 6.0.
0 commit comments