Skip to content

Commit 5e9d1e9

Browse files
committed
Nativescript 4.0
1 parent 280edba commit 5e9d1e9

File tree

140 files changed

+148
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+148
-66
lines changed

demo-angular/.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/app/**/*.js
2-
/app/App_Resources/Android/**/strings.xml
3-
/app/App_Resources/iOS/**/InfoPlist.strings
4-
/app/App_Resources/iOS/**/Localizable.strings
2+
/app/resources/Android/**/strings.xml
3+
/app/resources/iOS/**/InfoPlist.strings
4+
/app/resources/iOS/**/Localizable.strings
55
/hooks/
66
/node_modules/
77
/platforms/

demo-angular/app/main.aot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { platformNativeScript } from "nativescript-angular/platform-static";
22
import { AppModuleNgFactory } from "./app.module.ngfactory";
33

4-
platformNativeScript().bootstrapModuleFactory(AppModuleNgFactory);
4+
platformNativeScript({ createFrameOnBootstrap: true }).bootstrapModuleFactory(AppModuleNgFactory);

demo-angular/app/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { platformNativeScriptDynamic } from "nativescript-angular/platform";
22
import { AppModule } from "./app.module";
33

4-
platformNativeScriptDynamic().bootstrapModule(AppModule);
4+
platformNativeScriptDynamic({ createFrameOnBootstrap: true }).bootstrapModule(AppModule);

0 commit comments

Comments
 (0)