mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
Added private Kimera build for UnitTestApp. Added Application module snippets.
This commit is contained in:
@ -1,4 +1,35 @@
|
||||
import app = require("application/application");
|
||||
// <snippet name="application">
|
||||
// # Application
|
||||
// The Application module provides abstraction over the platform-specific Application implementations.
|
||||
// It is the main BCL module and is required for other BCL modules to work properly.
|
||||
// The default bootstrap.js implementation for each platform loads and initializes this module.
|
||||
// ``` JavaScript
|
||||
import app = require("application/application");
|
||||
// ```
|
||||
// The pre-required `app` module is used throughout the following code snippets.
|
||||
// </snippet>
|
||||
|
||||
// <snippet name="application">
|
||||
// ### Initialization
|
||||
// ``` JavaScript
|
||||
//// The native app instance depends on the target platform
|
||||
var nativeAppInstance;
|
||||
app.init(nativeAppInstance);
|
||||
// ```
|
||||
// </snippet>
|
||||
|
||||
// <snippet name="application">
|
||||
// ### Checking the target platform
|
||||
// Use the following code in case you need to check somewhere in your code the platform you are running against:
|
||||
// ``` JavaScript
|
||||
if (app.android) {
|
||||
//// we are running on Android device
|
||||
} else if (app.ios) {
|
||||
//// we are running on iOS device
|
||||
}
|
||||
// ```
|
||||
// </snippet>
|
||||
|
||||
import TKUnit = require("Tests/TKUnit");
|
||||
|
||||
export var testInitDefined = function () {
|
||||
|
Reference in New Issue
Block a user