project.pbxproj 75.2 KB
Newer Older
Libin Lu's avatar
Libin Lu committed
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		022C88EB937CD3EA29EF85A218ED595F /* GPBWireFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3EBD0AB922CCB3EEA466256111AD6E /* GPBWireFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
		035D977FDEFE77020E12C03AD3CD9465 /* GPBRootObject_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4257DCAC74DB9528BE30D480C83A0614 /* GPBRootObject_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		08767D1B40066927371F2AACF953FAE8 /* GPBRootObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA8A3C6BF5B08B278E78881E31D040D /* GPBRootObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
		0F551AAC7A283B90D058A7D5EE4E9365 /* GPBMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1618937E888411B5734B28440C9984BB /* GPBMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
		154E5AB0C541CED05D795C6198947D27 /* GTMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E86D866E7527079B9C72838146FC65E0 /* GTMLogger.h */; settings = {ATTRIBUTES = (Public, ); }; };
		1821DFD0A2238E97C8D0F7ED1AFF0112 /* GPBCodedOutputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F650B9F7CD0DFCCBE4F47028DA2A88B /* GPBCodedOutputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		1E7D07DF8DC97D9F7F75663D92AA7CEB /* GPBRuntimeTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F15AF57D88CBECACCD6280434B04F4 /* GPBRuntimeTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2679079DCC30B65E60F1CB284999ABE9 /* GPBWellKnownTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC167413116C6A3D5CB6A6FF890684A /* GPBWellKnownTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2B48CF794AFCB384EAA47D0299DDADCC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
		2C7156530E5F1F5E383CD83AC547F8ED /* GPBUnknownFieldSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE41CCD2EF876A2901422565A318450 /* GPBUnknownFieldSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2CF613841A60FB138AC152EF0AEFE1A0 /* GPBRootObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2587BF16BB234A7A454FB192744EEF0B /* GPBRootObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		326DEF994F8EFA0913BF9267B76580A9 /* GPBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = AF2EA46D8AA4FAEA8F6A3270C49D6FFD /* GPBUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		34E4818C5EA161ACC2591B1BB43D10F9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
		383C73D6B9216B61B431A81B1EB356EA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
		389C6D87B27C55A9CDF4D2C8032B4F2B /* GPBDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B66BBE7A2E9B28EE087721F90D00F2 /* GPBDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
		39FBF1BFF70D7D0DB3FC70C8C0F89B70 /* GPBExtensionInternals.h in Headers */ = {isa = PBXBuildFile; fileRef = F935CCABB5F02337BDDE8E5F38F3069D /* GPBExtensionInternals.h */; settings = {ATTRIBUTES = (Public, ); }; };
		3E65539A023736C2000EF77E5F7ED90E /* Timestamp.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF7A1D9262A7F997B1CB962C559EDFB /* Timestamp.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		3EDC5296A8279F650D23E2FFF5DA1F5B /* Api.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A51F2B567669037BF3936E5CA172E70 /* Api.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		44A7B8CE323AADC54DD7CD4DC0CA58FF /* GPBArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BCA419DEE41C61FAEB2F6CF8AE135CA /* GPBArray.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		4BA32CED473D3B3538E3749F05350F33 /* Type.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A48D3AFA32C77CF2B0E0EF95B65114B /* Type.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		4F1F0BA4E73DDFFAAAF3C503FE28C14B /* GPBDictionary_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = DD120B7A683C50623F2D70ACB691D30E /* GPBDictionary_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		51BE2E3CC07B2C1779FE82138CF1B3E2 /* GPBDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5FFA7382C895811E3B0023C0F41A23 /* GPBDescriptor.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		53B98E3F25862473E75D73A37BB16DDD /* GPBDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF2B5848E0B8DD0038079C4F46E73D7 /* GPBDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
		57EC067AD948B93597D3292D862E174F /* GPBUnknownFieldSet.m in Sources */ = {isa = PBXBuildFile; fileRef = B2A6D92AEE6DA9E51EFEDB35B8CB850F /* GPBUnknownFieldSet.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		5B8F036F7FAAF35FE98CE3FBFF25D72F /* GoogleToolboxForMac-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE503410B599E7B4E0E4A35111B6C154 /* GoogleToolboxForMac-dummy.m */; };
		5D90CF0BF59C0A249BA78C2E0E303C19 /* GPBBootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 540B2D2CBD1C17660F3ED370958484B8 /* GPBBootstrap.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5E1A517B79CDB91F1E5973C50CA840A9 /* SourceContext.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = AC767302BE2740A218AB38624FAF415D /* SourceContext.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		6254516836361AA69C3DDBDF22C40B03 /* Struct.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = EA487A96C086BF8484214DD55DCE2F2A /* Struct.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		6A5451E67CBAAED4E81995B58427A175 /* GTMNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D730424C36A9D0BB12473678C5C609 /* GTMNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; };
		6C02A5F32DD3E5CB6B62D8B2FADADCAD /* GPBArray_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = AEDB2243A6CD346CDF0DB9A753A39090 /* GPBArray_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		72EBC660EDAA849E02E33A5524D69162 /* Pods-SimpleFcmClientTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 548BDC92E895969C1BB17757E75A640F /* Pods-SimpleFcmClientTests-dummy.m */; };
		78C12914333DEDC0F63FA64FCBBC1E10 /* Any.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C4EE1A27D31835838453206F2A58CD /* Any.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		7B5D421E2F127439E2D6CD0C7EB63869 /* SourceContext.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B4ABDC75BD3D90ED81B8E3493A181B /* SourceContext.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		7DF8FB3344C4E5267B2040B7FCFE3F48 /* Any.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 001E97685635E5E5D85137D15AC5F1EC /* Any.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		7E5DC039F5A628E75134BB97A47681E9 /* GPBExtensionRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E536CB0A86E891E53BBBCE77E73737B /* GPBExtensionRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; };
		7F1C9A86C742ACB1851BDB4D59E04845 /* GPBProtocolBuffers_RuntimeSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 8952804670E9F30C536634A5CFBB8C7B /* GPBProtocolBuffers_RuntimeSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
		82F3FB4FC93B3637E4F280181766D610 /* GPBUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E63401A4016579D0174BC4CF2130180 /* GPBUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
		8A09BC5645C3963B2A5FA34E3446BCE4 /* Struct.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DB2913D1A90A71CF70E840F03289A9 /* Struct.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		8F4A30547BBB32E8E74B7CB2D40DEF5B /* GPBWireFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 08FD64A48EE22B8B96AC74D7B5F9ED9D /* GPBWireFormat.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		9073988F5740D23AD0B99DAC5E49E23F /* Duration.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C039443FDB80129B611548AD43B612D /* Duration.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		90906AC58824566DFC6875E1ED25E855 /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = AB05DC9372EAA60C5C0E92E232197796 /* GTMDefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
		919C4E3F1F8B6B0F6E3F71D73DEFDD19 /* Wrappers.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 66511A40A137AF4ED38BD50124E409C3 /* Wrappers.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		961B5650810F2AA7A03E7165E3BEEB7D /* GPBDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 403E122259C6D09E8CA6642A34DFD387 /* GPBDictionary.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		996BEA533C2AC3DE8B151B5841CCC3D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; };
		9C89C009AE0F8913925ECF645B532AFF /* GPBUnknownFieldSet_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7791BE8EB96D30317E4AA74D170EBD /* GPBUnknownFieldSet_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		9FB5CB5C1DB3D72267DAF009D1699BF7 /* Protobuf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0317CC4332742F7BBFD8954FFEF65EA /* Protobuf-dummy.m */; };
		A3DECA17505966ED94190C617D7812C0 /* GPBUnknownField_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2A9FEFA9D13AEDC72FECE90E8ADF06 /* GPBUnknownField_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		A710DD9D5F838EEB2BFAA4FD0DBD989D /* Api.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB00209ED19EF6316064EEA3E014E71 /* Api.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		A7D7A6EABA0A0F7BF852E9CDF7FA6D50 /* GPBMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = A7ED402B02A8F914913B199E8524129B /* GPBMessage.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		A7E0EDCA9E5FAEA4CFCC9B4EBDBF4AE4 /* Empty.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB44A4D25E7DF53601657E9E2474251 /* Empty.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		AE89E317E3FE463795135A5E5279AD25 /* GPBCodedInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = CCCC637CB53D0538C2506E95224E1257 /* GPBCodedInputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B0F5154677A95F19BE5A7237CCB4AB65 /* GPBDescriptor_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A954DE546890C19A47689E7880DEB58 /* GPBDescriptor_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B1023B4FB351F3D9429A560901DDFECD /* GPBExtensionInternals.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0E29E974A875544C2664856945600F /* GPBExtensionInternals.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		B23C3AFC10658266FB8C0AA4B7A791A1 /* Wrappers.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0EE329D8FF6EA2AF9AC450D83516C7 /* Wrappers.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B48DE60976D8CBB4E6B0E2729EA15B96 /* GPBCodedInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA04AC13CFC73F6CE9A4DED9CE97908 /* GPBCodedInputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		B537A5CEB840DC90F435F1218EF25E67 /* GPBUnknownField.m in Sources */ = {isa = PBXBuildFile; fileRef = CC776ACF734C9EAD15DA52BA321A061C /* GPBUnknownField.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		B55A53D0E461B8E630046AB07A33D2E1 /* GPBExtensionRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E3145450B8C4DA84CE065BF8059AC12 /* GPBExtensionRegistry.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		B57868C6793775DCA5B332540C054308 /* GPBUnknownField.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D59C3004FDCA38525EE2EC0EA6A86E7 /* GPBUnknownField.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B7F3CC765F3245C3414590195BC3213B /* GPBArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 79718FBF4F4C529E96266576E843738F /* GPBArray.h */; settings = {ATTRIBUTES = (Public, ); }; };
		C27EB784B1A014D94C770626163C481E /* Empty.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 560DFBB8666AEC35F6725B87070327EF /* Empty.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		C3571844CF2B1C097D40380BA5FFD352 /* GPBCodedOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 3144A339047FF93537D206919CD8123B /* GPBCodedOutputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		C5F6A6DF7AEFF132F251C50436CB5AD4 /* GPBMessage_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E913B80F30C3E8FAAFEA39F93B2E2F /* GPBMessage_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		CBA2F6ABAFECB265DF3035C018DE85B2 /* GPBProtocolBuffers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE01C0885F4C0235FE15152DD46C589 /* GPBProtocolBuffers.h */; settings = {ATTRIBUTES = (Public, ); }; };
		CE793643063B71F80F32F0851FDABFA5 /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E08BE5D6BE7BC2A5D25659901741F8D /* GTMLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		D2760E9C8B3DB289E0584C8986FC4CFC /* FieldMask.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BCD98927E2E636FDB3DD76DF0E71CFF /* FieldMask.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		D3E7A58F79A630054695EF25CEA61678 /* Pods-SimpleFcmClient-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA5C54D2295533D68B6477A369EDBAD /* Pods-SimpleFcmClient-dummy.m */; };
		DCA8B7E9C917A1732144AFFBC3232AC3 /* Timestamp.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = FFB0B082A039C59F90E978F02C6326E5 /* Timestamp.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		E4E53EFC1FE409342363FF53597D7BFC /* FieldMask.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 49742342001E384A48A41292E56FCF35 /* FieldMask.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		E9797798958961A15A4439611E5A621A /* GPBCodedOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = ED712B0D3871CCA85C312BC2282A4D51 /* GPBCodedOutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
		EB6836C146E4D4D685BCEFC69715A287 /* Duration.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = D53670FAA6E1718A718B2DEC4A0D5961 /* Duration.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		EE196D5A1B65EBB5BD0213A11EDE1196 /* GPBWellKnownTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 6350E3F8D26F471341917F83FFA34173 /* GPBWellKnownTypes.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
		F1B1695A6AB8AFEC306AB371F2DCA21F /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 62EAF55A7EE5B2037B8244AFD62E4C61 /* GTMNSData+zlib.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
		F920BE2F16587A14615EE5D57B41BF5F /* GPBUtilities_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD6A8E93072E973518F5B71F6F0228B /* GPBUtilities_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		FBCE368EA5C3EDCB14D5121CCBD5C714 /* GPBCodedInputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE4D1E30EF324F593A1FC334C3C79D8 /* GPBCodedInputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		FFC2AD293139DCC5787573E0EC722D82 /* Type.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 12678477998C033F1E20696535904D0D /* Type.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		DB81D0D7C2B7B8F08B93998E40D03A2B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = FA9D13261AF395CF5D54BB3203DF2A6E;
			remoteInfo = GoogleToolboxForMac;
		};
		F0E6A3E75B022EC3745C6B955FEEB4D1 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = CFA4C54A12C3652ECAAC9B830AEAAEE6;
			remoteInfo = Protobuf;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		001E97685635E5E5D85137D15AC5F1EC /* Any.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Any.pbobjc.h; path = objectivec/google/protobuf/Any.pbobjc.h; sourceTree = "<group>"; };
		03A5880045CC2FC7528C0C7D1C65C72D /* Pods-SimpleFcmClient-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleFcmClient-frameworks.sh"; sourceTree = "<group>"; };
		06AB88C0C17B1B26E5FF388C86D1BE2F /* libPods-SimpleFcmClientTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-SimpleFcmClientTests.a"; path = "libPods-SimpleFcmClientTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		06D12FE00EC317AEE94E64410CC9ACF4 /* Pods-SimpleFcmClient-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SimpleFcmClient-acknowledgements.plist"; sourceTree = "<group>"; };
		08FD64A48EE22B8B96AC74D7B5F9ED9D /* GPBWireFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWireFormat.m; path = objectivec/GPBWireFormat.m; sourceTree = "<group>"; };
		12678477998C033F1E20696535904D0D /* Type.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Type.pbobjc.h; path = objectivec/google/protobuf/Type.pbobjc.h; sourceTree = "<group>"; };
		1618937E888411B5734B28440C9984BB /* GPBMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage.h; path = objectivec/GPBMessage.h; sourceTree = "<group>"; };
		19E913B80F30C3E8FAAFEA39F93B2E2F /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage_PackagePrivate.h; path = objectivec/GPBMessage_PackagePrivate.h; sourceTree = "<group>"; };
		1A954DE546890C19A47689E7880DEB58 /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor_PackagePrivate.h; path = objectivec/GPBDescriptor_PackagePrivate.h; sourceTree = "<group>"; };
		1B961E71592543F0D1A1075EB86FB39F /* Pods-SimpleFcmClientTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleFcmClientTests.debug.xcconfig"; sourceTree = "<group>"; };
		1C039443FDB80129B611548AD43B612D /* Duration.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Duration.pbobjc.m; path = objectivec/google/protobuf/Duration.pbobjc.m; sourceTree = "<group>"; };
		1EF7A1D9262A7F997B1CB962C559EDFB /* Timestamp.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timestamp.pbobjc.h; path = objectivec/google/protobuf/Timestamp.pbobjc.h; sourceTree = "<group>"; };
		1FA04AC13CFC73F6CE9A4DED9CE97908 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedInputStream.m; path = objectivec/GPBCodedInputStream.m; sourceTree = "<group>"; };
		23DF27EFB5A4DDDC05A71D8BBF41D407 /* Protobuf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Protobuf-prefix.pch"; sourceTree = "<group>"; };
		2587BF16BB234A7A454FB192744EEF0B /* GPBRootObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBRootObject.m; path = objectivec/GPBRootObject.m; sourceTree = "<group>"; };
		2BCA419DEE41C61FAEB2F6CF8AE135CA /* GPBArray.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBArray.m; path = objectivec/GPBArray.m; sourceTree = "<group>"; };
		2BCD98927E2E636FDB3DD76DF0E71CFF /* FieldMask.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FieldMask.pbobjc.h; path = objectivec/google/protobuf/FieldMask.pbobjc.h; sourceTree = "<group>"; };
		2E2A9FEFA9D13AEDC72FECE90E8ADF06 /* GPBUnknownField_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField_PackagePrivate.h; path = objectivec/GPBUnknownField_PackagePrivate.h; sourceTree = "<group>"; };
		2E3145450B8C4DA84CE065BF8059AC12 /* GPBExtensionRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionRegistry.m; path = objectivec/GPBExtensionRegistry.m; sourceTree = "<group>"; };
		2E536CB0A86E891E53BBBCE77E73737B /* GPBExtensionRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBExtensionRegistry.h; path = objectivec/GPBExtensionRegistry.h; sourceTree = "<group>"; };
		3082987BE13377BB699484A9DBC1DE1F /* Pods-SimpleFcmClient-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SimpleFcmClient-acknowledgements.markdown"; sourceTree = "<group>"; };
		3144A339047FF93537D206919CD8123B /* GPBCodedOutputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedOutputStream.m; path = objectivec/GPBCodedOutputStream.m; sourceTree = "<group>"; };
		36D1B1AABDB953FBA64CFE848B4AFC09 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstanceID.framework; path = Frameworks/FirebaseInstanceID.framework; sourceTree = "<group>"; };
		37AB8523D4B5F7828206A8D829687D3F /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = "<group>"; };
		3A48D3AFA32C77CF2B0E0EF95B65114B /* Type.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Type.pbobjc.m; path = objectivec/google/protobuf/Type.pbobjc.m; sourceTree = "<group>"; };
		3C5FFA7382C895811E3B0023C0F41A23 /* GPBDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDescriptor.m; path = objectivec/GPBDescriptor.m; sourceTree = "<group>"; };
		403E122259C6D09E8CA6642A34DFD387 /* GPBDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDictionary.m; path = objectivec/GPBDictionary.m; sourceTree = "<group>"; };
		4257DCAC74DB9528BE30D480C83A0614 /* GPBRootObject_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject_PackagePrivate.h; path = objectivec/GPBRootObject_PackagePrivate.h; sourceTree = "<group>"; };
		49742342001E384A48A41292E56FCF35 /* FieldMask.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FieldMask.pbobjc.m; path = objectivec/google/protobuf/FieldMask.pbobjc.m; sourceTree = "<group>"; };
		4985912EC58108202C6D3C1DE1C43152 /* Protobuf.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Protobuf.xcconfig; sourceTree = "<group>"; };
		53A92AFAC3C865F085D8B48D41D563E0 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; };
		540B2D2CBD1C17660F3ED370958484B8 /* GPBBootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBBootstrap.h; path = objectivec/GPBBootstrap.h; sourceTree = "<group>"; };
		548BDC92E895969C1BB17757E75A640F /* Pods-SimpleFcmClientTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SimpleFcmClientTests-dummy.m"; sourceTree = "<group>"; };
		54C4EE1A27D31835838453206F2A58CD /* Any.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Any.pbobjc.m; path = objectivec/google/protobuf/Any.pbobjc.m; sourceTree = "<group>"; };
		5514782F90CD27BE915D546C1762C84C /* Pods-SimpleFcmClientTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleFcmClientTests.release.xcconfig"; sourceTree = "<group>"; };
		560DFBB8666AEC35F6725B87070327EF /* Empty.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Empty.pbobjc.m; path = objectivec/google/protobuf/Empty.pbobjc.m; sourceTree = "<group>"; };
		5CD6A8E93072E973518F5B71F6F0228B /* GPBUtilities_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities_PackagePrivate.h; path = objectivec/GPBUtilities_PackagePrivate.h; sourceTree = "<group>"; };
		5D3D0F2D34FBA8D3607147A7D67AA9F3 /* FirebaseNanoPB.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseNanoPB.framework; path = Frameworks/FirebaseNanoPB.framework; sourceTree = "<group>"; };
		5E046CD0D066F7D3659B8E174CC410CD /* Pods-SimpleFcmClientTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleFcmClientTests-frameworks.sh"; sourceTree = "<group>"; };
		6149BC34D41BF63D734F7A477A71FD91 /* Pods-SimpleFcmClient.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleFcmClient.release.xcconfig"; sourceTree = "<group>"; };
		62EAF55A7EE5B2037B8244AFD62E4C61 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSData+zlib.m"; path = "Foundation/GTMNSData+zlib.m"; sourceTree = "<group>"; };
		6350E3F8D26F471341917F83FFA34173 /* GPBWellKnownTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWellKnownTypes.m; path = objectivec/GPBWellKnownTypes.m; sourceTree = "<group>"; };
		6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
		66386A83E51D8882A06B4826D556C639 /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Frameworks/FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
		66511A40A137AF4ED38BD50124E409C3 /* Wrappers.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Wrappers.pbobjc.m; path = objectivec/google/protobuf/Wrappers.pbobjc.m; sourceTree = "<group>"; };
		6BA5B7D2B909DB065E533260035479FA /* Pods-SimpleFcmClientTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SimpleFcmClientTests-acknowledgements.plist"; sourceTree = "<group>"; };
		6C3F5FE155294108B2C460C2EC7F5905 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = "<group>"; };
		6DF2B5848E0B8DD0038079C4F46E73D7 /* GPBDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor.h; path = objectivec/GPBDescriptor.h; sourceTree = "<group>"; };
		79718FBF4F4C529E96266576E843738F /* GPBArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray.h; path = objectivec/GPBArray.h; sourceTree = "<group>"; };
		7A51F2B567669037BF3936E5CA172E70 /* Api.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Api.pbobjc.h; path = objectivec/google/protobuf/Api.pbobjc.h; sourceTree = "<group>"; };
		7D59C3004FDCA38525EE2EC0EA6A86E7 /* GPBUnknownField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField.h; path = objectivec/GPBUnknownField.h; sourceTree = "<group>"; };
		7DB44A4D25E7DF53601657E9E2474251 /* Empty.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Empty.pbobjc.h; path = objectivec/google/protobuf/Empty.pbobjc.h; sourceTree = "<group>"; };
		83B4ABDC75BD3D90ED81B8E3493A181B /* SourceContext.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SourceContext.pbobjc.h; path = objectivec/google/protobuf/SourceContext.pbobjc.h; sourceTree = "<group>"; };
		8952804670E9F30C536634A5CFBB8C7B /* GPBProtocolBuffers_RuntimeSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers_RuntimeSupport.h; path = objectivec/GPBProtocolBuffers_RuntimeSupport.h; sourceTree = "<group>"; };
		8F650B9F7CD0DFCCBE4F47028DA2A88B /* GPBCodedOutputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream_PackagePrivate.h; path = objectivec/GPBCodedOutputStream_PackagePrivate.h; sourceTree = "<group>"; };
		8F99A74D0E82B0121B23C7A46C9F460B /* FirebaseMessaging.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseMessaging.framework; path = Frameworks/FirebaseMessaging.framework; sourceTree = "<group>"; };
		93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
		9E08BE5D6BE7BC2A5D25659901741F8D /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = "<group>"; };
		9E0E29E974A875544C2664856945600F /* GPBExtensionInternals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionInternals.m; path = objectivec/GPBExtensionInternals.m; sourceTree = "<group>"; };
		9E63401A4016579D0174BC4CF2130180 /* GPBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities.h; path = objectivec/GPBUtilities.h; sourceTree = "<group>"; };
		9EA8A3C6BF5B08B278E78881E31D040D /* GPBRootObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject.h; path = objectivec/GPBRootObject.h; sourceTree = "<group>"; };
		9FE01C0885F4C0235FE15152DD46C589 /* GPBProtocolBuffers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers.h; path = objectivec/GPBProtocolBuffers.h; sourceTree = "<group>"; };
		A7ED402B02A8F914913B199E8524129B /* GPBMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBMessage.m; path = objectivec/GPBMessage.m; sourceTree = "<group>"; };
		AAE41CCD2EF876A2901422565A318450 /* GPBUnknownFieldSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet.h; path = objectivec/GPBUnknownFieldSet.h; sourceTree = "<group>"; };
		AB05DC9372EAA60C5C0E92E232197796 /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
		AC767302BE2740A218AB38624FAF415D /* SourceContext.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SourceContext.pbobjc.m; path = objectivec/google/protobuf/SourceContext.pbobjc.m; sourceTree = "<group>"; };
		AD74919683F083938A668E3F3D399E0E /* Pods-SimpleFcmClientTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleFcmClientTests-resources.sh"; sourceTree = "<group>"; };
		AE0D783C13ED177C09602A0B9B6D0942 /* Pods-SimpleFcmClient-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleFcmClient-resources.sh"; sourceTree = "<group>"; };
		AEDB2243A6CD346CDF0DB9A753A39090 /* GPBArray_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray_PackagePrivate.h; path = objectivec/GPBArray_PackagePrivate.h; sourceTree = "<group>"; };
		AF2EA46D8AA4FAEA8F6A3270C49D6FFD /* GPBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUtilities.m; path = objectivec/GPBUtilities.m; sourceTree = "<group>"; };
		B2A6D92AEE6DA9E51EFEDB35B8CB850F /* GPBUnknownFieldSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownFieldSet.m; path = objectivec/GPBUnknownFieldSet.m; sourceTree = "<group>"; };
		B33C94A72EC22495E640E6B0E81B7399 /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; };
		B5D730424C36A9D0BB12473678C5C609 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = "<group>"; };
		B9DB2913D1A90A71CF70E840F03289A9 /* Struct.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Struct.pbobjc.h; path = objectivec/google/protobuf/Struct.pbobjc.h; sourceTree = "<group>"; };
		BEA5C54D2295533D68B6477A369EDBAD /* Pods-SimpleFcmClient-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SimpleFcmClient-dummy.m"; sourceTree = "<group>"; };
		BEE4D1E30EF324F593A1FC334C3C79D8 /* GPBCodedInputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream_PackagePrivate.h; path = objectivec/GPBCodedInputStream_PackagePrivate.h; sourceTree = "<group>"; };
		C0317CC4332742F7BBFD8954FFEF65EA /* Protobuf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Protobuf-dummy.m"; sourceTree = "<group>"; };
		C0B66BBE7A2E9B28EE087721F90D00F2 /* GPBDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary.h; path = objectivec/GPBDictionary.h; sourceTree = "<group>"; };
		C0F15AF57D88CBECACCD6280434B04F4 /* GPBRuntimeTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRuntimeTypes.h; path = objectivec/GPBRuntimeTypes.h; sourceTree = "<group>"; };
		CC776ACF734C9EAD15DA52BA321A061C /* GPBUnknownField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownField.m; path = objectivec/GPBUnknownField.m; sourceTree = "<group>"; };
		CCCC637CB53D0538C2506E95224E1257 /* GPBCodedInputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream.h; path = objectivec/GPBCodedInputStream.h; sourceTree = "<group>"; };
		CE503410B599E7B4E0E4A35111B6C154 /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = "<group>"; };
		D53670FAA6E1718A718B2DEC4A0D5961 /* Duration.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Duration.pbobjc.h; path = objectivec/google/protobuf/Duration.pbobjc.h; sourceTree = "<group>"; };
		DD120B7A683C50623F2D70ACB691D30E /* GPBDictionary_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary_PackagePrivate.h; path = objectivec/GPBDictionary_PackagePrivate.h; sourceTree = "<group>"; };
		DD46E8B4748383BFBC2471F6C83F6E2B /* Pods-SimpleFcmClient.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleFcmClient.debug.xcconfig"; sourceTree = "<group>"; };
		DD7791BE8EB96D30317E4AA74D170EBD /* GPBUnknownFieldSet_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet_PackagePrivate.h; path = objectivec/GPBUnknownFieldSet_PackagePrivate.h; sourceTree = "<group>"; };
		DDB00209ED19EF6316064EEA3E014E71 /* Api.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Api.pbobjc.m; path = objectivec/google/protobuf/Api.pbobjc.m; sourceTree = "<group>"; };
		DDB3AB53CFA9E0C66B3A344EC6A73728 /* Pods-SimpleFcmClientTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SimpleFcmClientTests-acknowledgements.markdown"; sourceTree = "<group>"; };
		DF3EBD0AB922CCB3EEA466256111AD6E /* GPBWireFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWireFormat.h; path = objectivec/GPBWireFormat.h; sourceTree = "<group>"; };
		E02229F0115D720F63F7F4792EF69F97 /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = "<group>"; };
		E58D2CB8E48B86FE22E8AE943EBBD4EE /* libPods-SimpleFcmClient.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-SimpleFcmClient.a"; path = "libPods-SimpleFcmClient.a"; sourceTree = BUILT_PRODUCTS_DIR; };
		E86D866E7527079B9C72838146FC65E0 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = "<group>"; };
		EA487A96C086BF8484214DD55DCE2F2A /* Struct.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Struct.pbobjc.m; path = objectivec/google/protobuf/Struct.pbobjc.m; sourceTree = "<group>"; };
		EB0EE329D8FF6EA2AF9AC450D83516C7 /* Wrappers.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wrappers.pbobjc.h; path = objectivec/google/protobuf/Wrappers.pbobjc.h; sourceTree = "<group>"; };
		ED712B0D3871CCA85C312BC2282A4D51 /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream.h; path = objectivec/GPBCodedOutputStream.h; sourceTree = "<group>"; };
		EF5AA8FE9E9E725AAEC5D70A9B690572 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Frameworks/FirebaseCore.framework; sourceTree = "<group>"; };
		F84B3D5AD2479682F40C1B1C205CD658 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = Core/Sources/Firebase.h; sourceTree = "<group>"; };
		F935CCABB5F02337BDDE8E5F38F3069D /* GPBExtensionInternals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBExtensionInternals.h; path = objectivec/GPBExtensionInternals.h; sourceTree = "<group>"; };
		FBC167413116C6A3D5CB6A6FF890684A /* GPBWellKnownTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWellKnownTypes.h; path = objectivec/GPBWellKnownTypes.h; sourceTree = "<group>"; };
		FFB0B082A039C59F90E978F02C6326E5 /* Timestamp.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Timestamp.pbobjc.m; path = objectivec/google/protobuf/Timestamp.pbobjc.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		0358208F978975D190EF4B55D970EF56 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2B48CF794AFCB384EAA47D0299DDADCC /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6AD215334409363FBBC48E48118C5C62 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				383C73D6B9216B61B431A81B1EB356EA /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B7C745F556BF7DEA5ADD65DEAC389F59 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				34E4818C5EA161ACC2591B1BB43D10F9 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		C962209FB0F6E3EB5CA0727EFDBD0D78 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				996BEA533C2AC3DE8B151B5841CCC3D1 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		0D319A9C5263C0412941A1A3EC4F8805 /* Firebase */ = {
			isa = PBXGroup;
			children = (
				3BD570367DD5E33AC91C3E2F48E6AC34 /* Core */,
			);
			name = Firebase;
			path = Firebase;
			sourceTree = "<group>";
		};
		19306A63D276A736E5AB1201E0462FD1 /* Defines */ = {
			isa = PBXGroup;
			children = (
				AB05DC9372EAA60C5C0E92E232197796 /* GTMDefines.h */,
			);
			name = Defines;
			sourceTree = "<group>";
		};
		1CFA27C2AA41C331BEE5643D27D1399E /* FirebaseInstanceID */ = {
			isa = PBXGroup;
			children = (
				951560038475051860FDE2F5E2095077 /* Frameworks */,
			);
			name = FirebaseInstanceID;
			path = FirebaseInstanceID;
			sourceTree = "<group>";
		};
		30EF295669D4BF8BD0005016018B2179 /* Pods */ = {
			isa = PBXGroup;
			children = (
				0D319A9C5263C0412941A1A3EC4F8805 /* Firebase */,
				71702E9F6CB7EAB64093403F926DFD91 /* FirebaseAnalytics */,
				9318C1E5ECBC8F5A758A08B10663843F /* FirebaseCore */,
				1CFA27C2AA41C331BEE5643D27D1399E /* FirebaseInstanceID */,
				58B8D04DCF15478EF32D0E44E06B0534 /* FirebaseMessaging */,
				ED480C2E9FB7E69F8950ED16CE5B8F8F /* GoogleToolboxForMac */,
				7D3FDC13D280CC170470DABC7290D5D7 /* Protobuf */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		3BD570367DD5E33AC91C3E2F48E6AC34 /* Core */ = {
			isa = PBXGroup;
			children = (
				F84B3D5AD2479682F40C1B1C205CD658 /* Firebase.h */,
			);
			name = Core;
			sourceTree = "<group>";
		};
		40F3D929768296C162514C5DC0400F65 /* Products */ = {
			isa = PBXGroup;
			children = (
				53A92AFAC3C865F085D8B48D41D563E0 /* libGoogleToolboxForMac.a */,
				E58D2CB8E48B86FE22E8AE943EBBD4EE /* libPods-SimpleFcmClient.a */,
				06AB88C0C17B1B26E5FF388C86D1BE2F /* libPods-SimpleFcmClientTests.a */,
				B33C94A72EC22495E640E6B0E81B7399 /* libProtobuf.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		450CD6ED4C96E2EF7A2C4FFE8E57C23B /* Logger */ = {
			isa = PBXGroup;
			children = (
				E86D866E7527079B9C72838146FC65E0 /* GTMLogger.h */,
				9E08BE5D6BE7BC2A5D25659901741F8D /* GTMLogger.m */,
			);
			name = Logger;
			sourceTree = "<group>";
		};
		51601AA70AB9A071379735C01FA40F10 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				6C3F5FE155294108B2C460C2EC7F5905 /* FirebaseAnalytics.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		58B8D04DCF15478EF32D0E44E06B0534 /* FirebaseMessaging */ = {
			isa = PBXGroup;
			children = (
				79DF0231A00501DA073BFAEAE338E7C4 /* Frameworks */,
			);
			name = FirebaseMessaging;
			path = FirebaseMessaging;
			sourceTree = "<group>";
		};
		71702E9F6CB7EAB64093403F926DFD91 /* FirebaseAnalytics */ = {
			isa = PBXGroup;
			children = (
				51601AA70AB9A071379735C01FA40F10 /* Frameworks */,
			);
			name = FirebaseAnalytics;
			path = FirebaseAnalytics;
			sourceTree = "<group>";
		};
		79DF0231A00501DA073BFAEAE338E7C4 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				8F99A74D0E82B0121B23C7A46C9F460B /* FirebaseMessaging.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		7D3FDC13D280CC170470DABC7290D5D7 /* Protobuf */ = {
			isa = PBXGroup;
			children = (
				001E97685635E5E5D85137D15AC5F1EC /* Any.pbobjc.h */,
				54C4EE1A27D31835838453206F2A58CD /* Any.pbobjc.m */,
				7A51F2B567669037BF3936E5CA172E70 /* Api.pbobjc.h */,
				DDB00209ED19EF6316064EEA3E014E71 /* Api.pbobjc.m */,
				D53670FAA6E1718A718B2DEC4A0D5961 /* Duration.pbobjc.h */,
				1C039443FDB80129B611548AD43B612D /* Duration.pbobjc.m */,
				7DB44A4D25E7DF53601657E9E2474251 /* Empty.pbobjc.h */,
				560DFBB8666AEC35F6725B87070327EF /* Empty.pbobjc.m */,
				2BCD98927E2E636FDB3DD76DF0E71CFF /* FieldMask.pbobjc.h */,
				49742342001E384A48A41292E56FCF35 /* FieldMask.pbobjc.m */,
				79718FBF4F4C529E96266576E843738F /* GPBArray.h */,
				2BCA419DEE41C61FAEB2F6CF8AE135CA /* GPBArray.m */,
				AEDB2243A6CD346CDF0DB9A753A39090 /* GPBArray_PackagePrivate.h */,
				540B2D2CBD1C17660F3ED370958484B8 /* GPBBootstrap.h */,
				CCCC637CB53D0538C2506E95224E1257 /* GPBCodedInputStream.h */,
				1FA04AC13CFC73F6CE9A4DED9CE97908 /* GPBCodedInputStream.m */,
				BEE4D1E30EF324F593A1FC334C3C79D8 /* GPBCodedInputStream_PackagePrivate.h */,
				ED712B0D3871CCA85C312BC2282A4D51 /* GPBCodedOutputStream.h */,
				3144A339047FF93537D206919CD8123B /* GPBCodedOutputStream.m */,
				8F650B9F7CD0DFCCBE4F47028DA2A88B /* GPBCodedOutputStream_PackagePrivate.h */,
				6DF2B5848E0B8DD0038079C4F46E73D7 /* GPBDescriptor.h */,
				3C5FFA7382C895811E3B0023C0F41A23 /* GPBDescriptor.m */,
				1A954DE546890C19A47689E7880DEB58 /* GPBDescriptor_PackagePrivate.h */,
				C0B66BBE7A2E9B28EE087721F90D00F2 /* GPBDictionary.h */,
				403E122259C6D09E8CA6642A34DFD387 /* GPBDictionary.m */,
				DD120B7A683C50623F2D70ACB691D30E /* GPBDictionary_PackagePrivate.h */,
				F935CCABB5F02337BDDE8E5F38F3069D /* GPBExtensionInternals.h */,
				9E0E29E974A875544C2664856945600F /* GPBExtensionInternals.m */,
				2E536CB0A86E891E53BBBCE77E73737B /* GPBExtensionRegistry.h */,
				2E3145450B8C4DA84CE065BF8059AC12 /* GPBExtensionRegistry.m */,
				1618937E888411B5734B28440C9984BB /* GPBMessage.h */,
				A7ED402B02A8F914913B199E8524129B /* GPBMessage.m */,
				19E913B80F30C3E8FAAFEA39F93B2E2F /* GPBMessage_PackagePrivate.h */,
				9FE01C0885F4C0235FE15152DD46C589 /* GPBProtocolBuffers.h */,
				8952804670E9F30C536634A5CFBB8C7B /* GPBProtocolBuffers_RuntimeSupport.h */,
				9EA8A3C6BF5B08B278E78881E31D040D /* GPBRootObject.h */,
				2587BF16BB234A7A454FB192744EEF0B /* GPBRootObject.m */,
				4257DCAC74DB9528BE30D480C83A0614 /* GPBRootObject_PackagePrivate.h */,
				C0F15AF57D88CBECACCD6280434B04F4 /* GPBRuntimeTypes.h */,
				7D59C3004FDCA38525EE2EC0EA6A86E7 /* GPBUnknownField.h */,
				CC776ACF734C9EAD15DA52BA321A061C /* GPBUnknownField.m */,
				2E2A9FEFA9D13AEDC72FECE90E8ADF06 /* GPBUnknownField_PackagePrivate.h */,
				AAE41CCD2EF876A2901422565A318450 /* GPBUnknownFieldSet.h */,
				B2A6D92AEE6DA9E51EFEDB35B8CB850F /* GPBUnknownFieldSet.m */,
				DD7791BE8EB96D30317E4AA74D170EBD /* GPBUnknownFieldSet_PackagePrivate.h */,
				9E63401A4016579D0174BC4CF2130180 /* GPBUtilities.h */,
				AF2EA46D8AA4FAEA8F6A3270C49D6FFD /* GPBUtilities.m */,
				5CD6A8E93072E973518F5B71F6F0228B /* GPBUtilities_PackagePrivate.h */,
				FBC167413116C6A3D5CB6A6FF890684A /* GPBWellKnownTypes.h */,
				6350E3F8D26F471341917F83FFA34173 /* GPBWellKnownTypes.m */,
				DF3EBD0AB922CCB3EEA466256111AD6E /* GPBWireFormat.h */,
				08FD64A48EE22B8B96AC74D7B5F9ED9D /* GPBWireFormat.m */,
				83B4ABDC75BD3D90ED81B8E3493A181B /* SourceContext.pbobjc.h */,
				AC767302BE2740A218AB38624FAF415D /* SourceContext.pbobjc.m */,
				B9DB2913D1A90A71CF70E840F03289A9 /* Struct.pbobjc.h */,
				EA487A96C086BF8484214DD55DCE2F2A /* Struct.pbobjc.m */,
				1EF7A1D9262A7F997B1CB962C559EDFB /* Timestamp.pbobjc.h */,
				FFB0B082A039C59F90E978F02C6326E5 /* Timestamp.pbobjc.m */,
				12678477998C033F1E20696535904D0D /* Type.pbobjc.h */,
				3A48D3AFA32C77CF2B0E0EF95B65114B /* Type.pbobjc.m */,
				EB0EE329D8FF6EA2AF9AC450D83516C7 /* Wrappers.pbobjc.h */,
				66511A40A137AF4ED38BD50124E409C3 /* Wrappers.pbobjc.m */,
				FA547AB1CB08DE59770A5A099797F90A /* Support Files */,
			);
			name = Protobuf;
			path = Protobuf;
			sourceTree = "<group>";
		};
		7DB346D0F39D3F0E887471402A8071AB = {
			isa = PBXGroup;
			children = (
				93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
				BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,
				30EF295669D4BF8BD0005016018B2179 /* Pods */,
				40F3D929768296C162514C5DC0400F65 /* Products */,
				8B0E608BB8D074C0521C6EDC1C9EC88C /* Targets Support Files */,
			);
			sourceTree = "<group>";
		};
		8B0E608BB8D074C0521C6EDC1C9EC88C /* Targets Support Files */ = {
			isa = PBXGroup;
			children = (
				9F985E21FD057D378B1BB44441C38DFF /* Pods-SimpleFcmClient */,
				C52FC5F5C752CD8A29C78D581750E372 /* Pods-SimpleFcmClientTests */,
			);
			name = "Targets Support Files";
			sourceTree = "<group>";
		};
		9318C1E5ECBC8F5A758A08B10663843F /* FirebaseCore */ = {
			isa = PBXGroup;
			children = (
				D80AD96E6BC0505B4B15753C17023B9D /* Frameworks */,
			);
			name = FirebaseCore;
			path = FirebaseCore;
			sourceTree = "<group>";
		};
		951560038475051860FDE2F5E2095077 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				36D1B1AABDB953FBA64CFE848B4AFC09 /* FirebaseInstanceID.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		9F985E21FD057D378B1BB44441C38DFF /* Pods-SimpleFcmClient */ = {
			isa = PBXGroup;
			children = (
				3082987BE13377BB699484A9DBC1DE1F /* Pods-SimpleFcmClient-acknowledgements.markdown */,
				06D12FE00EC317AEE94E64410CC9ACF4 /* Pods-SimpleFcmClient-acknowledgements.plist */,
				BEA5C54D2295533D68B6477A369EDBAD /* Pods-SimpleFcmClient-dummy.m */,
				03A5880045CC2FC7528C0C7D1C65C72D /* Pods-SimpleFcmClient-frameworks.sh */,
				AE0D783C13ED177C09602A0B9B6D0942 /* Pods-SimpleFcmClient-resources.sh */,
				DD46E8B4748383BFBC2471F6C83F6E2B /* Pods-SimpleFcmClient.debug.xcconfig */,
				6149BC34D41BF63D734F7A477A71FD91 /* Pods-SimpleFcmClient.release.xcconfig */,
			);
			name = "Pods-SimpleFcmClient";
			path = "Target Support Files/Pods-SimpleFcmClient";
			sourceTree = "<group>";
		};
		BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				D35AF013A5F0BAD4F32504907A52519E /* iOS */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		C383707B934D0A3A945B0C4B0D1F5D6C /* NSData+zlib */ = {
			isa = PBXGroup;
			children = (
				B5D730424C36A9D0BB12473678C5C609 /* GTMNSData+zlib.h */,
				62EAF55A7EE5B2037B8244AFD62E4C61 /* GTMNSData+zlib.m */,
			);
			name = "NSData+zlib";
			sourceTree = "<group>";
		};
		C52FC5F5C752CD8A29C78D581750E372 /* Pods-SimpleFcmClientTests */ = {
			isa = PBXGroup;
			children = (
				DDB3AB53CFA9E0C66B3A344EC6A73728 /* Pods-SimpleFcmClientTests-acknowledgements.markdown */,
				6BA5B7D2B909DB065E533260035479FA /* Pods-SimpleFcmClientTests-acknowledgements.plist */,
				548BDC92E895969C1BB17757E75A640F /* Pods-SimpleFcmClientTests-dummy.m */,
				5E046CD0D066F7D3659B8E174CC410CD /* Pods-SimpleFcmClientTests-frameworks.sh */,
				AD74919683F083938A668E3F3D399E0E /* Pods-SimpleFcmClientTests-resources.sh */,
				1B961E71592543F0D1A1075EB86FB39F /* Pods-SimpleFcmClientTests.debug.xcconfig */,
				5514782F90CD27BE915D546C1762C84C /* Pods-SimpleFcmClientTests.release.xcconfig */,
			);
			name = "Pods-SimpleFcmClientTests";
			path = "Target Support Files/Pods-SimpleFcmClientTests";
			sourceTree = "<group>";
		};
		D35AF013A5F0BAD4F32504907A52519E /* iOS */ = {
			isa = PBXGroup;
			children = (
				6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */,
			);
			name = iOS;
			sourceTree = "<group>";
		};
		D80AD96E6BC0505B4B15753C17023B9D /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				EF5AA8FE9E9E725AAEC5D70A9B690572 /* FirebaseCore.framework */,
				66386A83E51D8882A06B4826D556C639 /* FirebaseCoreDiagnostics.framework */,
				5D3D0F2D34FBA8D3607147A7D67AA9F3 /* FirebaseNanoPB.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		EC3CE45745761B95D10E8E9F2908FD08 /* Support Files */ = {
			isa = PBXGroup;
			children = (
				E02229F0115D720F63F7F4792EF69F97 /* GoogleToolboxForMac.xcconfig */,
				CE503410B599E7B4E0E4A35111B6C154 /* GoogleToolboxForMac-dummy.m */,
				37AB8523D4B5F7828206A8D829687D3F /* GoogleToolboxForMac-prefix.pch */,
			);
			name = "Support Files";
			path = "../Target Support Files/GoogleToolboxForMac";
			sourceTree = "<group>";
		};
		ED480C2E9FB7E69F8950ED16CE5B8F8F /* GoogleToolboxForMac */ = {
			isa = PBXGroup;
			children = (
				19306A63D276A736E5AB1201E0462FD1 /* Defines */,
				450CD6ED4C96E2EF7A2C4FFE8E57C23B /* Logger */,
				C383707B934D0A3A945B0C4B0D1F5D6C /* NSData+zlib */,
				EC3CE45745761B95D10E8E9F2908FD08 /* Support Files */,
			);
			name = GoogleToolboxForMac;
			path = GoogleToolboxForMac;
			sourceTree = "<group>";
		};
		FA547AB1CB08DE59770A5A099797F90A /* Support Files */ = {
			isa = PBXGroup;
			children = (
				4985912EC58108202C6D3C1DE1C43152 /* Protobuf.xcconfig */,
				C0317CC4332742F7BBFD8954FFEF65EA /* Protobuf-dummy.m */,
				23DF27EFB5A4DDDC05A71D8BBF41D407 /* Protobuf-prefix.pch */,
			);
			name = "Support Files";
			path = "../Target Support Files/Protobuf";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		53AC353E7DDDB2167D1AB17676628071 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				90906AC58824566DFC6875E1ED25E855 /* GTMDefines.h in Headers */,
				154E5AB0C541CED05D795C6198947D27 /* GTMLogger.h in Headers */,
				6A5451E67CBAAED4E81995B58427A175 /* GTMNSData+zlib.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		AEACFD48A60E7AFC95E5E4561EA1B4B1 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7DF8FB3344C4E5267B2040B7FCFE3F48 /* Any.pbobjc.h in Headers */,
				3EDC5296A8279F650D23E2FFF5DA1F5B /* Api.pbobjc.h in Headers */,
				EB6836C146E4D4D685BCEFC69715A287 /* Duration.pbobjc.h in Headers */,
				A7E0EDCA9E5FAEA4CFCC9B4EBDBF4AE4 /* Empty.pbobjc.h in Headers */,
				D2760E9C8B3DB289E0584C8986FC4CFC /* FieldMask.pbobjc.h in Headers */,
				B7F3CC765F3245C3414590195BC3213B /* GPBArray.h in Headers */,
				6C02A5F32DD3E5CB6B62D8B2FADADCAD /* GPBArray_PackagePrivate.h in Headers */,
				5D90CF0BF59C0A249BA78C2E0E303C19 /* GPBBootstrap.h in Headers */,
				AE89E317E3FE463795135A5E5279AD25 /* GPBCodedInputStream.h in Headers */,
				FBCE368EA5C3EDCB14D5121CCBD5C714 /* GPBCodedInputStream_PackagePrivate.h in Headers */,
				E9797798958961A15A4439611E5A621A /* GPBCodedOutputStream.h in Headers */,
				1821DFD0A2238E97C8D0F7ED1AFF0112 /* GPBCodedOutputStream_PackagePrivate.h in Headers */,
				53B98E3F25862473E75D73A37BB16DDD /* GPBDescriptor.h in Headers */,
				B0F5154677A95F19BE5A7237CCB4AB65 /* GPBDescriptor_PackagePrivate.h in Headers */,
				389C6D87B27C55A9CDF4D2C8032B4F2B /* GPBDictionary.h in Headers */,
				4F1F0BA4E73DDFFAAAF3C503FE28C14B /* GPBDictionary_PackagePrivate.h in Headers */,
				39FBF1BFF70D7D0DB3FC70C8C0F89B70 /* GPBExtensionInternals.h in Headers */,
				7E5DC039F5A628E75134BB97A47681E9 /* GPBExtensionRegistry.h in Headers */,
				0F551AAC7A283B90D058A7D5EE4E9365 /* GPBMessage.h in Headers */,
				C5F6A6DF7AEFF132F251C50436CB5AD4 /* GPBMessage_PackagePrivate.h in Headers */,
				CBA2F6ABAFECB265DF3035C018DE85B2 /* GPBProtocolBuffers.h in Headers */,
				7F1C9A86C742ACB1851BDB4D59E04845 /* GPBProtocolBuffers_RuntimeSupport.h in Headers */,
				08767D1B40066927371F2AACF953FAE8 /* GPBRootObject.h in Headers */,
				035D977FDEFE77020E12C03AD3CD9465 /* GPBRootObject_PackagePrivate.h in Headers */,
				1E7D07DF8DC97D9F7F75663D92AA7CEB /* GPBRuntimeTypes.h in Headers */,
				B57868C6793775DCA5B332540C054308 /* GPBUnknownField.h in Headers */,
				A3DECA17505966ED94190C617D7812C0 /* GPBUnknownField_PackagePrivate.h in Headers */,
				2C7156530E5F1F5E383CD83AC547F8ED /* GPBUnknownFieldSet.h in Headers */,
				9C89C009AE0F8913925ECF645B532AFF /* GPBUnknownFieldSet_PackagePrivate.h in Headers */,
				82F3FB4FC93B3637E4F280181766D610 /* GPBUtilities.h in Headers */,
				F920BE2F16587A14615EE5D57B41BF5F /* GPBUtilities_PackagePrivate.h in Headers */,
				2679079DCC30B65E60F1CB284999ABE9 /* GPBWellKnownTypes.h in Headers */,
				022C88EB937CD3EA29EF85A218ED595F /* GPBWireFormat.h in Headers */,
				7B5D421E2F127439E2D6CD0C7EB63869 /* SourceContext.pbobjc.h in Headers */,
				8A09BC5645C3963B2A5FA34E3446BCE4 /* Struct.pbobjc.h in Headers */,
				3E65539A023736C2000EF77E5F7ED90E /* Timestamp.pbobjc.h in Headers */,
				FFC2AD293139DCC5787573E0EC722D82 /* Type.pbobjc.h in Headers */,
				B23C3AFC10658266FB8C0AA4B7A791A1 /* Wrappers.pbobjc.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		7EC0225E90A469E6E9F93114913D0F38 /* Pods-SimpleFcmClient */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = BE356D2B8A50AF7964E0C5B5BE95126B /* Build configuration list for PBXNativeTarget "Pods-SimpleFcmClient" */;
			buildPhases = (
				3955CF9890B1F119B2803EE9C046C078 /* Sources */,
				0358208F978975D190EF4B55D970EF56 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				4B147F9A5DC6F84DCDF8516E908D3B12 /* PBXTargetDependency */,
				0BDEF81AA3CB1400F4A7B54D36E22469 /* PBXTargetDependency */,
			);
			name = "Pods-SimpleFcmClient";
			productName = "Pods-SimpleFcmClient";
			productReference = E58D2CB8E48B86FE22E8AE943EBBD4EE /* libPods-SimpleFcmClient.a */;
			productType = "com.apple.product-type.library.static";
		};
		BFF828E89C343AB85C258EBF8A5AEB93 /* Pods-SimpleFcmClientTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1BBA147F24D2546AA286512A4C2035DE /* Build configuration list for PBXNativeTarget "Pods-SimpleFcmClientTests" */;
			buildPhases = (
				28A0697FCC7B6915BED94B347321156E /* Sources */,
				C962209FB0F6E3EB5CA0727EFDBD0D78 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Pods-SimpleFcmClientTests";
			productName = "Pods-SimpleFcmClientTests";
			productReference = 06AB88C0C17B1B26E5FF388C86D1BE2F /* libPods-SimpleFcmClientTests.a */;
			productType = "com.apple.product-type.library.static";
		};
		CFA4C54A12C3652ECAAC9B830AEAAEE6 /* Protobuf */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D5A924DCA144AA05B78410686AD91ED1 /* Build configuration list for PBXNativeTarget "Protobuf" */;
			buildPhases = (
				3703A4B910E9B844197A7CA0CE8B056E /* Sources */,
				B7C745F556BF7DEA5ADD65DEAC389F59 /* Frameworks */,
				AEACFD48A60E7AFC95E5E4561EA1B4B1 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Protobuf;
			productName = Protobuf;
			productReference = B33C94A72EC22495E640E6B0E81B7399 /* libProtobuf.a */;
			productType = "com.apple.product-type.library.static";
		};
		FA9D13261AF395CF5D54BB3203DF2A6E /* GoogleToolboxForMac */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 94A6FD8AAC113A69F57982237B2DDA0F /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */;
			buildPhases = (
				B311E4867662945861847843827DB0EB /* Sources */,
				6AD215334409363FBBC48E48118C5C62 /* Frameworks */,
				53AC353E7DDDB2167D1AB17676628071 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = GoogleToolboxForMac;
			productName = GoogleToolboxForMac;
			productReference = 53A92AFAC3C865F085D8B48D41D563E0 /* libGoogleToolboxForMac.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 0830;
				LastUpgradeCheck = 0700;
			};
			buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
			productRefGroup = 40F3D929768296C162514C5DC0400F65 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				FA9D13261AF395CF5D54BB3203DF2A6E /* GoogleToolboxForMac */,
				7EC0225E90A469E6E9F93114913D0F38 /* Pods-SimpleFcmClient */,
				BFF828E89C343AB85C258EBF8A5AEB93 /* Pods-SimpleFcmClientTests */,
				CFA4C54A12C3652ECAAC9B830AEAAEE6 /* Protobuf */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		28A0697FCC7B6915BED94B347321156E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				72EBC660EDAA849E02E33A5524D69162 /* Pods-SimpleFcmClientTests-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		3703A4B910E9B844197A7CA0CE8B056E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				78C12914333DEDC0F63FA64FCBBC1E10 /* Any.pbobjc.m in Sources */,
				A710DD9D5F838EEB2BFAA4FD0DBD989D /* Api.pbobjc.m in Sources */,
				9073988F5740D23AD0B99DAC5E49E23F /* Duration.pbobjc.m in Sources */,
				C27EB784B1A014D94C770626163C481E /* Empty.pbobjc.m in Sources */,
				E4E53EFC1FE409342363FF53597D7BFC /* FieldMask.pbobjc.m in Sources */,
				44A7B8CE323AADC54DD7CD4DC0CA58FF /* GPBArray.m in Sources */,
				B48DE60976D8CBB4E6B0E2729EA15B96 /* GPBCodedInputStream.m in Sources */,
				C3571844CF2B1C097D40380BA5FFD352 /* GPBCodedOutputStream.m in Sources */,
				51BE2E3CC07B2C1779FE82138CF1B3E2 /* GPBDescriptor.m in Sources */,
				961B5650810F2AA7A03E7165E3BEEB7D /* GPBDictionary.m in Sources */,
				B1023B4FB351F3D9429A560901DDFECD /* GPBExtensionInternals.m in Sources */,
				B55A53D0E461B8E630046AB07A33D2E1 /* GPBExtensionRegistry.m in Sources */,
				A7D7A6EABA0A0F7BF852E9CDF7FA6D50 /* GPBMessage.m in Sources */,
				2CF613841A60FB138AC152EF0AEFE1A0 /* GPBRootObject.m in Sources */,
				B537A5CEB840DC90F435F1218EF25E67 /* GPBUnknownField.m in Sources */,
				57EC067AD948B93597D3292D862E174F /* GPBUnknownFieldSet.m in Sources */,
				326DEF994F8EFA0913BF9267B76580A9 /* GPBUtilities.m in Sources */,
				EE196D5A1B65EBB5BD0213A11EDE1196 /* GPBWellKnownTypes.m in Sources */,
				8F4A30547BBB32E8E74B7CB2D40DEF5B /* GPBWireFormat.m in Sources */,
				9FB5CB5C1DB3D72267DAF009D1699BF7 /* Protobuf-dummy.m in Sources */,
				5E1A517B79CDB91F1E5973C50CA840A9 /* SourceContext.pbobjc.m in Sources */,
				6254516836361AA69C3DDBDF22C40B03 /* Struct.pbobjc.m in Sources */,
				DCA8B7E9C917A1732144AFFBC3232AC3 /* Timestamp.pbobjc.m in Sources */,
				4BA32CED473D3B3538E3749F05350F33 /* Type.pbobjc.m in Sources */,
				919C4E3F1F8B6B0F6E3F71D73DEFDD19 /* Wrappers.pbobjc.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		3955CF9890B1F119B2803EE9C046C078 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D3E7A58F79A630054695EF25CEA61678 /* Pods-SimpleFcmClient-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B311E4867662945861847843827DB0EB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				5B8F036F7FAAF35FE98CE3FBFF25D72F /* GoogleToolboxForMac-dummy.m in Sources */,
				CE793643063B71F80F32F0851FDABFA5 /* GTMLogger.m in Sources */,
				F1B1695A6AB8AFEC306AB371F2DCA21F /* GTMNSData+zlib.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		0BDEF81AA3CB1400F4A7B54D36E22469 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = Protobuf;
			target = CFA4C54A12C3652ECAAC9B830AEAAEE6 /* Protobuf */;
			targetProxy = F0E6A3E75B022EC3745C6B955FEEB4D1 /* PBXContainerItemProxy */;
		};
		4B147F9A5DC6F84DCDF8516E908D3B12 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = GoogleToolboxForMac;
			target = FA9D13261AF395CF5D54BB3203DF2A6E /* GoogleToolboxForMac */;
			targetProxy = DB81D0D7C2B7B8F08B93998E40D03A2B /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		34FE9531DA9AF2820790339988D5FF41 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGNING_REQUIRED = NO;
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_RELEASE=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		7494FA90F1E2CA4513619BACA41ED92D /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = DD46E8B4748383BFBC2471F6C83F6E2B /* Pods-SimpleFcmClient.debug.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MACH_O_TYPE = staticlib;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		74B4743BECF9D908735E97BF4D95EC50 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4985912EC58108202C6D3C1DE1C43152 /* Protobuf.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Protobuf/Protobuf-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 7.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRIVATE_HEADERS_FOLDER_PATH = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				PUBLIC_HEADERS_FOLDER_PATH = "";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		8BEB57790DA8482F640B6C8B0F918D38 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 5514782F90CD27BE915D546C1762C84C /* Pods-SimpleFcmClientTests.release.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MACH_O_TYPE = staticlib;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		9289E166D43D7D61AD8481FDAABCCEA1 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 1B961E71592543F0D1A1075EB86FB39F /* Pods-SimpleFcmClientTests.debug.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MACH_O_TYPE = staticlib;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		BE31CE5A4CEE30B7760F0A29A8109B34 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = E02229F0115D720F63F7F4792EF69F97 /* GoogleToolboxForMac.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 5.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRIVATE_HEADERS_FOLDER_PATH = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				PUBLIC_HEADERS_FOLDER_PATH = "";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		C092DBBB18598FF1BD4BE64AFEB7D78F /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = E02229F0115D720F63F7F4792EF69F97 /* GoogleToolboxForMac.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 5.0;
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRIVATE_HEADERS_FOLDER_PATH = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				PUBLIC_HEADERS_FOLDER_PATH = "";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Debug;
		};
		C104F7F091290C3D1E248192F07FE689 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGNING_REQUIRED = NO;
				COPY_PHASE_STRIP = NO;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_DEBUG=1",
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				ONLY_ACTIVE_ARCH = YES;
				PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
			};
			name = Debug;
		};
		C46D22D9DE58AF6ED670705A5EE282B0 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4985912EC58108202C6D3C1DE1C43152 /* Protobuf.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/Protobuf/Protobuf-prefix.pch";
				IPHONEOS_DEPLOYMENT_TARGET = 7.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PRIVATE_HEADERS_FOLDER_PATH = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
				PUBLIC_HEADERS_FOLDER_PATH = "";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		E2DDE6C0B2EDBF6D41FFAF492FB2F615 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 6149BC34D41BF63D734F7A477A71FD91 /* Pods-SimpleFcmClient.release.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
				"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MACH_O_TYPE = staticlib;
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1BBA147F24D2546AA286512A4C2035DE /* Build configuration list for PBXNativeTarget "Pods-SimpleFcmClientTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				9289E166D43D7D61AD8481FDAABCCEA1 /* Debug */,
				8BEB57790DA8482F640B6C8B0F918D38 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C104F7F091290C3D1E248192F07FE689 /* Debug */,
				34FE9531DA9AF2820790339988D5FF41 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		94A6FD8AAC113A69F57982237B2DDA0F /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C092DBBB18598FF1BD4BE64AFEB7D78F /* Debug */,
				BE31CE5A4CEE30B7760F0A29A8109B34 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		BE356D2B8A50AF7964E0C5B5BE95126B /* Build configuration list for PBXNativeTarget "Pods-SimpleFcmClient" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7494FA90F1E2CA4513619BACA41ED92D /* Debug */,
				E2DDE6C0B2EDBF6D41FFAF492FB2F615 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		D5A924DCA144AA05B78410686AD91ED1 /* Build configuration list for PBXNativeTarget "Protobuf" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				74B4743BECF9D908735E97BF4D95EC50 /* Debug */,
				C46D22D9DE58AF6ED670705A5EE282B0 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}