Skip to content

Commit cea0001

Browse files
author
Igor Khomenko
committed
updated chat cordova sample
1 parent ac347e6 commit cea0001

File tree

61 files changed

+232
-85
lines changed

Some content is hidden

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

61 files changed

+232
-85
lines changed

samples/cordova/text_chat/config.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<widget id="com.quickblox.cordova.chat" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3-
<name>Text chat</name>
2+
<widget id="com.quickblox.cordova.text_chat" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3+
<name>QB Text Chat</name>
44
<description>
55
Apache Cordova simple code sample for Web XMPP Chat (via QuickBlox SDK + API)
66
</description>
77
<author email="assist@quickblox.com" href="https://quickblox.com">
88
QuickBlox Team
99
</author>
1010
<content src="index.html" />
11-
<plugin name="cordova-plugin-whitelist" spec="1" />
1211
<access origin="*" />
1312
<allow-intent href="http://*/*" />
1413
<allow-intent href="https://*/*" />
@@ -27,4 +26,6 @@
2726
<engine name="ios" spec="~4.3.0" />
2827
<engine name="android" spec="~6.0.0" />
2928
<engine name="browser" spec="~4.1.0" />
29+
<plugin name="cordova-plugin-whitelist" spec="1" />
30+
<plugin name="cordova-plugin-websocket" spec="~0.12.0" />
3031
</widget>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0810"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "D2AAC07D0554694100DB518D"
18+
BuildableName = "libCordova.a"
19+
BlueprintName = "CordovaLib"
20+
ReferencedContainer = "container:CordovaLib.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
34+
</TestAction>
35+
<LaunchAction
36+
buildConfiguration = "Debug"
37+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
38+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
39+
launchStyle = "0"
40+
useCustomWorkingDirectory = "NO"
41+
ignoresPersistentStateOnLaunch = "NO"
42+
debugDocumentVersioning = "YES"
43+
debugServiceExtension = "internal"
44+
allowLocationSimulation = "YES">
45+
<MacroExpansion>
46+
<BuildableReference
47+
BuildableIdentifier = "primary"
48+
BlueprintIdentifier = "D2AAC07D0554694100DB518D"
49+
BuildableName = "libCordova.a"
50+
BlueprintName = "CordovaLib"
51+
ReferencedContainer = "container:CordovaLib.xcodeproj">
52+
</BuildableReference>
53+
</MacroExpansion>
54+
<AdditionalOptions>
55+
</AdditionalOptions>
56+
</LaunchAction>
57+
<ProfileAction
58+
buildConfiguration = "Release"
59+
shouldUseLaunchSchemeArgsEnv = "YES"
60+
savedToolIdentifier = ""
61+
useCustomWorkingDirectory = "NO"
62+
debugDocumentVersioning = "YES">
63+
<MacroExpansion>
64+
<BuildableReference
65+
BuildableIdentifier = "primary"
66+
BlueprintIdentifier = "D2AAC07D0554694100DB518D"
67+
BuildableName = "libCordova.a"
68+
BlueprintName = "CordovaLib"
69+
ReferencedContainer = "container:CordovaLib.xcodeproj">
70+
</BuildableReference>
71+
</MacroExpansion>
72+
</ProfileAction>
73+
<AnalyzeAction
74+
buildConfiguration = "Debug">
75+
</AnalyzeAction>
76+
<ArchiveAction
77+
buildConfiguration = "Release"
78+
revealArchiveInOrganizer = "YES">
79+
</ArchiveAction>
80+
</Scheme>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>CordovaLib.xcscheme</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>1</integer>
11+
</dict>
12+
</dict>
13+
<key>SuppressBuildableAutocreation</key>
14+
<dict>
15+
<key>D2AAC07D0554694100DB518D</key>
16+
<dict>
17+
<key>primary</key>
18+
<true/>
19+
</dict>
20+
</dict>
21+
</dict>
22+
</plist>

samples/cordova/text_chat/platforms/ios/QB Chat.xcodeproj/project.pbxproj renamed to samples/cordova/text_chat/platforms/ios/QB Text Chat.xcodeproj/project.pbxproj

