@@ -24,7 +24,7 @@ application.on("uncaughtError", args => {
2424 }
2525} ) ;
2626
27- application . on ( application . launchEvent , function ( args : application . LaunchEventData ) {
27+ application . on ( application . launchEvent , function ( args : application . LaunchEventData ) {
2828 if ( args . android ) {
2929 // For Android applications, args.android is an android.content.Intent class.
3030 console . log ( "### Launched application with: " + args . android + "." ) ;
@@ -34,7 +34,7 @@ application.on(application.launchEvent, function(args: application.LaunchEventDa
3434 }
3535} ) ;
3636
37- application . on ( application . suspendEvent , function ( args : application . ApplicationEventData ) {
37+ application . on ( application . suspendEvent , function ( args : application . ApplicationEventData ) {
3838 if ( args . android ) {
3939 // For Android applications, args.android is an android activity class.
4040 console . log ( "#" + ++ countSuspend + "# SuspendEvent Activity: " + args . android ) ;
@@ -44,7 +44,7 @@ application.on(application.suspendEvent, function(args: application.ApplicationE
4444 }
4545} ) ;
4646
47- application . on ( application . resumeEvent , function ( args : application . ApplicationEventData ) {
47+ application . on ( application . resumeEvent , function ( args : application . ApplicationEventData ) {
4848 if ( args . android ) {
4949 // For Android applications, args.android is an android activity class.
5050 console . log ( "#" + ++ countResume + "# ResumeEvent Activity: " + args . android ) ;
@@ -54,7 +54,7 @@ application.on(application.resumeEvent, function(args: application.ApplicationEv
5454 }
5555} ) ;
5656
57- application . on ( application . exitEvent , function ( args : application . ApplicationEventData ) {
57+ application . on ( application . exitEvent , function ( args : application . ApplicationEventData ) {
5858 if ( args . android ) {
5959 // For Android applications, args.android is an android activity class.
6060 console . log ( "### ExitEvent Activity: " + args . android ) ;
@@ -64,7 +64,7 @@ application.on(application.exitEvent, function(args: application.ApplicationEven
6464 }
6565} ) ;
6666
67- application . on ( application . lowMemoryEvent , function ( args : application . ApplicationEventData ) {
67+ application . on ( application . lowMemoryEvent , function ( args : application . ApplicationEventData ) {
6868 if ( args . android ) {
6969 // For Android applications, args.android is an android activity class.
7070 console . log ( "### LowMemoryEvent Activity: " + args . android ) ;
@@ -74,21 +74,23 @@ application.on(application.lowMemoryEvent, function(args: application.Applicatio
7474 }
7575} ) ;
7676
77- application . on ( application . uncaughtErrorEvent , function ( args : application . UnhandledErrorEventData ) {
77+ application . on ( application . uncaughtErrorEvent , function ( args : application . UnhandledErrorEventData ) {
7878 console . log ( "### NativeScriptError: " + args . error ) ;
7979 console . log ( "### nativeException: " + ( < any > args . error ) . nativeException ) ;
8080 console . log ( "### stackTrace: " + ( < any > args . error ) . stackTrace ) ;
8181 console . log ( "### stack: " + args . error . stack ) ;
8282} ) ;
8383
84- application . on ( application . discardedErrorEvent , function ( args : application . DiscardedErrorEventData ) {
84+ application . on ( application . discardedErrorEvent , function ( args : application . DiscardedErrorEventData ) {
8585 console . log ( "### [Discarded] NativeScriptError: " + args . error ) ;
8686 console . log ( "### [Discarded] nativeException: " + ( < any > args . error ) . nativeException ) ;
8787 console . log ( "### [Discarded] stackTrace: " + ( < any > args . error ) . stackTrace ) ;
8888 console . log ( "### [Discarded] stack: " + args . error . stack ) ;
8989} ) ;
9090
9191application . setCssFileName ( "app.css" ) ;
92-
9392application . _start ( { moduleName : "main-page" } ) ;
93+
94+ // TODO: investigate tab-view -> tabviewcss test crash
95+ // TODO: investigate css -> layouts border overlap failure
9496// application.run({ moduleName: "app-root" });
0 commit comments