Skip to content

Commit b022826

Browse files
author
RN SDK Release User
committed
v1.0.0 release
0 parents  commit b022826

File tree

125 files changed

+23026
-0
lines changed

Some content is hidden

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

125 files changed

+23026
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pbxproj -text

.gitignore

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
project.xcworkspace
24+
# Root dir shouldn't have Xcode project
25+
/*.xcodeproj
26+
27+
# Android/IntelliJ
28+
#
29+
build/
30+
.idea
31+
.gradle
32+
local.properties
33+
*.iml
34+
android/bin/
35+
36+
# Android/Eclipse
37+
#
38+
**/.project
39+
**/org.eclipse.buildship.core.prefs
40+
41+
# Android
42+
#
43+
**/android/.classpath
44+
**/android/app/.classpath
45+
46+
# node.js
47+
#
48+
node_modules/
49+
50+
# BUCK
51+
#
52+
buck-out/
53+
\.buckd/
54+
*.keystore
55+
!debug.keystore
56+
57+
# Built application files
58+
#
59+
*.apk
60+
*.aar
61+
*.ap_
62+
*.aab
63+
64+
# Files for the ART/Dalvik VM
65+
#
66+
*.dex
67+
68+
# Java class files
69+
#
70+
*.class
71+
72+
# Generated files
73+
#
74+
bin/
75+
gen/
76+
out/
77+
78+
# Proguard folder generated by Eclipse
79+
#
80+
proguard/
81+
82+
# Watchman
83+
#
84+
.watchmanconfig
85+
86+
# Log Files
87+
#
88+
*.log
89+
90+
# Android Studio Navigation editor temp files
91+
#
92+
.navigation/
93+
94+
# Android Studio captures folder
95+
#
96+
captures/
97+
98+
# Keystore files
99+
#
100+
*.jks
101+
*.keystore
102+
103+
# External native build folder generated in Android Studio 2.2 and later
104+
#
105+
.externalNativeBuild
106+
.cxx/
107+
108+
# Freeline
109+
#
110+
freeline.py
111+
freeline/
112+
freeline_project_description.json
113+
114+
115+
# Version control
116+
#
117+
vcs.xml
118+
119+
# lint
120+
#
121+
lint/intermediates/
122+
lint/generated/
123+
lint/outputs/
124+
lint/tmp/
125+
126+
# Visual Studio Code
127+
#
128+
.vscode
129+
.vs
130+
131+
# fastlane
132+
#
133+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
134+
# screenshots whenever they are needed.
135+
# For more information about the recommended setup visit:
136+
# https://docs.fastlane.tools/best-practices/source-control/
137+
*/fastlane/report.xml
138+
*/fastlane/Preview.html
139+
*/fastlane/screenshots
140+
*/fastlane/test_output
141+
*/fastlane/readme.md
142+
143+
# Bundle artifact
144+
#
145+
*.jsbundle
146+
147+
# CocoaPods
148+
#
149+
/ios/Pods/
150+
151+
# Directory for ignored files
152+
#
153+
gitignored/
154+
155+
# Jest
156+
#
157+
coverage

.npmignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
TestApp
2+
SampleApp
3+
testutils
4+
5+
.gitlab-ci.yml
6+
bitrise.yml
7+
.huskyrc
8+
.gitattributes
9+
10+
# Tests
11+
#
12+
js/__tests__
13+
android/src/test
14+
ios/OnfidoSdkTests

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/erbium

.yarnrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry "https://registry.npmjs.org"

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2020 Onfido
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)