-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsimple-build-ios-and-android-script.html
1364 lines (1364 loc) · 465 KB
/
simple-build-ios-and-android-script.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0016)http://localhost -->
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>移动平台本地库构建系统</title>
<style>
body{
margin: 0;
}
#content-info{
width: auto;
margin: 0 auto;
text-align: center;
}
#author-info{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#title{
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
padding-top: 10px;
margin-bottom: 2px;
font-size: 34px;
color: #505050;
}
.text{
white-space:nowrap;
text-overflow: ellipsis;
display: inline-block;
margin-right: 20px;
margin-bottom: 2px;
font-size: 20px;
color: #8c8c8c;
}
#navBar{
width: auto;
height: auto;
position: fixed;
right:0;
bottom: 0;
background-color: #f0f3f4;
overflow-y: auto;
text-align: center;
}
#svg-container{
width: 100%;
overflow-x: scroll;
min-width: 0px;
margin: 0 10px;
}
#nav-thumbs{
overflow-y: scroll;
padding: 0 5px;
}
.nav-thumb{
position: relative;
margin: 10px auto;
}
.nav-thumb >p{
text-align: center;
font-size: 12px;
margin: 4px 0 0 0;
}
.nav-thumb >div{
position: relative;
display: inline-block;
border: 1px solid #c6cfd5;
}
.nav-thumb img{
display: block;
}
#main-content{
bottom: 0;
left: 0;
right: 0;
background-color: #d0cfd8;
display: flex;
height: auto;
flex-flow: row wrap;
text-align:center;
}
#svg-container >svg{
display: block;
margin:10px auto;
margin-bottom: 0;
}
#copyright{
bottom: 0;
left: 50%;
margin: 5px auto;
font-size: 16px;
color: #515151;
}
#copyright >a{
text-decoration: none;
color: #77C;
}
.number{
position: absolute;
top:0;
left:0;
border-top:22px solid #08a1ef;
border-right: 22px solid transparent;
}
.pagenum{
font-size: 12px;
color: #fff;
position: absolute;
top: -23px;
left: 2px;
}
#navBar::-webkit-scrollbar{
width: 8px;
background-color: #f5f5f5;
}
#navBar::-webkit-scrollbar-track{
-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.3);
border-radius: 8px;
background-color: #fff;
}
#navBar::-webkit-scrollbar-thumb{
border-radius: 8px;
-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.3);
background-color: #6b6b70;
}
#navBar::-webkit-scrollbar-thumb:hover{
background-color: #4a4a4f;
}
</style>
</head>
<body>
<div id="main-area">
<div id="content-info">
<div id="content-info">
<div id="title">移动平台本地库构建系统</div>
</div>
<div id="author-info">
<div class="text" id="author-name">asteriskzuo</div>
<div class="text" id="share-time">2020-05-31</div>
</div>
</div>
<div id="main-content">
<div id="svg-container"><svg preserveAspectRadio="xMinYMin meet" ed:vSpacing="30" xmlns:xlink="http://www.w3.org/1999/xlink" height="1927" xmlns="http://www.w3.org/2000/svg" ed:name="Page-1" viewBox="0 0 1502 1897" width="1502" xmlns:ed="https://www.edrawsoft.cn/xml/2017/SVGExtensions/" id="page1" xmlns:ev="http://www.w3.org/2001/xml-events" ed:hSpacing="30">
<style type="text/css"><![CDATA[
g[ed\:togtopicid],g[ed\:hyperlink],g[ed\:comment],g[ed\:note] {cursor:pointer;}
g[id] {-moz-user-select: none;-ms-user-select: none;user-select: none;}
svg text::selection,svg tspan::selection{background-color: #4285f4;color: #ffffff;fill: #ffffff;}
.st6 {fill:#303030;font-family:Apple LiSung Light;font-size:11.25pt}
.st7 {fill:#454545;font-family:Apple LiSung Light;font-size:9pt}
.st8 {fill:#ff0000;font-family:Apple LiSung Light;font-size:9pt}
.st5 {fill:#ffffff;font-family:Apple LiSung Light;font-size:14.25pt}
]]></style>
<defs>
<linearGradient x2="0%" y2="100%" id="lg2" y1="0%" x1="0%">
<stop stop-color="#ffffff" offset="0"/>
<stop stop-color="#f0f5f0" offset="0.25"/>
<stop stop-color="#e1ebe1" offset="0.75"/>
<stop stop-color="#c8d7c8" offset="1"/>
</linearGradient>
</defs>
<rect height="1927" y="0" x="0" width="1502" fill="#ffffff"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="103" ed:parentid="101" d="M-53.9,226.8C5.3,119.3,-52.9,-255.3,95,-255.3" ed:tosuperid="102" fill="none" transform="matrix(1,0,0,1,245,723)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="105" ed:parentid="101" d="M-49.7,-144.3C1.1,-61.5,-23.7,172.7,95,172.8" ed:tosuperid="104" fill="none" transform="matrix(1,0,0,1,245,1151)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="107" ed:parentid="101" d="M-59.6,-382.5C12.3,-237.6,-73.8,411,95,411" ed:tosuperid="106" fill="none" transform="matrix(1,0,0,1,245,1389)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="109" ed:parentid="106" d="M-13.5,8.4C-0.7,8.4,0.8,-8.4,13.5,-8.4" ed:tosuperid="108" fill="none" transform="matrix(1,0,0,1,468,1792)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="111" ed:parentid="106" d="M-13.5,-5.1C-1.5,-5.1,2.6,5.1,13.5,5.1" ed:tosuperid="110" fill="none" transform="matrix(1,0,0,1,468,1805)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="113" ed:parentid="108" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="112" fill="none" transform="matrix(1,0,0,1,645,1784)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="115" ed:parentid="110" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="114" fill="none" transform="matrix(1,0,0,1,825,1811)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="117" ed:parentid="102" d="M-13.5,198.1C5.4,198.1,-13.5,-198.1,13.5,-198.1" ed:tosuperid="116" fill="none" transform="matrix(1,0,0,1,483,270)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="119" ed:parentid="102" d="M-13.5,137.4C5.4,137.4,-13.5,-137.4,13.5,-137.4" ed:tosuperid="118" fill="none" transform="matrix(1,0,0,1,483,330)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="121" ed:parentid="102" d="M-13.5,-46.6C5.2,-46.6,-13.1,46.6,13.5,46.6" ed:tosuperid="120" fill="none" transform="matrix(1,0,0,1,483,514)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="123" ed:parentid="102" d="M-13.5,-202.6C5.4,-202.6,-13.5,202.6,13.5,202.6" ed:tosuperid="122" fill="none" transform="matrix(1,0,0,1,483,670)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="125" ed:parentid="104" d="M-13.5,95.6C5.4,95.6,-13.5,-95.6,13.5,-95.6" ed:tosuperid="124" fill="none" transform="matrix(1,0,0,1,483,1228)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="127" ed:parentid="124" d="M-13.5,33.8C4,33.8,-10.3,-33.8,13.5,-33.8" ed:tosuperid="126" fill="none" transform="matrix(1,0,0,1,576,1099)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="129" ed:parentid="124" d="M-13.5,20.3C1.8,20.3,-5.1,-20.3,13.5,-20.3" ed:tosuperid="128" fill="none" transform="matrix(1,0,0,1,576,1112)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="133" ed:parentid="124" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="132" fill="none" transform="matrix(1,0,0,1,576,1126)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="135" ed:parentid="126" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="134" fill="none" transform="matrix(1,0,0,1,657,1065)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="137" ed:parentid="128" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="136" fill="none" transform="matrix(1,0,0,1,669,1092)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="139" ed:parentid="132" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="138" fill="none" transform="matrix(1,0,0,1,657,1119)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="141" ed:parentid="104" d="M-13.5,-77.4C5.4,-77.4,-13.5,77.4,13.5,77.4" ed:tosuperid="140" fill="none" transform="matrix(1,0,0,1,483,1401)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="143" ed:parentid="140" d="M-13.5,92C5.4,92,-13.5,-92,13.5,-92" ed:tosuperid="142" fill="none" transform="matrix(1,0,0,1,576,1387)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="145" ed:parentid="140" d="M-13.5,38C4.5,38,-11.5,-38,13.5,-38" ed:tosuperid="144" fill="none" transform="matrix(1,0,0,1,576,1441)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="147" ed:parentid="140" d="M-13.5,-54C5.4,-54,-13.5,54,13.5,54" ed:tosuperid="146" fill="none" transform="matrix(1,0,0,1,576,1533)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="149" ed:parentid="142" d="M-13.5,13.5C0.4,13.5,-1.8,-13.5,13.5,-13.5" ed:tosuperid="148" fill="none" transform="matrix(1,0,0,1,645,1281)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="151" ed:parentid="148" d="M-13.5,20.3C1.8,20.3,-5.1,-20.3,13.5,-20.3" ed:tosuperid="150" fill="none" transform="matrix(1,0,0,1,738,1247)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="153" ed:parentid="148" d="M-13.5,-6.8C-1.1,-6.8,1.7,6.8,13.5,6.8" ed:tosuperid="152" fill="none" transform="matrix(1,0,0,1,738,1274)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="155" ed:parentid="152" d="M-13.5,13.5C0.4,13.5,-1.8,-13.5,13.5,-13.5" ed:tosuperid="154" fill="none" transform="matrix(1,0,0,1,844,1268)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="157" ed:parentid="152" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="156" fill="none" transform="matrix(1,0,0,1,844,1281)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="159" ed:parentid="152" d="M-13.5,-13.5C0.4,-13.5,-1.8,13.5,13.5,13.5" ed:tosuperid="158" fill="none" transform="matrix(1,0,0,1,844,1295)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="161" ed:parentid="142" d="M-13.5,-27C3,-27,-8,27,13.5,27" ed:tosuperid="160" fill="none" transform="matrix(1,0,0,1,645,1322)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="163" ed:parentid="160" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="162" fill="none" transform="matrix(1,0,0,1,738,1342)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="165" ed:parentid="160" d="M-13.5,-6.8C-1.1,-6.8,1.7,6.8,13.5,6.8" ed:tosuperid="164" fill="none" transform="matrix(1,0,0,1,738,1355)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="167" ed:parentid="162" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="166" fill="none" transform="matrix(1,0,0,1,947,1335)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="169" ed:parentid="144" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="168" fill="none" transform="matrix(1,0,0,1,645,1396)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="173" ed:parentid="144" d="M-13.5,-6.8C-1.1,-6.8,1.7,6.8,13.5,6.8" ed:tosuperid="172" fill="none" transform="matrix(1,0,0,1,645,1409)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="175" ed:parentid="146" d="M-13.5,65C5.4,65,-13.5,-65,13.5,-65" ed:tosuperid="174" fill="none" transform="matrix(1,0,0,1,645,1522)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="177" ed:parentid="146" d="M-13.5,17.8C1.3,17.8,-3.9,-17.8,13.5,-17.8" ed:tosuperid="176" fill="none" transform="matrix(1,0,0,1,645,1569)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="179" ed:parentid="146" d="M-13.5,-47.3C5.2,-47.3,-13.1,47.3,13.5,47.3" ed:tosuperid="178" fill="none" transform="matrix(1,0,0,1,645,1634)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="181" ed:parentid="174" d="M-13.5,7.3C-1,7.3,1.4,-7.3,13.5,-7.3" ed:tosuperid="180" fill="none" transform="matrix(1,0,0,1,738,1449)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="183" ed:parentid="174" d="M-13.5,-6.3C-1.2,-6.3,2,6.3,13.5,6.3" ed:tosuperid="182" fill="none" transform="matrix(1,0,0,1,738,1463)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="185" ed:parentid="176" d="M-13.5,27.5C3.1,27.5,-8.2,-27.5,13.5,-27.5" ed:tosuperid="184" fill="none" transform="matrix(1,0,0,1,738,1524)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="187" ed:parentid="176" d="M-13.5,14C0.5,14,-2.1,-14,13.5,-14" ed:tosuperid="186" fill="none" transform="matrix(1,0,0,1,738,1537)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="189" ed:parentid="176" d="M-13.5,0.5C-2.7,0.5,5.4,-0.5,13.5,-0.5" ed:tosuperid="188" fill="none" transform="matrix(1,0,0,1,738,1551)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="191" ed:parentid="176" d="M-13.5,-13C0.3,-13,-1.6,13,13.5,13" ed:tosuperid="190" fill="none" transform="matrix(1,0,0,1,738,1564)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="193" ed:parentid="176" d="M-13.5,-26.5C2.9,-26.5,-7.8,26.5,13.5,26.5" ed:tosuperid="192" fill="none" transform="matrix(1,0,0,1,738,1578)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="195" ed:parentid="180" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="194" fill="none" transform="matrix(1,0,0,1,817,1443)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="197" ed:parentid="182" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="196" fill="none" transform="matrix(1,0,0,1,845,1470)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="199" ed:parentid="184" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="198" fill="none" transform="matrix(1,0,0,1,819,1497)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="201" ed:parentid="186" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="200" fill="none" transform="matrix(1,0,0,1,818,1524)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="203" ed:parentid="188" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="202" fill="none" transform="matrix(1,0,0,1,851,1551)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="205" ed:parentid="190" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="204" fill="none" transform="matrix(1,0,0,1,902,1578)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="207" ed:parentid="192" d="M-13.5,-0.5C-2.7,-0.5,5.4,0.5,13.5,0.5" ed:tosuperid="206" fill="none" transform="matrix(1,0,0,1,874,1605)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="209" ed:parentid="178" d="M-13.5,25.5C2.8,25.5,-7.4,-25.5,13.5,-25.5" ed:tosuperid="208" fill="none" transform="matrix(1,0,0,1,798,1656)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="211" ed:parentid="178" d="M-13.5,13C0.3,13,-1.6,-13,13.5,-13" ed:tosuperid="210" fill="none" transform="matrix(1,0,0,1,798,1668)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="213" ed:parentid="178" d="M-13.5,0.5C-2.7,0.5,5.4,-0.5,13.5,-0.5" ed:tosuperid="212" fill="none" transform="matrix(1,0,0,1,798,1681)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="215" ed:parentid="178" d="M-13.5,-12C0.1,-12,-1.1,12,13.5,12" ed:tosuperid="214" fill="none" transform="matrix(1,0,0,1,798,1693)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="217" ed:parentid="178" d="M-13.5,-24.5C2.6,-24.5,-7,24.5,13.5,24.5" ed:tosuperid="216" fill="none" transform="matrix(1,0,0,1,798,1706)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="219" ed:parentid="104" d="M-13.5,192.9C5.4,192.9,-13.5,-192.9,13.5,-192.9" ed:tosuperid="218" fill="none" transform="matrix(1,0,0,1,483,1131)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="221" ed:parentid="218" d="M-13.5,0.5C-2.7,0.5,5.4,-0.5,13.5,-0.5" ed:tosuperid="220" fill="none" transform="matrix(1,0,0,1,576,938)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="223" ed:parentid="104" d="M-13.5,173.6C5.4,173.6,-13.5,-173.6,13.5,-173.6" ed:tosuperid="222" fill="none" transform="matrix(1,0,0,1,483,1150)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="225" ed:parentid="222" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="224" fill="none" transform="matrix(1,0,0,1,576,970)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="227" ed:parentid="222" d="M-13.5,-5.8C-1.4,-5.8,2.3,5.8,13.5,5.8" ed:tosuperid="226" fill="none" transform="matrix(1,0,0,1,576,982)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="233" ed:parentid="226" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="232" fill="none" transform="matrix(1,0,0,1,653,988)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="235" ed:parentid="104" d="M-13.5,148.6C5.4,148.6,-13.5,-148.6,13.5,-148.6" ed:tosuperid="234" fill="none" transform="matrix(1,0,0,1,483,1175)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="237" ed:parentid="234" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="236" fill="none" transform="matrix(1,0,0,1,576,1020)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="239" ed:parentid="234" d="M-13.5,-5.8C-1.4,-5.8,2.3,5.8,13.5,5.8" ed:tosuperid="238" fill="none" transform="matrix(1,0,0,1,576,1032)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="241" ed:parentid="124" d="M-13.5,-13.5C0.4,-13.5,-1.8,13.5,13.5,13.5" ed:tosuperid="240" fill="none" transform="matrix(1,0,0,1,576,1146)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="245" ed:parentid="240" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="244" fill="none" transform="matrix(1,0,0,1,669,1160)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="247" ed:parentid="106" d="M-13.5,-18.6C1.5,-18.6,-4.3,18.6,13.5,18.6" ed:tosuperid="246" fill="none" transform="matrix(1,0,0,1,468,1819)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="249" ed:parentid="246" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="248" fill="none" transform="matrix(1,0,0,1,693,1838)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="251" ed:parentid="102" d="M-13.5,184.6C5.4,184.6,-13.5,-184.6,13.5,-184.6" ed:tosuperid="250" fill="none" transform="matrix(1,0,0,1,483,283)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="253" ed:parentid="124" d="M-13.5,-33.8C4,-33.8,-10.3,33.8,13.5,33.8" ed:tosuperid="252" fill="none" transform="matrix(1,0,0,1,576,1166)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="259" ed:parentid="244" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="258" fill="none" transform="matrix(1,0,0,1,834,1153)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="261" ed:parentid="244" d="M-13.5,-6.8C-1.1,-6.8,1.7,6.8,13.5,6.8" ed:tosuperid="260" fill="none" transform="matrix(1,0,0,1,834,1166)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="263" ed:parentid="260" d="M-13.5,0.5C-2.7,0.5,5.4,-0.5,13.5,-0.5" ed:tosuperid="262" fill="none" transform="matrix(1,0,0,1,951,1173)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="265" ed:parentid="252" d="M-13.5,0.5C-2.7,0.5,5.4,-0.5,13.5,-0.5" ed:tosuperid="264" fill="none" transform="matrix(1,0,0,1,700,1200)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="271" ed:parentid="116" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="270" fill="none" transform="matrix(1,0,0,1,552,72)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="275" ed:parentid="250" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="274" fill="none" transform="matrix(1,0,0,1,576,99)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="277" ed:parentid="118" d="M-13.5,33.8C4,33.8,-10.3,-33.8,13.5,-33.8" ed:tosuperid="276" fill="none" transform="matrix(1,0,0,1,576,159)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="279" ed:parentid="118" d="M-13.5,20.3C1.8,20.3,-5.1,-20.3,13.5,-20.3" ed:tosuperid="278" fill="none" transform="matrix(1,0,0,1,576,173)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="281" ed:parentid="118" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="280" fill="none" transform="matrix(1,0,0,1,576,186)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="283" ed:parentid="118" d="M-13.5,-20.3C1.8,-20.3,-5.1,20.3,13.5,20.3" ed:tosuperid="282" fill="none" transform="matrix(1,0,0,1,576,213)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="285" ed:parentid="282" d="M-13.5,13.5C0.4,13.5,-1.8,-13.5,13.5,-13.5" ed:tosuperid="284" fill="none" transform="matrix(1,0,0,1,669,220)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="287" ed:parentid="282" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="286" fill="none" transform="matrix(1,0,0,1,669,234)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="291" ed:parentid="282" d="M-13.5,-13.5C0.4,-13.5,-1.8,13.5,13.5,13.5" ed:tosuperid="290" fill="none" transform="matrix(1,0,0,1,669,247)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="293" ed:parentid="290" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="292" fill="none" transform="matrix(1,0,0,1,846,261)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="297" ed:parentid="286" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="296" fill="none" transform="matrix(1,0,0,1,858,234)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="299" ed:parentid="284" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="298" fill="none" transform="matrix(1,0,0,1,834,207)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="301" ed:parentid="120" d="M-13.5,136.8C5.4,136.8,-13.5,-136.8,13.5,-136.8" ed:tosuperid="300" fill="none" transform="matrix(1,0,0,1,576,424)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="303" ed:parentid="120" d="M-13.5,123.3C5.4,123.3,-13.5,-123.3,13.5,-123.3" ed:tosuperid="302" fill="none" transform="matrix(1,0,0,1,576,438)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="305" ed:parentid="120" d="M-13.5,-13.5C0.4,-13.5,-1.8,13.5,13.5,13.5" ed:tosuperid="304" fill="none" transform="matrix(1,0,0,1,576,575)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="307" ed:parentid="304" d="M-13.5,105C5.4,105,-13.5,-105,13.5,-105" ed:tosuperid="306" fill="none" transform="matrix(1,0,0,1,741,483)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="309" ed:parentid="122" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="308" fill="none" transform="matrix(1,0,0,1,576,866)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="311" ed:parentid="122" d="M-13.5,-5.8C-1.4,-5.8,2.3,5.8,13.5,5.8" ed:tosuperid="310" fill="none" transform="matrix(1,0,0,1,576,879)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="313" ed:parentid="304" d="M-13.5,73.3C5.4,73.3,-13.5,-73.3,13.5,-73.3" ed:tosuperid="312" fill="none" transform="matrix(1,0,0,1,741,515)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="315" ed:parentid="304" d="M-13.5,-31.8C3.8,-31.8,-9.7,31.8,13.5,31.8" ed:tosuperid="314" fill="none" transform="matrix(1,0,0,1,741,620)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="317" ed:parentid="306" d="M-13.5,19.3C1.6,19.3,-4.6,-19.3,13.5,-19.3" ed:tosuperid="316" fill="none" transform="matrix(1,0,0,1,834,359)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="321" ed:parentid="306" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="320" fill="none" transform="matrix(1,0,0,1,834,371)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="323" ed:parentid="306" d="M-13.5,-5.8C-1.4,-5.8,2.3,5.8,13.5,5.8" ed:tosuperid="322" fill="none" transform="matrix(1,0,0,1,834,384)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="325" ed:parentid="306" d="M-13.5,-18.3C1.4,-18.3,-4.2,18.3,13.5,18.3" ed:tosuperid="324" fill="none" transform="matrix(1,0,0,1,834,396)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="327" ed:parentid="312" d="M-13.5,0.5C-2.7,0.5,5.4,-0.5,13.5,-0.5" ed:tosuperid="326" fill="none" transform="matrix(1,0,0,1,834,441)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="329" ed:parentid="314" d="M-13.5,-60.8C5.4,-60.8,-13.5,60.8,13.5,60.8" ed:tosuperid="328" fill="none" transform="matrix(1,0,0,1,822,712)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="331" ed:parentid="314" d="M-13.5,37.5C4.5,37.5,-11.4,-37.5,13.5,-37.5" ed:tosuperid="330" fill="none" transform="matrix(1,0,0,1,822,614)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="333" ed:parentid="328" d="M-13.5,31.8C3.8,31.8,-9.7,-31.8,13.5,-31.8" ed:tosuperid="332" fill="none" transform="matrix(1,0,0,1,915,741)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="335" ed:parentid="332" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="334" fill="none" transform="matrix(1,0,0,1,1395,710)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="337" ed:parentid="328" d="M-13.5,19.3C1.6,19.3,-4.6,-19.3,13.5,-19.3" ed:tosuperid="336" fill="none" transform="matrix(1,0,0,1,915,754)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="339" ed:parentid="328" d="M-13.5,6.8C-1.1,6.8,1.7,-6.8,13.5,-6.8" ed:tosuperid="338" fill="none" transform="matrix(1,0,0,1,915,766)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="341" ed:parentid="328" d="M-13.5,-5.8C-1.4,-5.8,2.3,5.8,13.5,5.8" ed:tosuperid="340" fill="none" transform="matrix(1,0,0,1,915,779)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="343" ed:parentid="328" d="M-13.5,-18.3C1.4,-18.3,-4.2,18.3,13.5,18.3" ed:tosuperid="342" fill="none" transform="matrix(1,0,0,1,915,791)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="345" ed:parentid="328" d="M-13.5,-30.8C3.6,-30.8,-9.3,30.8,13.5,30.8" ed:tosuperid="344" fill="none" transform="matrix(1,0,0,1,915,804)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="347" ed:parentid="336" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="346" fill="none" transform="matrix(1,0,0,1,1399,735)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="349" ed:parentid="338" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="348" fill="none" transform="matrix(1,0,0,1,1417,760)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="351" ed:parentid="340" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="350" fill="none" transform="matrix(1,0,0,1,1380,785)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="353" ed:parentid="342" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="352" fill="none" transform="matrix(1,0,0,1,1420,810)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="355" ed:parentid="344" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="354" fill="none" transform="matrix(1,0,0,1,1353,835)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="357" ed:parentid="330" d="M-13.5,54C5.4,54,-13.5,-54,13.5,-54" ed:tosuperid="356" fill="none" transform="matrix(1,0,0,1,891,523)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="359" ed:parentid="330" d="M-13.5,27C3,27,-8,-27,13.5,-27" ed:tosuperid="358" fill="none" transform="matrix(1,0,0,1,891,550)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="361" ed:parentid="330" d="M-13.5,13.5C0.4,13.5,-1.8,-13.5,13.5,-13.5" ed:tosuperid="360" fill="none" transform="matrix(1,0,0,1,891,563)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="363" ed:parentid="330" d="M-13.5,0C-2.7,0,5.4,0,13.5,0" ed:tosuperid="362" fill="none" transform="matrix(1,0,0,1,891,577)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="365" ed:parentid="330" d="M-13.5,-13.5C0.4,-13.5,-1.8,13.5,13.5,13.5" ed:tosuperid="364" fill="none" transform="matrix(1,0,0,1,891,590)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="367" ed:parentid="330" d="M-13.5,-27C3,-27,-8,27,13.5,27" ed:tosuperid="366" fill="none" transform="matrix(1,0,0,1,891,604)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="369" ed:parentid="330" d="M-13.5,-40.5C4.8,-40.5,-12.1,40.5,13.5,40.5" ed:tosuperid="368" fill="none" transform="matrix(1,0,0,1,891,617)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="371" ed:parentid="330" d="M-13.5,-54C5.4,-54,-13.5,54,13.5,54" ed:tosuperid="370" fill="none" transform="matrix(1,0,0,1,891,631)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="373" ed:parentid="330" d="M-13.5,40.5C4.8,40.5,-12.1,-40.5,13.5,-40.5" ed:tosuperid="372" fill="none" transform="matrix(1,0,0,1,891,536)"/>
<path stroke-linejoin="round" stroke-linecap="round" stroke="#696969" id="377" ed:parentid="101" d="M-61,-426.4C13.4,-272.2,-74.9,454.9,95,454.9" ed:tosuperid="376" fill="none" transform="matrix(1,0,0,1,245,1433)"/>
<g id="101" ed:width="254" ed:topictype="mainidea" ed:height="57" ed:layout="rightmap" transform="matrix(1,0,0,1,23,950)">
<path stroke-linejoin="round" stroke="#435fbc" stroke-width="3" d="M4,0L250,0C252.7,0,254,1.3,254,4L254,53C254,55.7,252.7,57,250,57L4,57C1.3,57,0,55.7,0,53L0,4C0,1.3,1.3,0,4,0z" fill="#435fbc"/>
<text class="st5">
<tspan y="37" x="22" style="white-space:pre">移动平台本地库构建系统</tspan>
</text>
</g>
<g id="102" ed:parentid="101" ed:width="129" ed:height="35" transform="matrix(1,0,0,1,340,450)">
<path stroke-linejoin="round" stroke="#ebecf3" d="M4,0L125,0C127.7,0,129,1.3,129,4L129,31C129,33.7,127.7,35,125,35L4,35C1.3,35,0,33.7,0,31L0,4C0,1.3,1.3,0,4,0z" fill="#ebecf3"/>
<text class="st6">
<tspan y="24" x="18" style="white-space:pre">说明文档部分</tspan>
</text>
</g>
<g id="104" ed:parentid="101" ed:width="129" ed:height="35" transform="matrix(1,0,0,1,340,1306)">
<path stroke-linejoin="round" stroke="#ebecf3" d="M4,0L125,0C127.7,0,129,1.3,129,4L129,31C129,33.7,127.7,35,125,35L4,35C1.3,35,0,33.7,0,31L0,4C0,1.3,1.3,0,4,0z" fill="#ebecf3"/>
<text class="st6">
<tspan y="24" x="18" style="white-space:pre">架构设计部分</tspan>
</text>
</g>
<g id="106" ed:parentid="101" ed:width="114" ed:height="35" transform="matrix(1,0,0,1,340,1783)">
<path stroke-linejoin="round" stroke="#ebecf3" d="M4,0L110,0C112.7,0,114,1.3,114,4L114,31C114,33.7,112.7,35,110,35L4,35C1.3,35,0,33.7,0,31L0,4C0,1.3,1.3,0,4,0z" fill="#ebecf3"/>
<text class="st6">
<tspan y="24" x="18" style="white-space:pre">待解决问题</tspan>
</text>
</g>
<g id="108" ed:parentid="106" ed:width="150" ed:height="20.5" transform="matrix(1,0,0,1,481,1763)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L150,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">仅支持当前列表项目构建</tspan>
</text>
</g>
<g id="110" ed:parentid="106" ed:width="330" ed:height="20.5" transform="matrix(1,0,0,1,481,1790)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L330,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">项目制定版本可以构建,但是对于低版本可能无法正常构建</tspan>
</text>
</g>
<g id="112" ed:parentid="108" ed:width="162" ed:height="20.5" transform="matrix(1,0,0,1,658,1763)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L162,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">通过自行扩展插件进行构建</tspan>
</text>
</g>
<g id="114" ed:parentid="110" ed:width="205.15625" ed:height="20.5" transform="matrix(1,0,0,1,838,1790)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L205.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">通过对源码进行重新configure实现</tspan>
</text>
</g>
<g id="116" ed:parentid="102" ed:width="42" ed:height="20.5" transform="matrix(1,0,0,1,496,51)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L42,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">介绍</tspan>
</text>
</g>
<g id="118" ed:parentid="102" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,173)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">使用说明</tspan>
</text>
</g>
<g id="120" ed:parentid="102" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,541)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">扩展说明</tspan>
</text>
</g>
<g id="122" ed:parentid="102" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,853)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">贡献说明</tspan>
</text>
</g>
<g id="124" ed:parentid="104" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,1112)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">核心思想</tspan>
</text>
</g>
<g id="126" ed:parentid="124" ed:width="54" ed:height="20.5" transform="matrix(1,0,0,1,589,1045)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L54,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">插件式</tspan>
</text>
</g>
<g id="128" ed:parentid="124" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,589,1072)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">动态调用</tspan>
</text>
</g>
<g id="132" ed:parentid="124" ed:width="54" ed:height="20.5" transform="matrix(1,0,0,1,589,1099)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L54,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">高复用</tspan>
</text>
</g>
<g id="134" ed:parentid="126" ed:width="294" ed:height="20.5" transform="matrix(1,0,0,1,670,1045)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L294,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">只要编写对应子脚本,添加参数,就可以构建目标库</tspan>
</text>
</g>
<g id="136" ed:parentid="128" ed:width="105.359375" ed:height="20.5" transform="matrix(1,0,0,1,682,1072)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L105.4,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">类C++多态特性</tspan>
</text>
</g>
<g id="138" ed:parentid="132" ed:width="198" ed:height="20.5" transform="matrix(1,0,0,1,670,1099)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L198,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">全部代码块使用方法(函数)封装</tspan>
</text>
</g>
<g id="140" ed:parentid="104" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,1458)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">项目结构</tspan>
</text>
</g>
<g id="142" ed:parentid="140" ed:width="42" ed:height="20.5" transform="matrix(1,0,0,1,589,1274)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L42,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">输入</tspan>
</text>
</g>
<g id="144" ed:parentid="140" ed:width="42" ed:height="20.5" transform="matrix(1,0,0,1,589,1382)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L42,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">输出</tspan>
</text>
</g>
<g id="146" ed:parentid="140" ed:width="42" ed:height="20.5" transform="matrix(1,0,0,1,589,1566)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L42,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">脚本</tspan>
</text>
</g>
<g id="148" ed:parentid="142" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,658,1247)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">源码目录</tspan>
</text>
</g>
<g id="150" ed:parentid="148" ed:width="91.84375" ed:height="20.5" transform="matrix(1,0,0,1,751,1207)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L91.8,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">通常GNU项目</tspan>
</text>
</g>
<g id="152" ed:parentid="148" ed:width="79.640625" ed:height="20.5" transform="matrix(1,0,0,1,751,1261)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L79.6,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">cmake项目</tspan>
</text>
</g>
<g id="154" ed:parentid="152" ed:width="102" ed:height="20.5" transform="matrix(1,0,0,1,858,1234)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L102,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">不需要构建脚本</tspan>
</text>
</g>
<g id="156" ed:parentid="152" ed:width="181.234375" ed:height="20.5" transform="matrix(1,0,0,1,858,1261)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L181.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">iOS可以直接生成项目操作源码</tspan>
</text>
</g>
<g id="158" ed:parentid="152" ed:width="150.171875" ed:height="20.5" transform="matrix(1,0,0,1,858,1288)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L150.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">Android直接支持cmake</tspan>
</text>
</g>
<g id="160" ed:parentid="142" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,658,1328)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">构建工具</tspan>
</text>
</g>
<g id="162" ed:parentid="160" ed:width="182.890625" ed:height="20.5" transform="matrix(1,0,0,1,751,1315)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L182.9,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">例如android平台的独立工具链</tspan>
</text>
</g>
<g id="164" ed:parentid="160" ed:width="125.09375" ed:height="20.5" transform="matrix(1,0,0,1,751,1342)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L125.1,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">Mac平台独立工具链</tspan>
</text>
</g>
<g id="166" ed:parentid="162" ed:width="114" ed:height="20.5" transform="matrix(1,0,0,1,961,1315)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L114,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">目前官方已经废弃</tspan>
</text>
</g>
<g id="168" ed:parentid="144" ed:width="114" ed:height="20.5" transform="matrix(1,0,0,1,658,1369)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L114,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">缓存临时中间文件</tspan>
</text>
</g>
<g id="172" ed:parentid="144" ed:width="78" ed:height="20.5" transform="matrix(1,0,0,1,658,1396)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L78,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">构建库产品</tspan>
</text>
</g>
<g id="174" ed:parentid="146" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,658,1436)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">入口脚本</tspan>
</text>
</g>
<g id="176" ed:parentid="146" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,658,1531)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">工具脚本</tspan>
</text>
</g>
<g id="178" ed:parentid="146" ed:width="126" ed:height="20.5" transform="matrix(1,0,0,1,658,1661)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L126,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">子脚本(插件脚本)</tspan>
</text>
</g>
<g id="180" ed:parentid="174" ed:width="52.28125" ed:height="18.5" transform="matrix(1,0,0,1,751,1424)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L52.3,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">ios.sh</tspan>
</text>
</g>
<g id="182" ed:parentid="174" ed:width="80.234375" ed:height="18.5" transform="matrix(1,0,0,1,751,1451)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L80.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">android.sh</tspan>
</text>
</g>
<g id="184" ed:parentid="176" ed:width="54.203125" ed:height="18.5" transform="matrix(1,0,0,1,751,1478)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L54.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">util.sh</tspan>
</text>
</g>
<g id="186" ed:parentid="176" ed:width="53.640625" ed:height="18.5" transform="matrix(1,0,0,1,751,1505)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L53.6,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">log.sh</tspan>
</text>
</g>
<g id="188" ed:parentid="176" ed:width="86.046875" ed:height="18.5" transform="matrix(1,0,0,1,751,1532)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L86,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">common.sh</tspan>
</text>
</g>
<g id="190" ed:parentid="176" ed:width="137.875" ed:height="18.5" transform="matrix(1,0,0,1,751,1559)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L137.9,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">android-common.sh</tspan>
</text>
</g>
<g id="192" ed:parentid="176" ed:width="109.921875" ed:height="18.5" transform="matrix(1,0,0,1,751,1586)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L109.9,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">ios-common.sh</tspan>
</text>
</g>
<g id="194" ed:parentid="180" ed:width="109.234375" ed:height="20.5" transform="matrix(1,0,0,1,830,1423)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L109.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">iOS平台入口脚本</tspan>
</text>
</g>
<g id="196" ed:parentid="182" ed:width="134.890625" ed:height="20.5" transform="matrix(1,0,0,1,858,1450)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L134.9,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">android平台入口脚本</tspan>
</text>
</g>
<g id="198" ed:parentid="184" ed:width="114" ed:height="20.5" transform="matrix(1,0,0,1,832,1477)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L114,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">提供各类基础功能</tspan>
</text>
</g>
<g id="200" ed:parentid="186" ed:width="114" ed:height="20.5" transform="matrix(1,0,0,1,832,1504)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L114,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">提供日志输出打印</tspan>
</text>
</g>
<g id="202" ed:parentid="188" ed:width="167.765625" ed:height="20.5" transform="matrix(1,0,0,1,864,1531)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L167.8,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">iOS和Android平台通用功能</tspan>
</text>
</g>
<g id="204" ed:parentid="190" ed:width="112.53125" ed:height="20.5" transform="matrix(1,0,0,1,916,1558)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L112.5,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">Android平台功能</tspan>
</text>
</g>
<g id="206" ed:parentid="192" ed:width="85.234375" ed:height="20.5" transform="matrix(1,0,0,1,888,1585)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L85.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">iOS平台功能</tspan>
</text>
</g>
<g id="208" ed:parentid="178" ed:width="62.703125" ed:height="18.5" transform="matrix(1,0,0,1,811,1612)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L62.7,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">openssl</tspan>
</text>
</g>
<g id="210" ed:parentid="178" ed:width="64.4375" ed:height="18.5" transform="matrix(1,0,0,1,811,1637)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L64.4,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">nghttp2</tspan>
</text>
</g>
<g id="212" ed:parentid="178" ed:width="39.953125" ed:height="18.5" transform="matrix(1,0,0,1,811,1662)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L40,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">curl</tspan>
</text>
</g>
<g id="214" ed:parentid="178" ed:width="69.390625" ed:height="18.5" transform="matrix(1,0,0,1,811,1687)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L69.4,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">protobuf</tspan>
</text>
</g>
<g id="216" ed:parentid="178" ed:width="29.390625" ed:height="18.5" transform="matrix(1,0,0,1,811,1712)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L29.4,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">...</tspan>
</text>
</g>
<g id="218" ed:parentid="104" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,918)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">编程语言</tspan>
</text>
</g>
<g id="220" ed:parentid="218" ed:width="76.671875" ed:height="18.5" transform="matrix(1,0,0,1,589,919)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L76.7,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">bash shell</tspan>
</text>
</g>
<g id="222" ed:parentid="104" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,956)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">构建平台</tspan>
</text>
</g>
<g id="224" ed:parentid="222" ed:width="56.859375" ed:height="18.5" transform="matrix(1,0,0,1,589,945)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L56.9,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">MacOS</tspan>
</text>
</g>
<g id="226" ed:parentid="222" ed:width="50.09375" ed:height="18.5" transform="matrix(1,0,0,1,589,970)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L50.1,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">Linux</tspan>
</text>
</g>
<g id="232" ed:parentid="226" ed:width="53.1875" ed:height="18.5" transform="matrix(1,0,0,1,666,970)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L53.2,18.5" fill="none"/>
<text class="st8">
<tspan y="12.7" x="8" style="white-space:pre">TODO</tspan>
</text>
</g>
<g id="234" ed:parentid="104" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,1006)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">目标平台</tspan>
</text>
</g>
<g id="236" ed:parentid="234" ed:width="37.234375" ed:height="18.5" transform="matrix(1,0,0,1,589,995)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L37.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">iOS</tspan>
</text>
</g>
<g id="238" ed:parentid="234" ed:width="64.53125" ed:height="18.5" transform="matrix(1,0,0,1,589,1020)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L64.5,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">Android</tspan>
</text>
</g>
<g id="240" ed:parentid="124" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,589,1139)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">依赖检测</tspan>
</text>
</g>
<g id="244" ed:parentid="240" ed:width="138" ed:height="20.5" transform="matrix(1,0,0,1,682,1139)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L138,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">构建目标库的依赖检测</tspan>
</text>
</g>
<g id="246" ed:parentid="106" ed:width="198" ed:height="20.5" transform="matrix(1,0,0,1,481,1817)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L198,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">构建目标项目的依赖需要手动构建</tspan>
</text>
</g>
<g id="248" ed:parentid="246" ed:width="162" ed:height="20.5" transform="matrix(1,0,0,1,706,1817)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L162,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">以后将使用自动化构建实现</tspan>
</text>
</g>
<g id="250" ed:parentid="102" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,496,78)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">目标用户</tspan>
</text>
</g>
<g id="252" ed:parentid="124" ed:width="97.15625" ed:height="20.5" transform="matrix(1,0,0,1,589,1180)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L97.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">重构configure</tspan>
</text>
</g>
<g id="258" ed:parentid="244" ed:width="90" ed:height="20.5" transform="matrix(1,0,0,1,847,1126)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L90,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">手动依赖构建</tspan>
</text>
</g>
<g id="260" ed:parentid="244" ed:width="90" ed:height="20.5" transform="matrix(1,0,0,1,847,1153)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L90,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">自动依赖构建</tspan>
</text>
</g>
<g id="262" ed:parentid="260" ed:width="53.1875" ed:height="18.5" transform="matrix(1,0,0,1,964,1154)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L53.2,18.5" fill="none"/>
<text class="st8">
<tspan y="12.7" x="8" style="white-space:pre">TODO</tspan>
</text>
</g>
<g id="264" ed:parentid="252" ed:width="53.1875" ed:height="18.5" transform="matrix(1,0,0,1,713,1181)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L53.2,18.5" fill="none"/>
<text class="st8">
<tspan y="12.7" x="8" style="white-space:pre">TODO</tspan>
</text>
</g>
<g id="270" ed:parentid="116" ed:width="174" ed:height="20.5" transform="matrix(1,0,0,1,565,51)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L174,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">构建移动端本地库的通用项目</tspan>
</text>
</g>
<g id="274" ed:parentid="250" ed:width="154.375" ed:height="20.5" transform="matrix(1,0,0,1,589,78)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L154.4,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">需要移动端的C&&C++库</tspan>
</text>
</g>
<g id="276" ed:parentid="118" ed:width="150" ed:height="20.5" transform="matrix(1,0,0,1,589,105)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L150,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">使用入口脚本构建目标库</tspan>
</text>
</g>
<g id="278" ed:parentid="118" ed:width="155.515625" ed:height="20.5" transform="matrix(1,0,0,1,589,132)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L155.5,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">ios.sh为iOS平台入口脚本</tspan>
</text>
</g>
<g id="280" ed:parentid="118" ed:width="210.765625" ed:height="20.5" transform="matrix(1,0,0,1,589,159)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L210.8,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">android.sh为Android平台入口脚本</tspan>
</text>
</g>
<g id="282" ed:parentid="118" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,589,213)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">高级使用</tspan>
</text>
</g>
<g id="284" ed:parentid="282" ed:width="138" ed:height="20.5" transform="matrix(1,0,0,1,682,186)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L138,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">系统默认目标库的版本</tspan>
</text>
</g>
<g id="286" ed:parentid="282" ed:width="162" ed:height="20.5" transform="matrix(1,0,0,1,682,213)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L162,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">使用比默认版本更高的版本</tspan>
</text>
</g>
<g id="290" ed:parentid="282" ed:width="150" ed:height="20.5" transform="matrix(1,0,0,1,682,240)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L150,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">使用比默认版本低的版本</tspan>
</text>
</g>
<g id="292" ed:parentid="290" ed:width="114" ed:height="20.5" transform="matrix(1,0,0,1,859,240)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L114,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">可能无法编译通过</tspan>
</text>
</g>
<g id="296" ed:parentid="286" ed:width="90" ed:height="20.5" transform="matrix(1,0,0,1,871,213)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L90,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">一般编译通过</tspan>
</text>
</g>
<g id="298" ed:parentid="284" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,847,186)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">经过测试</tspan>
</text>
</g>
<g id="300" ed:parentid="120" ed:width="294" ed:height="20.5" transform="matrix(1,0,0,1,589,267)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L294,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">添加子脚本需要有一定的脚本编写和项目构建经验。</tspan>
</text>
</g>
<g id="302" ed:parentid="120" ed:width="246" ed:height="20.5" transform="matrix(1,0,0,1,589,294)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L246,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">添加子脚本一般可以成为该项目的贡献者。</tspan>
</text>
</g>
<g id="304" ed:parentid="120" ed:width="138" ed:height="20.5" transform="matrix(1,0,0,1,589,568)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L138,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">添加目标库子脚本说明</tspan>
</text>
</g>
<g id="306" ed:parentid="304" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,754,358)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">更新参数</tspan>
</text>
</g>
<g id="308" ed:parentid="122" ed:width="85.046875" ed:height="18.5" transform="matrix(1,0,0,1,589,841)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L85,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">asteriskzuo</tspan>
</text>
</g>
<g id="310" ed:parentid="122" ed:width="29.390625" ed:height="18.5" transform="matrix(1,0,0,1,589,866)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L29.4,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">...</tspan>
</text>
</g>
<g id="312" ed:parentid="304" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,754,421)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">更新方法</tspan>
</text>
</g>
<g id="314" ed:parentid="304" ed:width="54" ed:height="20.5" transform="matrix(1,0,0,1,754,631)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L54,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">子脚本</tspan>
</text>
</g>
<g id="316" ed:parentid="306" ed:width="176.375" ed:height="18.5" transform="matrix(1,0,0,1,847,321)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L176.4,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">COMMON_LIBRARY_ID_LIST</tspan>
</text>
</g>
<g id="320" ed:parentid="306" ed:width="197.890625" ed:height="18.5" transform="matrix(1,0,0,1,847,346)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L197.9,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">COMMON_LIBRARY_NAME_LIST</tspan>
</text>
</g>
<g id="322" ed:parentid="306" ed:width="213.9375" ed:height="18.5" transform="matrix(1,0,0,1,847,371)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L213.9,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">COMMON_LIBRARY_VERSION_LIST</tspan>
</text>
</g>
<g id="324" ed:parentid="306" ed:width="186.21875" ed:height="18.5" transform="matrix(1,0,0,1,847,396)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L186.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">COMMON_LIBRARY_URL_LIST</tspan>
</text>
</g>
<g id="326" ed:parentid="312" ed:width="225.34375" ed:height="18.5" transform="matrix(1,0,0,1,847,422)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L225.3,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">common_get_library_id_from_name</tspan>
</text>
</g>
<g id="328" ed:parentid="314" ed:width="66" ed:height="20.5" transform="matrix(1,0,0,1,835,753)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L66,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">实现方法</tspan>
</text>
</g>
<g id="330" ed:parentid="314" ed:width="42" ed:height="20.5" transform="matrix(1,0,0,1,835,556)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L42,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">约定</tspan>
</text>
</g>
<g id="332" ed:parentid="328" ed:width="453.609375" ed:height="18.5" transform="matrix(1,0,0,1,928,691)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L453.6,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">${COMMON_PLATFORM_TYPE}_${COMMON_LIBRARY_NAME}_printf_variable</tspan>
</text>
</g>
<g id="334" ed:parentid="332" ed:width="65.75" ed:height="18.5" transform="matrix(1,0,0,1,1409,691)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L65.8,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">optional</tspan>
</text>
</g>
<g id="336" ed:parentid="328" ed:width="457.03125" ed:height="18.5" transform="matrix(1,0,0,1,928,716)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L457,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">${COMMON_PLATFORM_TYPE}_${COMMON_LIBRARY_NAME}_pre_tool_check</tspan>
</text>
</g>
<g id="338" ed:parentid="328" ed:width="475.4375" ed:height="18.5" transform="matrix(1,0,0,1,928,741)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L475.4,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">${COMMON_PLATFORM_TYPE}_${COMMON_LIBRARY_NAME}_pre_download_zip</tspan>
</text>
</g>
<g id="340" ed:parentid="328" ed:width="438.078125" ed:height="18.5" transform="matrix(1,0,0,1,928,766)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L438.1,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">${COMMON_PLATFORM_TYPE}_${COMMON_LIBRARY_NAME}_build_unzip</tspan>
</text>
</g>
<g id="342" ed:parentid="328" ed:width="478.953125" ed:height="18.5" transform="matrix(1,0,0,1,928,791)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L479,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">${COMMON_PLATFORM_TYPE}_${COMMON_LIBRARY_NAME}_build_config_make</tspan>
</text>
</g>
<g id="344" ed:parentid="328" ed:width="411.296875" ed:height="18.5" transform="matrix(1,0,0,1,928,816)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L411.3,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">${COMMON_PLATFORM_TYPE}_${COMMON_LIBRARY_NAME}_archive</tspan>
</text>
</g>
<g id="346" ed:parentid="336" ed:width="47.234375" ed:height="18.5" transform="matrix(1,0,0,1,1412,716)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L47.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">must</tspan>
</text>
</g>
<g id="348" ed:parentid="338" ed:width="47.234375" ed:height="18.5" transform="matrix(1,0,0,1,1430,741)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L47.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">must</tspan>
</text>
</g>
<g id="350" ed:parentid="340" ed:width="47.234375" ed:height="18.5" transform="matrix(1,0,0,1,1393,766)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L47.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">must</tspan>
</text>
</g>
<g id="352" ed:parentid="342" ed:width="47.234375" ed:height="18.5" transform="matrix(1,0,0,1,1434,791)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L47.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">must</tspan>
</text>
</g>
<g id="354" ed:parentid="344" ed:width="47.234375" ed:height="18.5" transform="matrix(1,0,0,1,1366,816)">
<path stroke-linejoin="round" stroke="#696969" d="M0,18.5L47.2,18.5" fill="none"/>
<text class="st7">
<tspan y="12.7" x="8" style="white-space:pre">must</tspan>
</text>
</g>
<g id="356" ed:parentid="330" ed:width="246.171875" ed:height="20.5" transform="matrix(1,0,0,1,904,448)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L246.2,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">脚本方法或者函数需要使用关键字function</tspan>
</text>
</g>
<g id="358" ed:parentid="330" ed:width="273.0625" ed:height="20.5" transform="matrix(1,0,0,1,904,502)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L273.1,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">脚本方法或者函数内部本地变量使用关键字local</tspan>
</text>
</g>
<g id="360" ed:parentid="330" ed:width="274.75" ed:height="20.5" transform="matrix(1,0,0,1,904,529)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L274.8,20.5" fill="none"/>
<text class="st7">
<tspan y="14.7" x="8" style="white-space:pre">common.sh脚本内方法需要使用前缀common_</tspan>
</text>
</g>
<g id="362" ed:parentid="330" ed:width="219.9375" ed:height="20.5" transform="matrix(1,0,0,1,904,556)">
<path stroke-linejoin="round" stroke="#696969" d="M0,20.5L219.9,20.5" fill="none"/>