-
Notifications
You must be signed in to change notification settings - Fork 205
/
sitemap-ja.xml
1403 lines (1403 loc) · 103 KB
/
sitemap-ja.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/key-bitrise-concepts.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/key-bitrise-concepts.html" />
<lastmod>2024-03-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/migrating-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/migrating-to-bitrise.html" />
<lastmod>2022-06-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/migrating-to-bitrise/migrating-from-jenkins-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/migrating-to-bitrise/migrating-from-jenkins-to-bitrise.html" />
<lastmod>2022-06-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/migrating-to-bitrise/migrating-from-app-center-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/migrating-to-bitrise/migrating-from-app-center-to-bitrise.html" />
<lastmod>2024-08-16</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/migrating-to-bitrise/integrating-fastlane-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/migrating-to-bitrise/integrating-fastlane-to-bitrise.html" />
<lastmod>2022-10-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/signing-up-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/signing-up-for-bitrise.html" />
<lastmod>2022-06-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/adding-your-first-app.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/adding-your-first-app.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/bitrise-demo-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/bitrise-demo-apps.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides.html" />
<lastmod>2024-03-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-ios-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-ios-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-android-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-android-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-react-native-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-react-native-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-flutter-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-flutter-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-ionic-cordova-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-ionic-cordova-apps.html" />
<lastmod>2022-06-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-expo-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-expo-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/quick-start-guides/getting-started-with-macos-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-macos-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/getting-started/unity-on-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/getting-started/unity-on-bitrise.html" />
<lastmod>2023-09-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-machines.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-machines.html" />
<lastmod>2024-06-18</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-machines/configuring-your-network-to-access-our-build-machines.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-machines/configuring-your-network-to-access-our-build-machines.html" />
<lastmod>2024-04-22</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-machines/freeing-up-storage-space-on-build-machines.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-machines/freeing-up-storage-space-on-build-machines.html" />
<lastmod>2024-09-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-machines/build-machine-types.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-machines/build-machine-types.html" />
<lastmod>2024-11-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks.html" />
<lastmod>2023-09-22</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks/stack-update-policy.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks/stack-update-policy.html" />
<lastmod>2024-07-16</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks/stack-deprecation-and-removal-policy.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks/stack-deprecation-and-removal-policy.html" />
<lastmod>2024-03-11</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks/the-android-linux-docker-environment.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks/the-android-linux-docker-environment.html" />
<lastmod>2024-02-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks/managing-java-versions.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks/managing-java-versions.html" />
<lastmod>2024-10-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks/preinstalled-tools-on-bitrise-stacks.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks/preinstalled-tools-on-bitrise-stacks.html" />
<lastmod>2024-02-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/build-stacks/ruby-versions-on-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/build-stacks/ruby-versions-on-bitrise.html" />
<lastmod>2024-01-17</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/code-security.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/code-security.html" />
<lastmod>2022-10-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/customizable-enterprise-build-platforms.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/customizable-enterprise-build-platforms.html" />
<lastmod>2024-01-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/docker-containers-on-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/docker-containers-on-bitrise.html" />
<lastmod>2024-11-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/docker-containers-on-bitrise/using-containers-in-bitrise-workflows.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/docker-containers-on-bitrise/using-containers-in-bitrise-workflows.html" />
<lastmod>2024-06-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/docker-containers-on-bitrise/container-api-reference.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/docker-containers-on-bitrise/container-api-reference.html" />
<lastmod>2024-11-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/docker-containers-on-bitrise/building-your-own-docker-image.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/docker-containers-on-bitrise/building-your-own-docker-image.html" />
<lastmod>2024-02-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/using-your-own-docker-image.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/using-your-own-docker-image.html" />
<lastmod>2024-04-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-your-build-locally-in-docker.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-your-build-locally-in-docker.html" />
<lastmod>2024-04-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/configuring-runner-pools.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/configuring-runner-pools.html" />
<lastmod>2024-04-24</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-bitrise-builds-on-premise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-bitrise-builds-on-premise.html" />
<lastmod>2024-04-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/bitrise-on-aws--cloud-controller.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/bitrise-on-aws--cloud-controller.html" />
<lastmod>2024-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/bitrise-on-aws--cloud-controller/subscribing-to-the-bitrise-on-aws-ami.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/bitrise-on-aws--cloud-controller/subscribing-to-the-bitrise-on-aws-ami.html" />
<lastmod>2024-01-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/bitrise-on-aws--cloud-controller/creating-and-configuring-a-controller.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/bitrise-on-aws--cloud-controller/creating-and-configuring-a-controller.html" />
<lastmod>2024-11-11</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/bitrise-on-aws--cloud-controller/aws-cloudformation-templates.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/bitrise-on-aws--cloud-controller/aws-cloudformation-templates.html" />
<lastmod>2024-11-11</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/bitrise-on-aws--cloud-controller/configuring-a-machine-pool.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/bitrise-on-aws--cloud-controller/configuring-a-machine-pool.html" />
<lastmod>2024-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/bitrise-on-aws--cloud-controller/troubleshooting-the-cloud-controller.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/bitrise-on-aws--cloud-controller/troubleshooting-the-cloud-controller.html" />
<lastmod>2024-03-27</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-bitrise-builds-on-aws.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-bitrise-builds-on-aws.html" />
<lastmod>2024-04-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-bitrise-builds-on-aws/allocating-a-dedicated-host-for-mac-instances.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-bitrise-builds-on-aws/allocating-a-dedicated-host-for-mac-instances.html" />
<lastmod>2024-01-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-bitrise-builds-on-aws/launching-an-ec2-instance-for-the-bitrise-ami.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-bitrise-builds-on-aws/launching-an-ec2-instance-for-the-bitrise-ami.html" />
<lastmod>2024-04-24</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-bitrise-builds-on-aws/connecting-your-aws-instance-to-your-bitrise-workspace.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-bitrise-builds-on-aws/connecting-your-aws-instance-to-your-bitrise-workspace.html" />
<lastmod>2024-06-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/running-bitrise-builds-on-aws/advanced-options-for-ec2-instances.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/running-bitrise-builds-on-aws/advanced-options-for-ec2-instances.html" />
<lastmod>2024-02-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/infrastructure/cleaning-up-persistent-build-environments.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/infrastructure/cleaning-up-persistent-build-environments.html" />
<lastmod>2024-06-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts.html" />
<lastmod>2024-05-10</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise.html" />
<lastmod>2024-07-02</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/configuring-scim.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/configuring-scim.html" />
<lastmod>2024-06-11</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-google-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-google-sso-for-bitrise.html" />
<lastmod>2022-06-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-ad-fs-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-ad-fs-sso-for-bitrise.html" />
<lastmod>2022-06-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-auth0-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-auth0-sso-for-bitrise.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-azure-ad-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-azure-ad-sso-for-bitrise.html" />
<lastmod>2024-06-27</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-idaptive-saml-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-idaptive-saml-sso-for-bitrise.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-okta-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-okta-sso-for-bitrise.html" />
<lastmod>2024-06-11</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-ping-identity-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-ping-identity-sso-for-bitrise.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/saml-sso-in-bitrise/setting-up-onelogin-sso-for-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/saml-sso-in-bitrise/setting-up-onelogin-sso-for-bitrise.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/editing-your-profile-settings.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/editing-your-profile-settings.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/resetting-your-password.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/resetting-your-password.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/two-factor-authentication.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/two-factor-authentication.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/personal-access-tokens.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/personal-access-tokens.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/accounts/deleting-your-bitrise-account.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/accounts/deleting-your-bitrise-account.html" />
<lastmod>2024-07-11</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces.html" />
<lastmod>2024-03-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces/creating-workspaces.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces/creating-workspaces.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces/workspace-members.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces/workspace-members.html" />
<lastmod>2024-08-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces/workspace-groups.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces/workspace-groups.html" />
<lastmod>2024-03-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces/changing-the-owners-of-a-workspace.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces/changing-the-owners-of-a-workspace.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces/workspace-api-token.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces/workspace-api-token.html" />
<lastmod>2024-03-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/workspaces/workspace-faq.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/workspaces/workspace-faq.html" />
<lastmod>2022-08-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/configuring-the-repository-url-and-the-default-branch.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/configuring-the-repository-url-and-the-default-branch.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/managing-user-access-to-an-app.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/managing-user-access-to-an-app.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/user-roles-on-app-teams.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/user-roles-on-app-teams.html" />
<lastmod>2024-08-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/changing-the-owner-of-an-app.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/changing-the-owner-of-an-app.html" />
<lastmod>2024-08-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/enabling-the-bitrise-support-user-for-your-app.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/enabling-the-bitrise-support-user-for-your-app.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/embedding-an-app-status-badge.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/embedding-an-app-status-badge.html" />
<lastmod>2024-07-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/public-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/public-apps.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/apps/creating-white-label-app-versions.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/apps/creating-white-label-app-versions.html" />
<lastmod>2023-03-10</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows.html" />
<lastmod>2024-03-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows.html" />
<lastmod>2024-07-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/default-workflows.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/default-workflows.html" />
<lastmod>2023-07-27</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/creating-a-workflow.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/creating-a-workflow.html" />
<lastmod>2024-07-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/managing-workflows.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/managing-workflows.html" />
<lastmod>2024-07-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/copying-workflows-from-one-app-to-another.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/copying-workflows-from-one-app-to-another.html" />
<lastmod>2024-05-10</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/workflow-recipes-for-android-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/workflow-recipes-for-android-apps.html" />
<lastmod>2022-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/workflow-recipes-for-ios-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/workflow-recipes-for-ios-apps.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/workflow-recipes-for-cross-platform-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/workflow-recipes-for-cross-platform-apps.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-workflows/generic-workflow-recipes.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-workflows/generic-workflow-recipes.html" />
<lastmod>2022-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines.html" />
<lastmod>2023-05-02</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/configuring-a-bitrise-pipeline.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/configuring-a-bitrise-pipeline.html" />
<lastmod>2023-04-24</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/running-a-pipeline.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/running-a-pipeline.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/checking-your-pipelines.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/checking-your-pipelines.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/rebuild-a-failed-pipeline.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/rebuild-a-failed-pipeline.html" />
<lastmod>2022-07-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/build-pipelines-faq.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/build-pipelines-faq.html" />
<lastmod>2024-05-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/currently-supported-use-cases-for-the-android-platform.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/currently-supported-use-cases-for-the-android-platform.html" />
<lastmod>2022-11-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/build-pipelines/currently-supported-use-cases-for-the-ios-platform.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/build-pipelines/currently-supported-use-cases-for-the-ios-platform.html" />
<lastmod>2022-11-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps.html" />
<lastmod>2022-08-31</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/adding-steps-to-a-workflow.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/adding-steps-to-a-workflow.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/step-versions.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/step-versions.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/step-inputs.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/step-inputs.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/skipping-steps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/skipping-steps.html" />
<lastmod>2024-07-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/enabling-or-disabling-a-step-conditionally.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/enabling-or-disabling-a-step-conditionally.html" />
<lastmod>2022-11-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/step-bundles.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/step-bundles.html" />
<lastmod>2024-10-01</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/setting-a-time-limit-for-steps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/setting-a-time-limit-for-steps.html" />
<lastmod>2022-06-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/introduction-to-steps/detecting-and-aborting-hanging-steps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/introduction-to-steps/detecting-and-aborting-hanging-steps.html" />
<lastmod>2022-09-28</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/developing-your-own-bitrise-step.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/developing-your-own-bitrise-step/developing-a-new-step.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step/developing-a-new-step.html" />
<lastmod>2022-09-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/developing-your-own-bitrise-step/sharing-steps-with-all-bitrise-users.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step/sharing-steps-with-all-bitrise-users.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/developing-your-own-bitrise-step/verified-steps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step/verified-steps.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/steps-and-workflows/developing-your-own-bitrise-step/creating-your-own-bitrise-project-scanner.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step/creating-your-own-bitrise-project-scanner.html" />
<lastmod>2022-10-28</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/the-service-credential-user.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/the-service-credential-user.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/connecting-your-github-gitlab-bitbucket-account-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/connecting-your-github-gitlab-bitbucket-account-to-bitrise.html" />
<lastmod>2024-10-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/github-app-integration.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/github-app-integration.html" />
<lastmod>2024-10-21</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/integrating-github-enterprise-with-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/integrating-github-enterprise-with-bitrise.html" />
<lastmod>2024-10-21</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/connecting-self-hosted-gitlab-instances.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/connecting-self-hosted-gitlab-instances.html" />
<lastmod>2024-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/apple-services-connection.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/apple-services-connection.html" />
<lastmod>2022-06-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/apple-services-connection/connecting-to-an-apple-service-with-api-key.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/apple-services-connection/connecting-to-an-apple-service-with-api-key.html" />
<lastmod>2023-11-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/apple-services-connection/connecting-to-an-apple-service-with-apple-id.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/apple-services-connection/connecting-to-an-apple-service-with-apple-id.html" />
<lastmod>2022-07-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/apple-services-connection/connecting-to-an-apple-service-with-step-inputs.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/apple-services-connection/connecting-to-an-apple-service-with-step-inputs.html" />
<lastmod>2022-06-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/apple-services-connection/steps-requiring-apple-authentication.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/apple-services-connection/steps-requiring-apple-authentication.html" />
<lastmod>2023-03-28</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/connecting-a-google-service-account-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/connecting-a-google-service-account-to-bitrise.html" />
<lastmod>2024-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks.html" />
<lastmod>2023-11-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-incoming-webhooks.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-incoming-webhooks.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-github-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-github-webhook.html" />
<lastmod>2024-05-24</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-gitlab-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-gitlab-webhook.html" />
<lastmod>2024-07-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-bitbucket-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-bitbucket-webhook.html" />
<lastmod>2024-07-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-gogs-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-gogs-webhook.html" />
<lastmod>2024-07-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-slack-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-slack-webhook.html" />
<lastmod>2023-08-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-visual-studio-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-visual-studio-webhook.html" />
<lastmod>2024-07-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-an-assembla-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-an-assembla-webhook.html" />
<lastmod>2024-07-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-a-deveo-webhook.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-a-deveo-webhook.html" />
<lastmod>2024-07-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/webhooks/adding-outgoing-webhooks.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/webhooks/adding-outgoing-webhooks.html" />
<lastmod>2024-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/configuring-ssh-keys.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/configuring-ssh-keys.html" />
<lastmod>2024-07-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/configuring-https-authorization-credentials.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/configuring-https-authorization-credentials.html" />
<lastmod>2024-07-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/apps-with-submodules-or-private-repo-dependencies.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/apps-with-submodules-or-private-repo-dependencies.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/connectivity/connecting-to-a-vpn-during-a-build.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/connectivity/connecting-to-a-vpn-during-a-build.html" />
<lastmod>2022-07-07</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuration-yaml.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuration-yaml.html" />
<lastmod>2024-09-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuration-yaml/managing-an-app-s-bitrise-yml-file.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuration-yaml/managing-an-app-s-bitrise-yml-file.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuration-yaml/accessing-a-build-s-bitrise-yml-file.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuration-yaml/accessing-a-build-s-bitrise-yml-file.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuration-yaml/editing-an-app-s-bitrise-yml-file.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuration-yaml/editing-an-app-s-bitrise-yml-file.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuration-yaml/modular-yaml-configuration.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuration-yaml/modular-yaml-configuration.html" />
<lastmod>2024-09-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings.html" />
<lastmod>2022-10-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/setting-the-stack-for-your-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/setting-the-stack-for-your-builds.html" />
<lastmod>2023-07-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/selective-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/selective-builds.html" />
<lastmod>2024-07-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/rolling-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/rolling-builds.html" />
<lastmod>2024-09-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/configuring-email-notifications.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/configuring-email-notifications.html" />
<lastmod>2023-02-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/configuring-slack-integration.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/configuring-slack-integration.html" />
<lastmod>2022-10-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/setting-your-git-credentials-on-build-machines.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/setting-your-git-credentials-on-build-machines.html" />
<lastmod>2023-02-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/configuring-build-settings/reporting-the-build-status-to-your-git-hosting-provider.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/configuring-build-settings/reporting-the-build-status-to-your-git-hosting-provider.html" />
<lastmod>2024-11-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds.html" />
<lastmod>2023-12-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/starting-builds-manually.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/starting-builds-manually.html" />
<lastmod>2023-03-22</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/triggering-builds-automatically.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/triggering-builds-automatically.html" />
<lastmod>2024-09-27</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/using-the-trigger-map-to-trigger-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/using-the-trigger-map-to-trigger-builds.html" />
<lastmod>2024-09-24</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/triggering-builds-by-slack-commands.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/triggering-builds-by-slack-commands.html" />
<lastmod>2023-08-02</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/scheduling-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/scheduling-builds.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/approving-pull-request-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/approving-pull-request-builds.html" />
<lastmod>2023-01-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/starting-parallel-builds-with-a-single-trigger.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/starting-parallel-builds-with-a-single-trigger.html" />
<lastmod>2022-11-18</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/starting-builds/skipping-a-given-commit-or-pull-request.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/starting-builds/skipping-a-given-commit-or-pull-request.html" />
<lastmod>2023-05-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/managing-build-files.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/managing-build-files.html" />
<lastmod>2024-06-18</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/managing-build-files/uploading-files-for-your-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/managing-build-files/uploading-files-for-your-builds.html" />
<lastmod>2023-10-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/managing-build-files/using-files-in-your-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/managing-build-files/using-files-in-your-builds.html" />
<lastmod>2022-07-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/managing-build-files/using-encrypted-files-in-your-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/managing-build-files/using-encrypted-files-in-your-builds.html" />
<lastmod>2022-07-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/managing-build-files/build-artifacts-online.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/managing-build-files/build-artifacts-online.html" />
<lastmod>2024-06-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/environment-variables.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/environment-variables.html" />
<lastmod>2024-10-16</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/secrets.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/secrets.html" />
<lastmod>2024-08-16</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-statuses.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-statuses.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/installing-tools-during-a-build.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/installing-tools-during-a-build.html" />
<lastmod>2024-08-29</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/finding-a-specific-build.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/finding-a-specific-build.html" />
<lastmod>2024-08-08</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-numbering-and-app-versioning.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-numbering-and-app-versioning.html" />
<lastmod>2022-07-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting.html" />
<lastmod>2021-11-17</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting/build-logs.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting/build-logs.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting/remote-access.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting/remote-access.html" />
<lastmod>2024-04-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting/debugging-your-build-on-your-own-machine.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting/debugging-your-build-on-your-own-machine.html" />
<lastmod>2022-07-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting/bitrise-checks-on-github.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting/bitrise-checks-on-github.html" />
<lastmod>2024-05-21</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting/checking-build-details.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting/checking-build-details.html" />
<lastmod>2024-08-28</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-data-and-troubleshooting/viewing-html-reports.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-data-and-troubleshooting/viewing-html-reports.html" />
<lastmod>2024-03-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/builds/build-annotations.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/builds/build-annotations.html" />
<lastmod>2023-12-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching.html" />
<lastmod>2023-10-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-ios-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-ios-apps.html" />
<lastmod>2023-04-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-ios-apps/managing-dependencies-with-spm.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-ios-apps/managing-dependencies-with-spm.html" />
<lastmod>2023-04-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-ios-apps/managing-dependencies-with-cocoapods.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-ios-apps/managing-dependencies-with-cocoapods.html" />
<lastmod>2023-09-22</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-ios-apps/managing-dependencies-with-carthage.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-ios-apps/managing-dependencies-with-carthage.html" />
<lastmod>2023-04-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-android-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-android-apps.html" />
<lastmod>2023-04-21</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-flutter-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-flutter-apps.html" />
<lastmod>2024-08-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/managing-dependencies-for-react-native-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/managing-dependencies-for-react-native-apps.html" />
<lastmod>2024-08-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/key-based-caching.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/key-based-caching.html" />
<lastmod>2024-03-27</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/key-based-caching/using-key-based-caching.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/key-based-caching/using-key-based-caching.html" />
<lastmod>2024-06-18</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/key-based-caching/dedicated-caching-steps-for-dependency-managers.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/key-based-caching/dedicated-caching-steps-for-dependency-managers.html" />
<lastmod>2023-04-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/key-based-caching/accessing-key-based-cache-archives.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/key-based-caching/accessing-key-based-cache-archives.html" />
<lastmod>2023-04-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/branch-based-caching.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/branch-based-caching.html" />
<lastmod>2022-09-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/branch-based-caching/using-branch-based-caching-in-your-builds.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/branch-based-caching/using-branch-based-caching-in-your-builds.html" />
<lastmod>2022-09-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/remote-build-caching.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/remote-build-caching.html" />
<lastmod>2024-07-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/remote-build-caching/remote-build-cache-for-gradle.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/remote-build-caching/remote-build-cache-for-gradle.html" />
<lastmod>2024-11-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/remote-build-caching/gradle-configuration-cache.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/remote-build-caching/gradle-configuration-cache.html" />
<lastmod>2024-11-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/dependencies-and-caching/remote-build-caching/remote-build-cache-for-bazel.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/dependencies-and-caching/remote-build-caching/remote-build-cache-for-bazel.html" />
<lastmod>2024-07-19</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing.html" />
<lastmod>2024-05-10</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/android-code-signing.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/android-code-signing.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/android-code-signing/uploading-android-keystore-files-to-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/android-code-signing/uploading-android-keystore-files-to-bitrise.html" />
<lastmod>2023-10-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/android-code-signing/android-code-signing-using-the-android-sign-step.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/android-code-signing/android-code-signing-using-the-android-sign-step.html" />
<lastmod>2023-10-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/android-code-signing/android-code-signing-with-android-studio.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/android-code-signing/android-code-signing-with-android-studio.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/android-code-signing/android-code-signing-in-gradle.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/android-code-signing/android-code-signing-in-gradle.html" />
<lastmod>2023-09-22</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/android-code-signing/downloading-a-keystore-file.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/android-code-signing/downloading-a-keystore-file.html" />
<lastmod>2023-10-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/managing-ios-code-signing-files---automatic-provisioning.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/managing-ios-code-signing-files---automatic-provisioning.html" />
<lastmod>2022-09-01</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/managing-ios-code-signing-files---manual-provisioning.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/managing-ios-code-signing-files---manual-provisioning.html" />
<lastmod>2023-10-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/creating-a-signed-ipa-for-xcode-projects.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/creating-a-signed-ipa-for-xcode-projects.html" />
<lastmod>2024-07-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/signing-an-ipa-with-multiple-code-signing-identities.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/signing-an-ipa-with-multiple-code-signing-identities.html" />
<lastmod>2024-07-12</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/ios-code-signing-for-ionic-and-cordova-projects.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/ios-code-signing-for-ionic-and-cordova-projects.html" />
<lastmod>2022-07-22</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/protecting-your-code-signing-files.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/protecting-your-code-signing-files.html" />
<lastmod>2023-10-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/generating-ios-code-signing-files.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/generating-ios-code-signing-files.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/exporting-ios-code-signing-files-without-codesigndoc.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/exporting-ios-code-signing-files-without-codesigndoc.html" />
<lastmod>2023-05-02</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/code-signing/ios-code-signing/troubleshooting-ios-code-signing.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/code-signing/ios-code-signing/troubleshooting-ios-code-signing.html" />
<lastmod>2022-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-ios-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-ios-apps.html" />
<lastmod>2023-04-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-ios-apps/running-xcode-tests.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-ios-apps/running-xcode-tests.html" />
<lastmod>2023-11-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-ios-apps/building-an-ios-app-for-testing.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-ios-apps/building-an-ios-app-for-testing.html" />
<lastmod>2023-06-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-ios-apps/building-an-ios-app-for-a-simulator.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-ios-apps/building-an-ios-app-for-a-simulator.html" />
<lastmod>2024-09-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-ios-apps/viewing-xcode-test-results-in-rich-html-format.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-ios-apps/viewing-xcode-test-results-in-rich-html-format.html" />
<lastmod>2023-11-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-ios-apps/registering-a-test-device.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-ios-apps/registering-a-test-device.html" />
<lastmod>2023-06-28</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-android-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-android-apps.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-android-apps/android-unit-tests.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-android-apps/android-unit-tests.html" />
<lastmod>2023-06-15</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-android-apps/running-instrumented-tests-for-android-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-android-apps/running-instrumented-tests-for-android-apps.html" />
<lastmod>2023-06-14</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-android-apps/running-lint-for-your-android-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-android-apps/running-lint-for-your-android-apps.html" />
<lastmod>2023-07-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-flutter-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-flutter-apps.html" />
<lastmod>2023-04-06</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-flutter-apps/running-unit-and-ui-tests-on-flutter-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-flutter-apps/running-unit-and-ui-tests-on-flutter-apps.html" />
<lastmod>2023-03-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-flutter-apps/running-the-dart-analyzer-on-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-flutter-apps/running-the-dart-analyzer-on-bitrise.html" />
<lastmod>2023-03-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-react-native-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-react-native-apps.html" />
<lastmod>2023-06-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-react-native-apps/running-unit-and-ui-tests-for-react-native-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-react-native-apps/running-unit-and-ui-tests-for-react-native-apps.html" />
<lastmod>2023-06-20</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/testing-react-native-apps/running-detox-tests-on-bitrise.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/testing-react-native-apps/running-detox-tests-on-bitrise.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/device-testing-with-firebase.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/device-testing-with-firebase.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/device-testing-with-firebase/device-testing-for-ios.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/device-testing-with-firebase/device-testing-for-ios.html" />
<lastmod>2023-04-04</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/device-testing-with-firebase/device-testing-for-android.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/device-testing-with-firebase/device-testing-for-android.html" />
<lastmod>2024-04-26</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/device-testing-with-firebase/running-device-tests-with-firebase-for-multiplatform-apps.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/device-testing-with-firebase/running-device-tests-with-firebase-for-multiplatform-apps.html" />
<lastmod>2023-04-21</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/test-reports.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/test-reports.html" />
<lastmod>2023-07-03</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/exporting-to-test-reports-from-any-step.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/exporting-to-test-reports-from-any-step.html" />
<lastmod>2023-02-21</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/running-tests-in-the-visual-studio-app-center.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/running-tests-in-the-visual-studio-app-center.html" />
<lastmod>2022-07-13</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/testing/measuring-your-code-coverage-with-codecov.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/testing/measuring-your-code-coverage-with-codecov.html" />
<lastmod>2021-10-25</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/deploying.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/deploying.html" />
<lastmod>2024-05-10</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/deploying/android-deployment.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/deploying/android-deployment.html" />
<lastmod>2022-07-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/deploying/android-deployment/deploying-android-apps-to-bitrise-and-google-play.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/deploying/android-deployment/deploying-android-apps-to-bitrise-and-google-play.html" />
<lastmod>2022-07-05</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/deploying/android-deployment/deploying-apps-to-huawei-appgallery.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/deploying/android-deployment/deploying-apps-to-huawei-appgallery.html" />
<lastmod>2022-11-09</lastmod>
</url>
<url>
<loc>https://devcenter.bitrise.io/ja/deploying/android-deployment/generate-and-deploy-multiple-flavor-apks-in-a-single-workflow.html</loc><xhtml:link rel="alternate" hreflang="en" href="https://devcenter.bitrise.io/en/deploying/android-deployment/generate-and-deploy-multiple-flavor-apks-in-a-single-workflow.html" />