├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── richardcao │ │ └── exceptionsmanager │ │ └── react │ │ ├── ExceptionsManager.java │ │ └── ExceptionsManagerModule.java ├── build.gradle ├── gradle.properties └── settings.gradle └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/richardcao/exceptionsmanager/react/ExceptionsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/app/src/main/java/com/richardcao/exceptionsmanager/react/ExceptionsManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/richardcao/exceptionsmanager/react/ExceptionsManagerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/app/src/main/java/com/richardcao/exceptionsmanager/react/ExceptionsManagerModule.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Cao/react-native-exceptions-manager/HEAD/package.json --------------------------------------------------------------------------------