Lines changed: 42 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@
55
};
66
objectVersion = 46;
77
objects = {
8+
89
/* Begin PBXBuildFile section */
910
0207DA581B56EA530066E2B4 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0207DA571B56EA530066E2B4 /* Images.xcassets */; };
1011
1D3623260D0F684500981E51 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* AppDelegate.m */; };
1112
1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
1213
301BF552109A68D80062928A /* libCordova.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 301BF535109A57CC0062928A /* libCordova.a */; };
1314
302D95F114D2391D003F00A1 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 302D95EF14D2391D003F00A1 /* MainViewController.m */; };
1415
302D95F214D2391D003F00A1 /* MainViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 302D95F014D2391D003F00A1 /* MainViewController.xib */; };
15-
3047A5121AB8059700498E2A /* build-debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 3047A50F1AB8059700498E2A /* build-debug.xcconfig */; };
16-
3047A5131AB8059700498E2A /* build-release.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 3047A5101AB8059700498E2A /* build-release.xcconfig */; };
17-
3047A5141AB8059700498E2A /* build.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 3047A5111AB8059700498E2A /* build.xcconfig */; };
1816
6AFF5BF91D6E424B00AB3073 /* CDVLaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6AFF5BF81D6E424B00AB3073 /* CDVLaunchScreen.storyboard */; };
1917
/* End PBXBuildFile section */
2018

@@ -36,26 +34,26 @@
3634
/* End PBXContainerItemProxy section */
3735

3836
/* Begin PBXFileReference section */
39-
0207DA571B56EA530066E2B4 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = "QB Chat/Images.xcassets"; sourceTree = SOURCE_ROOT; };
37+
0207DA571B56EA530066E2B4 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = "QB Text Chat/Images.xcassets"; sourceTree = SOURCE_ROOT; };
4038
1D3623240D0F684500981E51 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
4139
1D3623250D0F684500981E51 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
42-
1D6058910D05DD3D006BFB54 /* QB Chat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "QB Chat.app"; sourceTree = BUILT_PRODUCTS_DIR; };
40+
1D6058910D05DD3D006BFB54 /* QB Text Chat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "QB Text Chat.app"; sourceTree = BUILT_PRODUCTS_DIR; };
4341
29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
4442
301BF52D109A57CC0062928A /* CordovaLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = CordovaLib.xcodeproj; path = CordovaLib/CordovaLib.xcodeproj; sourceTree = "<group>"; };
4543
301BF56E109A69640062928A /* www */ = {isa = PBXFileReference; lastKnownFileType = folder; path = www; sourceTree = SOURCE_ROOT; };
4644
302D95EE14D2391D003F00A1 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
4745
302D95EF14D2391D003F00A1 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
4846
302D95F014D2391D003F00A1 /* MainViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MainViewController.xib; sourceTree = "<group>"; };
49-
3047A50F1AB8059700498E2A /* build-debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "build-debug.xcconfig"; path = cordova/build-debug.xcconfig; sourceTree = SOURCE_ROOT; };
50-
3047A5101AB8059700498E2A /* build-release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "build-release.xcconfig"; path = cordova/build-release.xcconfig; sourceTree = SOURCE_ROOT; };
47+
3047A50F1AB8059700498E2A /* build-debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "build-debug.xcconfig"; path = "cordova/build-debug.xcconfig"; sourceTree = SOURCE_ROOT; };
48+
3047A5101AB8059700498E2A /* build-release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = "build-release.xcconfig"; path = "cordova/build-release.xcconfig"; sourceTree = SOURCE_ROOT; };
5149
3047A5111AB8059700498E2A /* build.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = build.xcconfig; path = cordova/build.xcconfig; sourceTree = SOURCE_ROOT; };
52-
32CA4F630368D1EE00C91783 /* QB Chat-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "QB Chat-Prefix.pch"; sourceTree = "<group>"; };
53-
6AFF5BF81D6E424B00AB3073 /* CDVLaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CDVLaunchScreen.storyboard; path = "QB Chat/CDVLaunchScreen.storyboard"; sourceTree = SOURCE_ROOT; };
54-
8D1107310486CEB800E47090 /* QB Chat-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "QB Chat-Info.plist"; path = "QB Chat/QB Chat-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = SOURCE_ROOT; };
50+
32CA4F630368D1EE00C91783 /* QB Text Chat-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "QB Text Chat-Prefix.pch"; sourceTree = "<group>"; };
51+
6AFF5BF81D6E424B00AB3073 /* CDVLaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CDVLaunchScreen.storyboard; path = "QB Text Chat/CDVLaunchScreen.storyboard"; sourceTree = SOURCE_ROOT; };
52+
8D1107310486CEB800E47090 /* QB Text Chat-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "QB Text Chat-Info.plist"; path = "QB Text Chat/QB Text Chat-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = SOURCE_ROOT; };
5553
EB87FDF31871DA8E0020F90C /* www */ = {isa = PBXFileReference; lastKnownFileType = folder; name = www; path = ../../www; sourceTree = "<group>"; };
5654
EB87FDF41871DAF40020F90C /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = config.xml; path = ../../config.xml; sourceTree = "<group>"; };
57-
F840E1F0165FE0F500CFE078 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = config.xml; path = "QB Chat/config.xml"; sourceTree = "<group>"; };
58-
ED33DF2A687741AEAF9F8254 /* Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Bridging-Header.h"; path = "Bridging-Header.h"; sourceTree = "<group>"; };
55+
ED33DF2A687741AEAF9F8254 /* Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Bridging-Header.h"; sourceTree = "<group>"; };
56+
F840E1F0165FE0F500CFE078 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = config.xml; path = "QB Text Chat/config.xml"; sourceTree = "<group>"; };
5957
/* End PBXFileReference section */
6058

