Skip to content
This repository was archived by the owner on Jul 2, 2020. It is now read-only.

Commit ef951aa

Browse files
author
oraclejet
committed
Update 0.0.9
1 parent 53c9e1f commit ef951aa

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ yo oraclejet <app name> --template=basic
2727
yo oraclejet:hybrid myApp --appId=com.oracle.samples --appName=MyApp --template=navDrawer --platforms=android
2828
```
2929

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.
43+
3044
### [Contributing](https://github.com/oracle/generator-oraclejet/tree/master/CONTRIBUTING.md)
3145
Oracle JET is an open source project. Pull Requests are currently not being accepted. See
3246
[CONTRIBUTING](https://github.com/oracle/generator-oraclejet/tree/master/CONTRIBUTING.md)

common/template/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var _WEB = "web";
1313
var _BOTH = "both";
1414

1515
var BLANK_TEMPLATE = blankTemplate.BLANK_TEMPLATE;
16-
var _TEMPLATE_URL_ROOT = "https://github.com/oracle/oraclejet/releases/download/0.0.2/";
16+
var _TEMPLATE_URL_ROOT = "https://github.com/oracle/oraclejet/releases/download/2.0.0/";
1717

1818
var _TEMPLATES =
1919
{

generators/app/templates/common/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"version": "1.0.0",
44
"dependencies":
55
{
6-
"oraclejet": "0.0.2"
6+
"oraclejet": "2.0.0"
77
}
88
}

generators/hybrid/templates/common/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"version": "1.0.0",
44
"dependencies":
55
{
6-
"oraclejet": "0.0.2"
6+
"oraclejet": "2.0.0"
77
}
88
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-oraclejet",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"license":"UPL-1.0",
55
"description": "initial",
66
"keywords":

0 commit comments

Comments
 (0)