File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,20 @@ We are using the following import statement for the code samples in this section
3535import * as application from "tns-core-modules/application";
3636```
3737
38+ ` application.mainEntry ` was removed.
39+
40+ ` application.mainModule ` was removed.
41+
42+ Pass ` mainModule ` or ` mainEntry ` to ` application.start ` method.
43+ If you need access to ` mainEntry ` use:
44+ * ` application.getMainEntry(): NavigationEntry `
45+
46+ The string ` mainModule ` is implicitly converted to ` NavigationEntry ` and set to ` mainEntry ` .
47+
48+ ` application.resources ` was removed, use get/set methods:
49+ * ` application.getResources(): any `
50+ * ` application.setResources(res: any) `
51+
3852` application.cssFile ` was removed, use get/set methods:
3953* ` application.getCssFileName(): string `
4054* ` application.setCssFileName(file: string) `
You can’t perform that action at this time.
0 commit comments