6159
/* Begin PBXFrameworksBuildPhase section */
@@ -80,13 +78,13 @@
8078
1D3623250D0F684500981E51 /* AppDelegate.m */,
8179
);
8280
name = Classes;
83-
path = "QB Chat/Classes";
81+
path = "QB Text Chat/Classes";
8482
sourceTree = SOURCE_ROOT;
8583
};
8684
19C28FACFE9D520D11CA2CBB /* Products */ = {
8785
isa = PBXGroup;
8886
children = (
89-
1D6058910D05DD3D006BFB54 /* QB Chat.app */,
87+
1D6058910D05DD3D006BFB54 /* QB Text Chat.app */,
9088
);
9189
name = Products;
9290
sourceTree = "<group>";
@@ -111,24 +109,24 @@
111109
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
112110
isa = PBXGroup;
113111
children = (
114-
32CA4F630368D1EE00C91783 /* QB Chat-Prefix.pch */,
112+
32CA4F630368D1EE00C91783 /* QB Text Chat-Prefix.pch */,
115113
29B97316FDCFA39411CA2CEA /* main.m */,
116114
ED33DF2A687741AEAF9F8254 /* Bridging-Header.h */,
117115
);
118116
name = "Other Sources";
119-
path = "QB Chat";
117+
path = "QB Text Chat";
120118
sourceTree = "<group>";
121119
};
122120
29B97317FDCFA39411CA2CEA /* Resources */ = {
123121
isa = PBXGroup;
124122
children = (
125123
0207DA571B56EA530066E2B4 /* Images.xcassets */,
126124
3047A50E1AB8057F00498E2A /* config */,
127-
8D1107310486CEB800E47090 /* QB Chat-Info.plist */,
125+
8D1107310486CEB800E47090 /* QB Text Chat-Info.plist */,
128126
6AFF5BF81D6E424B00AB3073 /* CDVLaunchScreen.storyboard */,
129127
);
130128
name = Resources;
131-
path = "QB Chat/Resources";
129+
path = "QB Text Chat/Resources";
132130
sourceTree = "<group>";
133131
};
134132
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
@@ -161,7 +159,7 @@
161159
children = (
162160
);
163161
name = Plugins;
164-
path = "QB Chat/Plugins";
162+
path = "QB Text Chat/Plugins";
165163
sourceTree = SOURCE_ROOT;
166164
};
167165
EB87FDF11871DA420020F90C /* Staging */ = {
@@ -176,9 +174,9 @@
176174
/* End PBXGroup section */
177175

178176
/* Begin PBXNativeTarget section */
179-
1D6058900D05DD3D006BFB54 /* QB Chat */ = {
177+
1D6058900D05DD3D006BFB54 /* QB Text Chat */ = {
180178
isa = PBXNativeTarget;
181-
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "QB Chat" */;
179+
buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "QB Text Chat" */;
182180
buildPhases = (
183181
304B58A110DAC018002A0835 /* Copy www directory */,
184182
1D60588D0D05DD3D006BFB54 /* Resources */,
@@ -190,9 +188,9 @@
190188
dependencies = (
191189
301BF551109A68C00062928A /* PBXTargetDependency */,
192190
);
193-
name = "QB Chat";
194-
productName = "QB Chat";
195-
productReference = 1D6058910D05DD3D006BFB54 /* QB Chat.app */;
191+
name = "QB Text Chat";
192+
productName = "QB Text Chat";
193+
productReference = 1D6058910D05DD3D006BFB54 /* QB Text Chat.app */;
196194
productType = "com.apple.product-type.application";
197195
};
198196
/* End PBXNativeTarget section */
@@ -202,11 +200,19 @@
202200
isa = PBXProject;
203201
attributes = {
204202
LastUpgradeCheck = 510;
203+
TargetAttributes = {
204+
1D6058900D05DD3D006BFB54 = {
205+
DevelopmentTeam = 8885H5G2YX;
206+
};
207+
};
205208
};
206-
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "__NON-CLI__" */;
209+
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "QB Text Chat" */;
207210
compatibilityVersion = "Xcode 3.2";
208211
developmentRegion = English;
209212
hasScannedForEncodings = 1;
213+
knownRegions = (
214+
en,
215+
);
210216
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
211217
projectDirPath = "";
212218
projectReferences = (
@@ -217,7 +223,7 @@
217223
);
218224
projectRoot = "";
219225
targets = (
220-
1D6058900D05DD3D006BFB54 /* QB Chat */,
226+
1D6058900D05DD3D006BFB54 /* QB Text Chat */,
221227
);
222228
};
223229
/* End PBXProject section */
@@ -295,15 +301,16 @@
295301
CLANG_ENABLE_MODULES = YES;
296302
CLANG_ENABLE_OBJC_ARC = YES;
297303
COPY_PHASE_STRIP = NO;
304+
DEVELOPMENT_TEAM = 8885H5G2YX;
298305
GCC_DYNAMIC_NO_PIC = NO;
299306
GCC_OPTIMIZATION_LEVEL = 0;
300307
GCC_PRECOMPILE_PREFIX_HEADER = YES;
301-
GCC_PREFIX_HEADER = "QB Chat/QB Chat-Prefix.pch";
308+
GCC_PREFIX_HEADER = "QB Text Chat/QB Text Chat-Prefix.pch";
302309
GCC_THUMB_SUPPORT = NO;
303310
GCC_VERSION = "";
304-
INFOPLIST_FILE = "QB Chat/QB Chat-Info.plist";
311+
INFOPLIST_FILE = "QB Text Chat/QB Text Chat-Info.plist";
305312
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
306-
PRODUCT_NAME = "QB Chat";
313+
PRODUCT_NAME = "QB Text Chat";
307314
};
308315
name = Debug;
309316
};
@@ -317,13 +324,14 @@
317324
CLANG_ENABLE_MODULES = YES;
318325
CLANG_ENABLE_OBJC_ARC = YES;
319326
COPY_PHASE_STRIP = YES;
327+
DEVELOPMENT_TEAM = 8885H5G2YX;
320328
GCC_PRECOMPILE_PREFIX_HEADER = YES;
321-
GCC_PREFIX_HEADER = "QB Chat/QB Chat-Prefix.pch";
329+
GCC_PREFIX_HEADER = "QB Text Chat/QB Text Chat-Prefix.pch";
322330
GCC_THUMB_SUPPORT = NO;
323331
GCC_VERSION = "";
324-
INFOPLIST_FILE = "QB Chat/QB Chat-Info.plist";
332+
INFOPLIST_FILE = "QB Text Chat/QB Text Chat-Info.plist";
325333
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
326-
PRODUCT_NAME = "QB Chat";
334+
PRODUCT_NAME = "QB Text Chat";
327335
};
328336
name = Release;
329337
};
@@ -381,7 +389,7 @@
381389
/* End XCBuildConfiguration section */
382390

383391
/* Begin XCConfigurationList section */
384-
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "QB Chat" */ = {
392+
1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "QB Text Chat" */ = {
385393
isa = XCConfigurationList;
386394
buildConfigurations = (
387395
1D6058940D05DD3E006BFB54 /* Debug */,
@@ -390,7 +398,7 @@
390398
defaultConfigurationIsVisible = 0;
391399
defaultConfigurationName = Release;
392400
};
393-
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "__NON-CLI__" */ = {
401+
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "QB Text Chat" */ = {
394402
isa = XCConfigurationList;
395403
buildConfigurations = (
396404
C01FCF4F08A954540054247B /* Debug */,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SuppressBuildableAutocreation</key>
6+
<dict>
7+
<key>1D6058900D05DD3D006BFB54</key>
8+
<dict>
9+
<key>primary</key>
10+
<true/>
11+
</dict>
12+
</dict>
13+
</dict>
14+
</plist>

samples/cordova/text_chat/platforms/ios/QB Chat.xcworkspace/contents.xcworkspacedata renamed to samples/cordova/text_chat/platforms/ios/QB Text Chat.xcworkspace/contents.xcworkspacedata

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)