Skip to content

Commit f2e6901

Browse files
committed
update demo
1 parent 774e330 commit f2e6901

File tree

16 files changed

+10803
-9504
lines changed

16 files changed

+10803
-9504
lines changed

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ dist/demo*
77
.git*
88
.npmignore
99
node_modules
10-
demo/node_modules
10+
/demo
11+
/tests

demo/.ncurc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
format: 'group',
3+
interactive: true,
4+
reject: [
5+
],
6+
}

demo/angular.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"version": 1,
4-
"defaultProject": "app",
54
"newProjectRoot": "projects",
65
"projects": {
76
"app": {
@@ -73,21 +72,20 @@
7372
"serve": {
7473
"builder": "@angular-devkit/build-angular:dev-server",
7574
"options": {
76-
"browserTarget": "app:build"
75+
"buildTarget": "app:build"
7776
},
7877
"configurations": {
7978
"production": {
80-
"browserTarget": "app:build:production"
79+
"buildTarget": "app:build:production"
8180
},
8281
"ci": {
83-
"progress": false
8482
}
8583
}
8684
},
8785
"extract-i18n": {
8886
"builder": "@angular-devkit/build-angular:extract-i18n",
8987
"options": {
90-
"browserTarget": "app:build"
88+
"buildTarget": "app:build"
9189
}
9290
},
9391
"lint": {
@@ -142,8 +140,7 @@
142140
}
143141
},
144142
"cli": {
145-
"analytics": false,
146-
"defaultCollection": "@ionic/angular-toolkit"
143+
"analytics": false
147144
},
148145
"schematics": {
149146
"@ionic/angular-toolkit:component": {

demo/build.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"ios": {
3+
"debug": {
4+
"codeSignIdentity": "iPhone Developer",
5+
"packageType": "development",
6+
"iCloudContainerEnvironment": "Development",
7+
"automaticProvisioning": true,
8+
"buildFlag": ["-UseModernBuildSystem=0", "-quiet"]
9+
}
10+
}
11+
}

demo/config.xml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
<allow-intent href="sms:*" />
1212
<allow-intent href="mailto:*" />
1313
<allow-intent href="geo:*" />
14-
<preference name="android-minSdkVersion" value="22" />
15-
<preference name="android-targetSdkVersion" value="32" />
1614
<preference name="ScrollEnabled" value="false" />
1715
<preference name="BackupWebStorage" value="none" />
1816
<preference name="SplashMaintainAspectRatio" value="true" />
@@ -71,26 +69,8 @@
7169
<icon height="167" src="resources/ios/icon/[email protected]" width="167" />
7270
<icon height="172" src="resources/ios/icon/[email protected]" width="172" />
7371
<icon height="196" src="resources/ios/icon/[email protected]" width="196" />
72+
<icon height="216" src="resources/ios/icon/[email protected]" width="216" />
7473
<icon height="1024" src="resources/ios/icon/icon-1024.png" width="1024" />
75-
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
76-
<splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" />
77-
<splash height="1024" src="resources/ios/splash/Default-Portrait~ipad.png" width="768" />
78-
<splash height="768" src="resources/ios/splash/Default-Landscape~ipad.png" width="1024" />
79-
<splash height="1125" src="resources/ios/splash/Default-Landscape-2436h.png" width="2436" />
80-
<splash height="1242" src="resources/ios/splash/Default-Landscape-736h.png" width="2208" />
81-
<splash height="2048" src="resources/ios/splash/Default-Portrait@2x~ipad.png" width="1536" />
82-
<splash height="1536" src="resources/ios/splash/Default-Landscape@2x~ipad.png" width="2048" />
83-
<splash height="2732" src="resources/ios/splash/Default-Portrait@~ipadpro.png" width="2048" />
84-
<splash height="2048" src="resources/ios/splash/Default-Landscape@~ipadpro.png" width="2732" />
85-
<splash height="1136" src="resources/ios/splash/Default-568h@2x~iphone.png" width="640" />
86-
<splash height="1334" src="resources/ios/splash/Default-667h.png" width="750" />
87-
<splash height="2208" src="resources/ios/splash/Default-736h.png" width="1242" />
88-
<splash height="2436" src="resources/ios/splash/Default-2436h.png" width="1125" />
8974
<splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" />
90-
<icon height="216" src="resources/ios/icon/[email protected]" width="216" />
91-
<splash height="2688" src="resources/ios/splash/Default-2688h~iphone.png" width="1242" />
92-
<splash height="1242" src="resources/ios/splash/Default-Landscape-2688h~iphone.png" width="2688" />
93-
<splash height="1792" src="resources/ios/splash/Default-1792h~iphone.png" width="828" />
94-
<splash height="828" src="resources/ios/splash/Default-Landscape-1792h~iphone.png" width="1792" />
9575
</platform>
9676
</widget>

0 commit comments

Comments
 (0)