Skip to content

Commit ef9d98a

Browse files
committed
moves ListView example
1 parent 0c41ce9 commit ef9d98a

37 files changed

+86
-89
lines changed

Example/android/app/src/main/res/values/strings.xml

-3
This file was deleted.

Example/android/settings.gradle

-3
This file was deleted.

Example/.flowconfig renamed to examples/ListView/.flowconfig

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ suppress_type=$FlowIssue
5555
suppress_type=$FlowFixMe
5656
suppress_type=$FixMe
5757

58-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-8]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
59-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-8]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+
58+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
59+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+
6060
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
6161

6262
[version]
63-
0.18.1
63+
0.19.0
File renamed without changes.
File renamed without changes.
File renamed without changes.

Example/android/app/build.gradle renamed to examples/ListView/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ android {
5454
buildToolsVersion "23.0.1"
5555

5656
defaultConfig {
57-
applicationId "com.example"
57+
applicationId "com.listview"
5858
minSdkVersion 16
5959
targetSdkVersion 22
6060
versionCode 1
@@ -74,5 +74,5 @@ android {
7474
dependencies {
7575
compile fileTree(dir: "libs", include: ["*.jar"])
7676
compile "com.android.support:appcompat-v7:23.0.1"
77-
compile "com.facebook.react:react-native:0.16.+"
77+
compile "com.facebook.react:react-native:0.17.+"
7878
}

Example/android/app/src/main/AndroidManifest.xml renamed to examples/ListView/android/app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example">
2+
package="com.listview">
33

44
<uses-permission android:name="android.permission.INTERNET" />
55

Example/android/app/src/main/java/com/example/MainActivity.java renamed to examples/ListView/android/app/src/main/java/com/listview/MainActivity.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example;
1+
package com.listview;
22

33
import android.app.Activity;
44
import android.os.Bundle;
@@ -30,7 +30,7 @@ protected void onCreate(Bundle savedInstanceState) {
3030
.setInitialLifecycleState(LifecycleState.RESUMED)
3131
.build();
3232

33-
mReactRootView.startReactApplication(mReactInstanceManager, "Example", null);
33+
mReactRootView.startReactApplication(mReactInstanceManager, "ListView", null);
3434

3535
setContentView(mReactRootView);
3636
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<resources>
2+
<string name="app_name">ListView</string>
3+
</resources>

Example/android/build.gradle renamed to examples/ListView/android/build.gradle

-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,5 @@ allprojects {
1616
repositories {
1717
mavenLocal()
1818
jcenter()
19-
jcenter {
20-
url "http://dl.bintray.com/mkonicek/maven"
21-
}
2219
}
2320
}
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
rootProject.name = 'ListView'
2+
3+
include ':app'

Example/index.android.js renamed to examples/ListView/index.android.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ class AndroidExample extends Component {
4848
}
4949
}
5050

51-
AppRegistry.registerComponent('Example', () => AndroidExample);
51+
AppRegistry.registerComponent('ListView', () => AndroidExample);

Example/index.ios.js renamed to examples/ListView/index.ios.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ import Talks from './Talks';
44

55
StatusBarIOS.setStyle('light-content');
66

7-
AppRegistry.registerComponent('Example', () => Talks);
7+
AppRegistry.registerComponent('ListView', () => Talks);

Example/ios/Example.xcodeproj/project.pbxproj renamed to examples/ListView/ios/ListView.xcodeproj/project.pbxproj

+45-45
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
1313
00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
1414
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
15-
00E356F31AD99517003FC87E /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.m */; };
15+
00E356F31AD99517003FC87E /* ListViewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ListViewTests.m */; };
1616
133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
1717
139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
1818
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
@@ -65,7 +65,7 @@
6565
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
6666
proxyType = 1;
6767
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
68-
remoteInfo = Example;
68+
remoteInfo = ListView;
6969
};
7070
139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
7171
isa = PBXContainerItemProxy;
@@ -111,18 +111,18 @@
111111
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = ../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj; sourceTree = "<group>"; };
112112
00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = ../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj; sourceTree = "<group>"; };
113113
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = ../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj; sourceTree = "<group>"; };
114-
00E356EE1AD99517003FC87E /* ExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
114+
00E356EE1AD99517003FC87E /* ListViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ListViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
115115
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
116-
00E356F21AD99517003FC87E /* ExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleTests.m; sourceTree = "<group>"; };
116+
00E356F21AD99517003FC87E /* ListViewTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ListViewTests.m; sourceTree = "<group>"; };
117117
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = ../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj; sourceTree = "<group>"; };
118118
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = ../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj; sourceTree = "<group>"; };
119-
13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
120-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Example/AppDelegate.h; sourceTree = "<group>"; };
121-
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Example/AppDelegate.m; sourceTree = "<group>"; };
119+
13B07F961A680F5B00A75B9A /* ListView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ListView.app; sourceTree = BUILT_PRODUCTS_DIR; };
120+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ListView/AppDelegate.h; sourceTree = "<group>"; };
121+
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ListView/AppDelegate.m; sourceTree = "<group>"; };
122122
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
123-
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Example/Images.xcassets; sourceTree = "<group>"; };
124-
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Example/Info.plist; sourceTree = "<group>"; };
125-
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Example/main.m; sourceTree = "<group>"; };
123+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ListView/Images.xcassets; sourceTree = "<group>"; };
124+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ListView/Info.plist; sourceTree = "<group>"; };
125+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ListView/main.m; sourceTree = "<group>"; };
126126
146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = ../node_modules/react-native/React/React.xcodeproj; sourceTree = "<group>"; };
127127
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = ../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj; sourceTree = "<group>"; };
128128
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = ../node_modules/react-native/Libraries/Text/RCTText.xcodeproj; sourceTree = "<group>"; };
@@ -196,13 +196,13 @@
196196
name = Products;
197197
sourceTree = "<group>";
198198
};
199-
00E356EF1AD99517003FC87E /* ExampleTests */ = {
199+
00E356EF1AD99517003FC87E /* ListViewTests */ = {
200200
isa = PBXGroup;
201201
children = (
202-
00E356F21AD99517003FC87E /* ExampleTests.m */,
202+
00E356F21AD99517003FC87E /* ListViewTests.m */,
203203
00E356F01AD99517003FC87E /* Supporting Files */,
204204
);
205-
path = ExampleTests;
205+
path = ListViewTests;
206206
sourceTree = "<group>";
207207
};
208208
00E356F01AD99517003FC87E /* Supporting Files */ = {
@@ -229,7 +229,7 @@
229229
name = Products;
230230
sourceTree = "<group>";
231231
};
232-
13B07FAE1A68108700A75B9A /* Example */ = {
232+
13B07FAE1A68108700A75B9A /* ListView */ = {
233233
isa = PBXGroup;
234234
children = (
235235
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
@@ -240,7 +240,7 @@
240240
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
241241
13B07FB71A68108700A75B9A /* main.m */,
242242
);
243-
name = Example;
243+
name = ListView;
244244
sourceTree = "<group>";
245245
};
246246
146834001AC3E56700842450 /* Products */ = {
@@ -287,9 +287,9 @@
287287
83CBB9F61A601CBA00E9B192 = {
288288
isa = PBXGroup;
289289
children = (
290-
13B07FAE1A68108700A75B9A /* Example */,
290+
13B07FAE1A68108700A75B9A /* ListView */,
291291
832341AE1AAA6A7D00B99B32 /* Libraries */,
292-
00E356EF1AD99517003FC87E /* ExampleTests */,
292+
00E356EF1AD99517003FC87E /* ListViewTests */,
293293
83CBBA001A601CBA00E9B192 /* Products */,
294294
);
295295
indentWidth = 2;
@@ -299,18 +299,18 @@
299299
83CBBA001A601CBA00E9B192 /* Products */ = {
300300
isa = PBXGroup;
301301
children = (
302-
13B07F961A680F5B00A75B9A /* Example.app */,
303-
00E356EE1AD99517003FC87E /* ExampleTests.xctest */,
302+
13B07F961A680F5B00A75B9A /* ListView.app */,
303+
00E356EE1AD99517003FC87E /* ListViewTests.xctest */,
304304
);
305305
name = Products;
306306
sourceTree = "<group>";
307307
};
308308
/* End PBXGroup section */
309309

310310
/* Begin PBXNativeTarget section */
311-
00E356ED1AD99517003FC87E /* ExampleTests */ = {
311+
00E356ED1AD99517003FC87E /* ListViewTests */ = {
312312
isa = PBXNativeTarget;
313-
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */;
313+
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ListViewTests" */;
314314
buildPhases = (
315315
00E356EA1AD99517003FC87E /* Sources */,
316316
00E356EB1AD99517003FC87E /* Frameworks */,
@@ -321,14 +321,14 @@
321321
dependencies = (
322322
00E356F51AD99517003FC87E /* PBXTargetDependency */,
323323
);
324-
name = ExampleTests;
325-
productName = ExampleTests;
326-
productReference = 00E356EE1AD99517003FC87E /* ExampleTests.xctest */;
324+
name = ListViewTests;
325+
productName = ListViewTests;
326+
productReference = 00E356EE1AD99517003FC87E /* ListViewTests.xctest */;
327327
productType = "com.apple.product-type.bundle.unit-test";
328328
};
329-
13B07F861A680F5B00A75B9A /* Example */ = {
329+
13B07F861A680F5B00A75B9A /* ListView */ = {
330330
isa = PBXNativeTarget;
331-
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */;
331+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ListView" */;
332332
buildPhases = (
333333
13B07F871A680F5B00A75B9A /* Sources */,
334334
13B07F8C1A680F5B00A75B9A /* Frameworks */,
@@ -339,9 +339,9 @@
339339
);
340340
dependencies = (
341341
);
342-
name = Example;
342+
name = ListView;
343343
productName = "Hello World";
344-
productReference = 13B07F961A680F5B00A75B9A /* Example.app */;
344+
productReference = 13B07F961A680F5B00A75B9A /* ListView.app */;
345345
productType = "com.apple.product-type.application";
346346
};
347347
/* End PBXNativeTarget section */
@@ -359,7 +359,7 @@
359359
};
360360
};
361361
};
362-
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */;
362+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ListView" */;
363363
compatibilityVersion = "Xcode 3.2";
364364
developmentRegion = English;
365365
hasScannedForEncodings = 0;
@@ -414,8 +414,8 @@
414414
);
415415
projectRoot = "";
416416
targets = (
417-
13B07F861A680F5B00A75B9A /* Example */,
418-
00E356ED1AD99517003FC87E /* ExampleTests */,
417+
13B07F861A680F5B00A75B9A /* ListView */,
418+
00E356ED1AD99517003FC87E /* ListViewTests */,
419419
);
420420
};
421421
/* End PBXProject section */
@@ -535,7 +535,7 @@
535535
isa = PBXSourcesBuildPhase;
536536
buildActionMask = 2147483647;
537537
files = (
538-
00E356F31AD99517003FC87E /* ExampleTests.m in Sources */,
538+
00E356F31AD99517003FC87E /* ListViewTests.m in Sources */,
539539
);
540540
runOnlyForDeploymentPostprocessing = 0;
541541
};
@@ -553,7 +553,7 @@
553553
/* Begin PBXTargetDependency section */
554554
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
555555
isa = PBXTargetDependency;
556-
target = 13B07F861A680F5B00A75B9A /* Example */;
556+
target = 13B07F861A680F5B00A75B9A /* ListView */;
557557
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
558558
};
559559
/* End PBXTargetDependency section */
@@ -565,7 +565,7 @@
565565
13B07FB21A68108700A75B9A /* Base */,
566566
);
567567
name = LaunchScreen.xib;
568-
path = Example;
568+
path = ListView;
569569
sourceTree = "<group>";
570570
};
571571
/* End PBXVariantGroup section */
@@ -583,11 +583,11 @@
583583
"DEBUG=1",
584584
"$(inherited)",
585585
);
586-
INFOPLIST_FILE = ExampleTests/Info.plist;
586+
INFOPLIST_FILE = ListViewTests/Info.plist;
587587
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
588588
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
589589
PRODUCT_NAME = "$(TARGET_NAME)";
590-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example";
590+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ListView.app/ListView";
591591
};
592592
name = Debug;
593593
};
@@ -600,11 +600,11 @@
600600
"$(SDKROOT)/Developer/Library/Frameworks",
601601
"$(inherited)",
602602
);
603-
INFOPLIST_FILE = ExampleTests/Info.plist;
603+
INFOPLIST_FILE = ListViewTests/Info.plist;
604604
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
605605
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
606606
PRODUCT_NAME = "$(TARGET_NAME)";
607-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example";
607+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ListView.app/ListView";
608608
};
609609
name = Release;
610610
};
@@ -618,10 +618,10 @@
618618
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
619619
"$(SRCROOT)/../node_modules/react-native/React/**",
620620
);
621-
INFOPLIST_FILE = "Example/Info.plist";
621+
INFOPLIST_FILE = "ListView/Info.plist";
622622
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
623623
OTHER_LDFLAGS = "-ObjC";
624-
PRODUCT_NAME = Example;
624+
PRODUCT_NAME = ListView;
625625
};
626626
name = Debug;
627627
};
@@ -634,10 +634,10 @@
634634
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
635635
"$(SRCROOT)/../node_modules/react-native/React/**",
636636
);
637-
INFOPLIST_FILE = "Example/Info.plist";
637+
INFOPLIST_FILE = "ListView/Info.plist";
638638
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
639639
OTHER_LDFLAGS = "-ObjC";
640-
PRODUCT_NAME = Example;
640+
PRODUCT_NAME = ListView;
641641
};
642642
name = Release;
643643
};
@@ -730,7 +730,7 @@
730730
/* End XCBuildConfiguration section */
731731

732732
/* Begin XCConfigurationList section */
733-
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */ = {
733+
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ListViewTests" */ = {
734734
isa = XCConfigurationList;
735735
buildConfigurations = (
736736
00E356F61AD99517003FC87E /* Debug */,
@@ -739,7 +739,7 @@
739739
defaultConfigurationIsVisible = 0;
740740
defaultConfigurationName = Release;
741741
};
742-
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */ = {
742+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ListView" */ = {
743743
isa = XCConfigurationList;
744744
buildConfigurations = (
745745
13B07F941A680F5B00A75B9A /* Debug */,
@@ -748,7 +748,7 @@
748748
defaultConfigurationIsVisible = 0;
749749
defaultConfigurationName = Release;
750750
};
751-
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */ = {
751+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ListView" */ = {
752752
isa = XCConfigurationList;
753753
buildConfigurations = (
754754
83CBBA201A601CBA00E9B192 /* Debug */,

0 commit comments

Comments
 (0)