Skip to content

Commit 3c39100

Browse files
authored
feat: Update example to RN 78 (#126)
* feat: update RN to v0.78 * fix: RNS, React Navigation and SafeAreaContext
1 parent 6ac1f1f commit 3c39100

File tree

25 files changed

+674
-841
lines changed

25 files changed

+674
-841
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ local.properties
4242
example/.cxx/
4343
*.keystore
4444
!debug.keystore
45+
.kotlin/
4546

4647
# Bundle
4748
#

bun.lockb

11.9 KB
Binary file not shown.

example/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ ruby '3.3.0'
66
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
77
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
88
gem 'xcodeproj', '< 1.26.0'
9+
gem 'concurrent-ruby', '< 1.3.4'

example/Gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ PLATFORMS
106106
DEPENDENCIES
107107
activesupport (>= 6.1.7.5, != 7.1.0)
108108
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
109+
concurrent-ruby (< 1.3.4)
109110
xcodeproj (< 1.26.0)
110111

111112
RUBY VERSION

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ def enableProguardInReleaseBuilds = false
6363
* The preferred build flavor of JavaScriptCore (JSC)
6464
*
6565
* For example, to use the international variant, you can use:
66-
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
66+
* `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+`
6767
*
6868
* The international variant includes ICU i18n library and necessary data
6969
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
7070
* give correct results when using with locales other than en-US. Note that
7171
* this variant is about 6MiB larger per architecture than default.
7272
*/
73-
def jscFlavor = 'org.webkit:android-jsc:+'
73+
def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
7474

7575
android {
7676
ndkVersion rootProject.ext.ndkVersion

example/android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ buildscript {
33
buildToolsVersion = "35.0.0"
44
minSdkVersion = 24
55
compileSdkVersion = 35
6-
targetSdkVersion = 34
7-
ndkVersion = "26.1.10909125"
8-
kotlinVersion = "1.9.24"
6+
targetSdkVersion = 35
7+
ndkVersion = "27.1.12297006"
8+
kotlinVersion = "2.0.21"
99
}
1010

1111
repositories {

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

example/android/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

example/ios/NitroSQLiteExample.xcodeproj/project.pbxproj

Lines changed: 9 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,11 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
00E356F31AD99517003FC87E /* NitroSQLiteExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* NitroSQLiteExampleTests.m */; };
11-
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
1210
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13-
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
1411
17EA225CB5C6FBE4FF95B3B8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B62F4C3A8445C44CF7F54399 /* PrivacyInfo.xcprivacy */; };
1512
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
16-
D7537A007033719516C57748 /* libPods-NitroSQLiteExample-NitroSQLiteExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F61ADDCA341B787B4A3AFAFC /* libPods-NitroSQLiteExample-NitroSQLiteExampleTests.a */; };
17-
F6FA2C48029804D08B79E96F /* libPods-NitroSQLiteExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BCC1E776B313FBFED7863A3D /* libPods-NitroSQLiteExample.a */; };
13+
83360C5E2D71C89D00DEEBDB /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83360C5D2D71C89D00DEEBDB /* AppDelegate.swift */; };
14+
9516F5F6CF76291D1E2916D8 /* libPods-NitroSQLiteExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19FD863BB22C01A3CFEA441C /* libPods-NitroSQLiteExample.a */; };
1815
/* End PBXBuildFile section */
1916

2017
/* Begin PBXContainerItemProxy section */
@@ -29,71 +26,44 @@
2926

