Skip to content

Commit cf83e92

Browse files
Release 2.0.0
1 parent 0f78f2f commit cf83e92

File tree

71 files changed

+5368
-1
lines changed

Some content is hidden

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

71 files changed

+5368
-1
lines changed

.gitignore

Lines changed: 315 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,315 @@
1+
################################
2+
# React Native
3+
################################
4+
5+
# Xcode
6+
!**/*.xcodeproj
7+
!**/*.pbxproj
8+
!**/*.xcworkspacedata
9+
!**/*.xcsettings
10+
!**/*.xcscheme
11+
*.pbxuser
12+
!default.pbxuser
13+
*.mode1v3
14+
!default.mode1v3
15+
*.mode2v3
16+
!default.mode2v3
17+
*.perspectivev3
18+
!default.perspectivev3
19+
xcuserdata
20+
*.xccheckout
21+
*.moved-aside
22+
DerivedData
23+
*.hmap
24+
*.ipa
25+
*.xcuserstate
26+
project.xcworkspace
27+
**/.xcode.env.local
28+
29+
# Gradle
30+
/build/
31+
/packages/rn-tester/build
32+
/packages/rn-tester/android/app/.cxx/
33+
/packages/rn-tester/android/app/build/
34+
/packages/rn-tester/android/app/gradle/
35+
/packages/rn-tester/android/app/gradlew
36+
/packages/rn-tester/android/app/gradlew.bat
37+
/packages/react-native/ReactAndroid/build/
38+
/packages/react-native/ReactAndroid/.cxx/
39+
/packages/react-native/ReactAndroid/gradle/
40+
/packages/react-native/ReactAndroid/gradlew
41+
/packages/react-native/ReactAndroid/gradlew.bat
42+
/packages/react-native/ReactAndroid/external-artifacts/build/
43+
/packages/react-native/ReactAndroid/external-artifacts/artifacts/
44+
/packages/react-native/ReactAndroid/hermes-engine/build/
45+
/packages/react-native/ReactAndroid/hermes-engine/.cxx/
46+
/packages/react-native/template/android/app/build/
47+
/packages/react-native/template/android/build/
48+
/packages/helloworld/android/app/build/
49+
/packages/helloworld/android/build/
50+
/packages/react-native-popup-menu-android/android/build/
51+
/packages/react-native-test-library/android/build/
52+
53+
# Buck
54+
.buckd
55+
buck-out
56+
/.lsp.buckd
57+
/.lsp-buck-out
58+
/packages/react-native/ReactAndroid/src/main/jni/prebuilt/lib/
59+
/packages/react-native/ReactAndroid/src/main/gen
60+
/.cpplsp.buckd
61+
62+
# Android Studio
63+
.project
64+
.settings
65+
.classpath
66+
67+
# Watchman
68+
.watchmanconfig
69+
70+
# Android
71+
.idea
72+
.gradle
73+
local.properties
74+
*.iml
75+
/packages/react-native/android/*
76+
!/packages/react-native/android/README.md
77+
78+
# Node
79+
node_modules
80+
*.log
81+
.nvm
82+
package-lock.json
83+
84+
# OS X
85+
.DS_Store
86+
87+
# Test generated files
88+
*.js.meta
89+
90+
/coverage
91+
/third-party
92+
93+
# Test Reports
94+
/reports
95+
96+
# Stack Dumps generated when programs crash (Ex. bash.exe.stackdump on Win)
97+
*.stackdump
98+
99+
# Root dir shouldn't have Xcode project
100+
/*.xcodeproj
101+
102+
# ReactCommon subdir shouldn't have Xcode project
103+
/packages/react-native/ReactCommon/**/*.xcodeproj
104+
105+
# Libs that shouldn't have Xcode project
106+
/packages/react-native/Libraries/FBLazyVector/**/*.xcodeproj
107+
/packages/react-native/Libraries/Required/**/*.xcodeproj
108+
/packages/react-native/React/CoreModules/**/*.xcodeproj
109+
/packages/react-native/React/FBReactNativeSpec/**/*.xcodeproj
110+
/packages/react-native-codegen/**/*.xcodeproj
111+
/packages/rn-tester/**/*.xcodeproj
112+
113+
# Ruby Gems (Bundler)
114+
/packages/react-native/vendor
115+
/packages/react-native/template/vendor
116+
/packages/helloworld/vendor
117+
.ruby-version
118+
/**/.ruby-version
119+
vendor/
120+
121+
# iOS / CocoaPods
122+
/packages/react-native/template/ios/build/
123+
/packages/react-native/template/ios/Pods/
124+
/packages/react-native/template/ios/Podfile.lock
125+
/packages/helloworld/ios/build/
126+
/packages/helloworld/ios/Pods/
127+
/packages/helloworld/ios/Podfile.lock
128+
/packages/rn-tester/Gemfile.lock
129+
/packages/**/RCTLegacyInteropComponents.mm
130+
131+
# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here.
132+
/packages/rn-tester/Pods/*
133+
!/packages/rn-tester/Pods/__offline_mirrors_hermes__
134+
!/packages/rn-tester/Pods/__offline_mirrors_jsc__
135+
136+
# @react-native/codegen
137+
/packages/react-native/React/FBReactNativeSpec/FBReactNativeSpec
138+
/packages/react-native-codegen/lib
139+
/packages/react-native-codegen/tmp/
140+
/packages/react-native/ReactCommon/react/renderer/components/rncore/
141+
/packages/rn-tester/NativeModuleExample/ScreenshotManagerSpec*
142+
/**/RCTThirdPartyFabricComponentsProvider.*
143+
144+
# @react-native/codegen-typescript-test
145+
/packages/react-native-codegen-typescript-test/lib
146+
147+
# Additional SDKs
148+
/packages/react-native/sdks/download
149+
/packages/react-native/sdks/hermes
150+
/packages/react-native/sdks/hermesc
151+
/packages/react-native/sdks/hermes-engine/hermes-engine-from-local-source-dir.tar.gz
152+
153+
# Visual Studio Code (config dir - if present, this merges user defined
154+
# workspace settings on top of react-native.code-workspace)
155+
/.vscode
156+
157+
# Visual Studio
158+
.vs
159+
160+
# Android memory profiler files
161+
*.hprof
162+
163+
# Temporary files created by Metro to check the health of the file watcher
164+
.metro-health-check*
165+
166+
# CircleCI
167+
.circleci/generated_config.yml
168+
169+
# XDE
170+
.expo/
171+
172+
# VSCode
173+
.vscode/
174+
jsconfig.json
175+
176+
# Ruby
177+
example/vendor/
178+
179+
# node.js
180+
#
181+
node_modules/
182+
npm-debug.log
183+
yarn-debug.log
184+
yarn-error.log
185+
186+
# Yarn
187+
.yarn/*
188+
!.yarn/patches
189+
!.yarn/plugins
190+
!.yarn/releases
191+
!.yarn/sdks
192+
!.yarn/versions
193+
194+
# Expo
195+
.expo/
196+
197+
# Turborepo
198+
.turbo/
199+
200+
# generated by bob
201+
lib/
202+
203+
################################
204+
# iOS Development
205+
################################
206+
207+
# --------------------------------
208+
# macOS temporary files
209+
# --------------------------------
210+
.DS_Store
211+
*.lock
212+
*.swp
213+
214+
# --------------------------------
215+
# Xcode
216+
# --------------------------------
217+
!default.mode1v3
218+
!default.mode2v3
219+
!default.pbxuser
220+
!default.perspectivev3
221+
!default.xcworkspace
222+
!xcschemes
223+
!xcshareddata
224+
.build/
225+
.swiftpm/
226+
*.hmap
227+
*.ipa
228+
*.mode1v3
229+
*.mode2v3
230+
*.moved-aside
231+
*.pbxuser
232+
*.perspectivev3
233+
*.xccheckout
234+
*.xcscmblueprint
235+
*.xcuserstate
236+
*.xcworkspacedata
237+
*~.nib
238+
build/
239+
Builds/
240+
DerivedData/
241+
xcuserdata
242+
IDEWorkspaceChecks.plist
243+
244+
# --------------------------------
245+
# SwiftGen
246+
# --------------------------------
247+
*.generated.swift
248+
249+
# --------------------------------
250+
# AppCode
251+
# --------------------------------
252+
.idea/
253+
254+
# --------------------------------
255+
# Visual Studio Code
256+
# --------------------------------
257+
.vscode/
258+
259+
# --------------------------------
260+
# CocoaPods
261+
# --------------------------------
262+
!Podfile
263+
!Podfile.lock
264+
Pods/
265+
266+
# --------------------------------
267+
# Carthage
268+
# --------------------------------
269+
!Cartfile
270+
!Cartfile.private
271+
!Cartfile.resolved
272+
!Carthage/Checkouts
273+
Carthage/Build
274+
Carthage/Build.rbenv-vars
275+
276+
# --------------------------------
277+
# Fastlane
278+
# --------------------------------
279+
fastlane/Preview.html
280+
fastlane/report.xml
281+
fastlane/test_output
282+
283+
# --------------------------------
284+
# Homebrew
285+
# --------------------------------
286+
Brewfile*.lock.json
287+
288+
# --------------------------------
289+
# dotenv
290+
# --------------------------------
291+
.env
292+
.env.default
293+
294+
# --------------------------------
295+
# rbenv
296+
# --------------------------------
297+
.rbenv-vars
298+
299+
################################
300+
# Android Development
301+
################################
302+
303+
*.iml
304+
.gradle
305+
/local.properties
306+
.idea
307+
.DS_Store
308+
**/build
309+
/captures
310+
.externalNativeBuild
311+
.cxx
312+
local.properties
313+
keystore.properties
314+
devrev_android.jks
315+
credentials.properties

0 commit comments

Comments
 (0)