tns-android
Advanced tools
Changelog
1.1.0 (2015, June 10)
Changelog
1.0.0 (2015, April 29)
__log
(was Log
)__debugbreak
(was waitForDebugger
)__enableVerboseLogging
(was enableVerboseLogging
)__disableVerboseLogging
(was disableVerboseLogging
)__exit
(was fail
)Changelog
0.10.0 (2015, April 17)
android.content.Intent.getAction()
previously was accessible like android.content.Intent.Action
. This is no longer valid as it contradicts with the Android APIs.extend
constructs work// WRONG
var handler = new android.os.Handler.extend({...})();
// CORRECT
var handlerType = android.os.Handler.extend({...});
var handler = new handlerType();
assets
folder has changed. The tns_modules
directory is now within the assets/app
one. To migrate older CLI projects to the new structure simply move the content of the inner app folder one level up:####Previous structure:
|--app
|--|--app
|--|--|--bootstrap.js
|--|--|--myFile.js
|--|--tns_modules
####New structure:
|--app
|--|--bootstrap.js
|--|--myFile.js
|--|--tns_modules