Skip to content

Commit ea11c94

Browse files
chore: migrate example to react-native-test-app
chore: migrate example to `react-native-test-app`
2 parents 993928c + 870a1d6 commit ea11c94

Some content is hidden

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

65 files changed

+4314
-3420
lines changed

.github/workflows/ios.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
path: example/ios/Pods
5353
key: ${{ hashFiles('./example/ios/Podfile.lock') }}
5454

55+
- name: Bundle app
56+
run: yarn build:ios
57+
working-directory: example/ios
58+
5559
- name: Install example Pods
5660
run: pod install
5761
working-directory: example/ios
File renamed without changes.

example/.bundle/config

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

example/.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.binlog
2+
*.hprof
3+
*.xcworkspace/
4+
*.zip
5+
.DS_Store
6+
.gradle/
7+
.idea/
8+
.vs/
9+
**/.xcode.env.local
10+
Pods/
11+
build/
12+
dist/*
13+
!dist/.gitignore
14+
local.properties
15+
msbuild.binlog
16+
node_modules/

example/.node-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

example/.ruby-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

example/.watchmanconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{}

example/Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby ">= 2.6.10"
4+
ruby '>= 2.6.10'
55

6-
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
7-
# bound in the template on Cocoapods with next React Native release.
8-
gem 'cocoapods', '>= 1.13', '< 1.15'
6+
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
7+
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
8+
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'

example/Gemfile.lock

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GEM
55
base64
66
nkf
77
rexml
8-
activesupport (7.1.3.3)
8+
activesupport (7.1.3.4)
99
base64
1010
bigdecimal
1111
concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -24,10 +24,10 @@ GEM
2424
base64 (0.2.0)
2525
bigdecimal (3.1.8)
2626
claide (1.1.0)
27-
cocoapods (1.14.3)
27+
cocoapods (1.15.2)
2828
addressable (~> 2.8)
2929
claide (>= 1.0.2, < 2.0)
30-
cocoapods-core (= 1.14.3)
30+
cocoapods-core (= 1.15.2)
3131
cocoapods-deintegrate (>= 1.0.3, < 2.0)
3232
cocoapods-downloader (>= 2.1, < 3.0)
3333
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -42,7 +42,7 @@ GEM
4242
nap (~> 1.0)
4343
ruby-macho (>= 2.3.0, < 3.0)
4444
xcodeproj (>= 1.23.0, < 2.0)
45-
cocoapods-core (1.14.3)
45+
cocoapods-core (1.15.2)
4646
activesupport (>= 5.0, < 8)
4747
addressable (~> 2.8)
4848
algoliasearch (~> 1.0)
@@ -62,13 +62,13 @@ GEM
6262
netrc (~> 0.11)
6363
cocoapods-try (1.2.0)
6464
colored2 (3.1.2)
65-
concurrent-ruby (1.2.3)
65+
concurrent-ruby (1.3.3)
6666
connection_pool (2.4.1)
6767
drb (2.2.1)
6868
escape (0.0.4)
6969
ethon (0.16.0)
7070
ffi (>= 1.15.0)
71-
ffi (1.16.3)
71+
ffi (1.17.0)
7272
fourflusher (2.3.1)
7373
fuzzy_match (2.0.4)
7474
gh_inspector (1.1.3)
@@ -84,8 +84,8 @@ GEM
8484
netrc (0.11.0)
8585
nkf (0.2.0)
8686
public_suffix (4.0.7)
87-
rexml (3.2.8)
88-
strscan (>= 3.0.9)
87+
rexml (3.2.9)
88+
strscan
8989
ruby-macho (2.5.1)
9090
strscan (3.1.0)
9191
typhoeus (1.4.1)
@@ -104,7 +104,8 @@ PLATFORMS
104104
ruby
105105

106106
DEPENDENCIES
107-
cocoapods (>= 1.13, < 1.15)
107+
activesupport (>= 6.1.7.5, != 7.1.0)
108+
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
108109

109110
RUBY VERSION
110111
ruby 2.7.5p203

example/__tests__/App-test.tsx

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

0 commit comments

Comments
 (0)