3027
/* Begin PBXFileReference section */
3128
00E356EE1AD99517003FC87E /* NitroSQLiteExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NitroSQLiteExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
32-
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
33-
00E356F21AD99517003FC87E /* NitroSQLiteExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NitroSQLiteExampleTests.m; sourceTree = "<group>"; };
3429
03D39CB013C879B46EC1C979 /* Pods-NitroSQLiteExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NitroSQLiteExample.release.xcconfig"; path = "Target Support Files/Pods-NitroSQLiteExample/Pods-NitroSQLiteExample.release.xcconfig"; sourceTree = "<group>"; };
35-
1251E54A0A604DFB2905E20E /* Pods-NitroSQLiteExample-NitroSQLiteExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NitroSQLiteExample-NitroSQLiteExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
3630
13B07F961A680F5B00A75B9A /* NitroSQLiteExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NitroSQLiteExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
37-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = NitroSQLiteExample/AppDelegate.h; sourceTree = "<group>"; };
38-
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = NitroSQLiteExample/AppDelegate.mm; sourceTree = "<group>"; };
3931
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = NitroSQLiteExample/Images.xcassets; sourceTree = "<group>"; };
4032
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = NitroSQLiteExample/Info.plist; sourceTree = "<group>"; };
41-
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = NitroSQLiteExample/main.m; sourceTree = "<group>"; };
33+
19FD863BB22C01A3CFEA441C /* libPods-NitroSQLiteExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NitroSQLiteExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
4234
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = NitroSQLiteExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
35+
83360C5D2D71C89D00DEEBDB /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = NitroSQLiteExample/AppDelegate.swift; sourceTree = "<group>"; };
4336
B62F4C3A8445C44CF7F54399 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = NitroSQLiteExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
44-
BCC1E776B313FBFED7863A3D /* libPods-NitroSQLiteExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NitroSQLiteExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
4537
CA20110A9117BB91D9E63081 /* Pods-NitroSQLiteExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NitroSQLiteExample.debug.xcconfig"; path = "Target Support Files/Pods-NitroSQLiteExample/Pods-NitroSQLiteExample.debug.xcconfig"; sourceTree = "<group>"; };
46-
CE317F99C7B7933DEB58C2E6 /* Pods-NitroSQLiteExample-NitroSQLiteExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NitroSQLiteExample-NitroSQLiteExampleTests.release.xcconfig"; path = "Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests.release.xcconfig"; sourceTree = "<group>"; };
4738
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
48-
F61ADDCA341B787B4A3AFAFC /* libPods-NitroSQLiteExample-NitroSQLiteExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NitroSQLiteExample-NitroSQLiteExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
4939
/* End PBXFileReference section */
5040

5141
/* Begin PBXFrameworksBuildPhase section */
5242
00E356EB1AD99517003FC87E /* Frameworks */ = {
5343
isa = PBXFrameworksBuildPhase;
5444
buildActionMask = 2147483647;
5545
files = (
56-
D7537A007033719516C57748 /* libPods-NitroSQLiteExample-NitroSQLiteExampleTests.a in Frameworks */,
5746
);
5847
runOnlyForDeploymentPostprocessing = 0;
5948
};
6049
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
6150
isa = PBXFrameworksBuildPhase;
6251
buildActionMask = 2147483647;
6352
files = (
64-
F6FA2C48029804D08B79E96F /* libPods-NitroSQLiteExample.a in Frameworks */,
53+
9516F5F6CF76291D1E2916D8 /* libPods-NitroSQLiteExample.a in Frameworks */,
6554
);
6655
runOnlyForDeploymentPostprocessing = 0;
6756
};
6857
/* End PBXFrameworksBuildPhase section */
6958

