Skip to content

Commit b30d926

Browse files
authored
Added Native exception handlers - V2 😎🤘🏻 (#7)
* Adding native files * Working IOS native exception handler * Android working temp * Added Android native error handler * Completed IOS Native error handler * android new intent method * Fixed both android and iOS native error handlers * Added documentation for iOS error handler * Styled the error screen for android * Added README and updated version * Updated readme * updated readme again * updated readme 🦇 * Updated readme wohooo ✌🏻
1 parent b721caf commit b30d926

18 files changed

+1166
-39
lines changed

.gitattributes

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

.gitignore

+47
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
2+
# OSX
3+
#
4+
.DS_Store
5+
6+
# node.js
7+
#
8+
node_modules/
9+
npm-debug.log
10+
yarn-error.log
11+
12+
13+
# Xcode
14+
#
15+
build/
16+
*.pbxuser
17+
!default.pbxuser
18+
*.mode1v3
19+
!default.mode1v3
20+
*.mode2v3
21+
!default.mode2v3
22+
*.perspectivev3
23+
!default.perspectivev3
24+
xcuserdata
25+
*.xccheckout
26+
*.moved-aside
27+
DerivedData
28+
*.hmap
29+
*.ipa
30+
*.xcuserstate
31+
project.xcworkspace
32+
33+
34+
# Android/IntelliJ
35+
#
36+
build/
37+
.idea
38+
.gradle
39+
local.properties
40+
*.iml
41+
42+
# BUCK
43+
buck-out/
44+
\.buckd/
45+
*.keystore
46+
47+
148
node_modules
249
.git
350
cache

0 commit comments

Comments
 (0)