7059
/* Begin PBXGroup section */
71-
00E356EF1AD99517003FC87E /* NitroSQLiteExampleTests */ = {
72-
isa = PBXGroup;
73-
children = (
74-
00E356F21AD99517003FC87E /* NitroSQLiteExampleTests.m */,
75-
00E356F01AD99517003FC87E /* Supporting Files */,
76-
);
77-
path = NitroSQLiteExampleTests;
78-
sourceTree = "<group>";
79-
};
80-
00E356F01AD99517003FC87E /* Supporting Files */ = {
81-
isa = PBXGroup;
82-
children = (
83-
00E356F11AD99517003FC87E /* Info.plist */,
84-
);
85-
name = "Supporting Files";
86-
sourceTree = "<group>";
87-
};
8860
13B07FAE1A68108700A75B9A /* NitroSQLiteExample */ = {
8961
isa = PBXGroup;
9062
children = (
91-
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
92-
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
63+
83360C5D2D71C89D00DEEBDB /* AppDelegate.swift */,
9364
13B07FB51A68108700A75B9A /* Images.xcassets */,
9465
13B07FB61A68108700A75B9A /* Info.plist */,
9566
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
96-
13B07FB71A68108700A75B9A /* main.m */,
9767
B62F4C3A8445C44CF7F54399 /* PrivacyInfo.xcprivacy */,
9868
);
9969
name = NitroSQLiteExample;
@@ -103,8 +73,7 @@
10373
isa = PBXGroup;
10474
children = (
10575
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
106-
BCC1E776B313FBFED7863A3D /* libPods-NitroSQLiteExample.a */,
107-
F61ADDCA341B787B4A3AFAFC /* libPods-NitroSQLiteExample-NitroSQLiteExampleTests.a */,
76+
19FD863BB22C01A3CFEA441C /* libPods-NitroSQLiteExample.a */,
10877
);
10978
name = Frameworks;
11079
sourceTree = "<group>";
@@ -121,7 +90,6 @@
12190
children = (
12291
13B07FAE1A68108700A75B9A /* NitroSQLiteExample */,
12392
832341AE1AAA6A7D00B99B32 /* Libraries */,
124-
00E356EF1AD99517003FC87E /* NitroSQLiteExampleTests */,
12593
83CBBA001A601CBA00E9B192 /* Products */,
12694
2D16E6871FA4F8E400B85C8A /* Frameworks */,
12795
BBD78D7AC51CEA395F1C20DB /* Pods */,
@@ -145,8 +113,6 @@
145113
children = (
146114
CA20110A9117BB91D9E63081 /* Pods-NitroSQLiteExample.debug.xcconfig */,
147115
03D39CB013C879B46EC1C979 /* Pods-NitroSQLiteExample.release.xcconfig */,
148-
1251E54A0A604DFB2905E20E /* Pods-NitroSQLiteExample-NitroSQLiteExampleTests.debug.xcconfig */,
149-
CE317F99C7B7933DEB58C2E6 /* Pods-NitroSQLiteExample-NitroSQLiteExampleTests.release.xcconfig */,
150116
);
151117
path = Pods;
152118
sourceTree = "<group>";
@@ -158,12 +124,9 @@
158124
isa = PBXNativeTarget;
159125
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "NitroSQLiteExampleTests" */;
160126
buildPhases = (
161-
2CDC9C54CCFE5D9F92A50675 /* [CP] Check Pods Manifest.lock */,
162127
00E356EA1AD99517003FC87E /* Sources */,
163128
00E356EB1AD99517003FC87E /* Frameworks */,
164129
00E356EC1AD99517003FC87E /* Resources */,
165-
6930F3E39E7F1174A4E95A27 /* [CP] Embed Pods Frameworks */,
166-
9DED98E0C31C147A92DCCCAA /* [CP] Copy Pods Resources */,
167130
);
168131
buildRules = (
169132
);
@@ -210,7 +173,7 @@
210173
TestTargetID = 13B07F861A680F5B00A75B9A;
211174
};
212175
13B07F861A680F5B00A75B9A = {
213-
LastSwiftMigration = 1120;
176+
LastSwiftMigration = 1620;
214177
};
215178
};
216179
};
@@ -270,28 +233,6 @@
270233
shellPath = /bin/sh;
271234
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
272235
};
273-
2CDC9C54CCFE5D9F92A50675 /* [CP] Check Pods Manifest.lock */ = {
274-
isa = PBXShellScriptBuildPhase;
275-
buildActionMask = 2147483647;
276-
files = (
277-
);
278-
inputFileListPaths = (
279-
);
280-
inputPaths = (
281-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
282-
"${PODS_ROOT}/Manifest.lock",
283-
);
284-
name = "[CP] Check Pods Manifest.lock";
285-
outputFileListPaths = (
286-
);
287-
outputPaths = (
288-
"$(DERIVED_FILE_DIR)/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-checkManifestLockResult.txt",
289-
);
290-
runOnlyForDeploymentPostprocessing = 0;
291-
shellPath = /bin/sh;
292-
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
293-
showEnvVarsInLog = 0;
294-
};
295236
61FCFD127542643806B76DAD /* [CP] Copy Pods Resources */ = {
296237
isa = PBXShellScriptBuildPhase;
297238
buildActionMask = 2147483647;
@@ -309,23 +250,6 @@
309250
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample/Pods-NitroSQLiteExample-resources.sh\"\n";
310251
showEnvVarsInLog = 0;
311252
};
312-
6930F3E39E7F1174A4E95A27 /* [CP] Embed Pods Frameworks */ = {
313-
isa = PBXShellScriptBuildPhase;
314-
buildActionMask = 2147483647;
315-
files = (
316-
);
317-
inputFileListPaths = (
318-
"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
319-
);
320-
name = "[CP] Embed Pods Frameworks";
321-
outputFileListPaths = (
322-
"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
323-
);
324-
runOnlyForDeploymentPostprocessing = 0;
325-
shellPath = /bin/sh;
326-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-frameworks.sh\"\n";
327-
showEnvVarsInLog = 0;
328-
};
329253
8851BB48F109827B5AB11D8D /* [CP] Check Pods Manifest.lock */ = {
330254
isa = PBXShellScriptBuildPhase;
331255
buildActionMask = 2147483647;
@@ -365,23 +289,6 @@
365289
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample/Pods-NitroSQLiteExample-frameworks.sh\"\n";
366290
showEnvVarsInLog = 0;
367291
};
368-
9DED98E0C31C147A92DCCCAA /* [CP] Copy Pods Resources */ = {
369-
isa = PBXShellScriptBuildPhase;
370-
buildActionMask = 2147483647;
371-
files = (
372-
);
373-
inputFileListPaths = (
374-
"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
375-
);
376-
name = "[CP] Copy Pods Resources";
377-
outputFileListPaths = (
378-
"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
379-
);
380-
runOnlyForDeploymentPostprocessing = 0;
381-
shellPath = /bin/sh;
382-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NitroSQLiteExample-NitroSQLiteExampleTests/Pods-NitroSQLiteExample-NitroSQLiteExampleTests-resources.sh\"\n";
383-
showEnvVarsInLog = 0;
384-
};
385292
FD10A7F022414F080027D42C /* Start Packager */ = {
386293
isa = PBXShellScriptBuildPhase;
387294
buildActionMask = 2147483647;
@@ -408,16 +315,14 @@
408315
isa = PBXSourcesBuildPhase;
409316
buildActionMask = 2147483647;
410317
files = (
411-
00E356F31AD99517003FC87E /* NitroSQLiteExampleTests.m in Sources */,
412318
);
413319
runOnlyForDeploymentPostprocessing = 0;
414320
};
415321
13B07F871A680F5B00A75B9A /* Sources */ = {
416322
isa = PBXSourcesBuildPhase;
417323
buildActionMask = 2147483647;
418324
files = (
419-
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
420-
13B07FC11A68108700A75B9A /* main.m in Sources */,
325+
83360C5E2D71C89D00DEEBDB /* AppDelegate.swift in Sources */,
421326
);
422327
runOnlyForDeploymentPostprocessing = 0;
423328
};
@@ -434,7 +339,6 @@
434339
/* Begin XCBuildConfiguration section */
435340
00E356F61AD99517003FC87E /* Debug */ = {
436341
isa = XCBuildConfiguration;
437-
baseConfigurationReference = 1251E54A0A604DFB2905E20E /* Pods-NitroSQLiteExample-NitroSQLiteExampleTests.debug.xcconfig */;
438342
buildSettings = {
439343
BUNDLE_LOADER = "$(TEST_HOST)";
440344
GCC_PREPROCESSOR_DEFINITIONS = (
@@ -461,7 +365,6 @@
461365
};
462366
00E356F71AD99517003FC87E /* Release */ = {
463367
isa = XCBuildConfiguration;
464-
baseConfigurationReference = CE317F99C7B7933DEB58C2E6 /* Pods-NitroSQLiteExample-NitroSQLiteExampleTests.release.xcconfig */;
465368
buildSettings = {
466369
BUNDLE_LOADER = "$(TEST_HOST)";
467370
COPY_PHASE_STRIP = NO;

example/ios/NitroSQLiteExample/AppDelegate.h

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)