├── .classpath ├── .gitignore ├── .project ├── LICENSE ├── README.md ├── android ├── .settings │ ├── org.eclipse.jdt.apt.core.prefs │ └── org.eclipse.jdt.core.prefs ├── LICENSE ├── build.gradle ├── build.properties ├── build.xml ├── dist │ └── yy.logcatcher-android-3.0.0.zip ├── java-sources.txt ├── manifest ├── platform │ └── README ├── src │ └── yy │ │ └── logcatcher │ │ ├── PipeExceptionHandler.java │ │ ├── PipeLogListener.java │ │ └── TilogcatcherModule.java └── timodule.xml └── ios ├── .gitignore ├── Classes ├── .gitignore ├── TiExceptionHandler+EventLogging.h ├── TiExceptionHandler+EventLogging.m ├── YyLogcatcherModule.h ├── YyLogcatcherModule.m ├── YyLogcatcherModuleAssets.h └── YyLogcatcherModuleAssets.m ├── LICENSE ├── TiLogCatcher.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── david.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── miga.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── david.xcuserdatad │ └── xcschemes │ │ ├── Build & Test.xcscheme │ │ ├── TiLogCatcher.xcscheme │ │ └── xcschememanagement.plist │ └── miga.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── YyLogcatcher_Prefix.pch ├── dist └── yy.logcatcher-iphone-1.0.0.zip ├── manifest ├── metadata.json ├── module.xcconfig ├── platform └── README ├── timodule.xml └── titanium.xcconfig /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | .apt_generated 5 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/README.md -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/LICENSE -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/build.properties -------------------------------------------------------------------------------- /android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/build.xml -------------------------------------------------------------------------------- /android/dist/yy.logcatcher-android-3.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/dist/yy.logcatcher-android-3.0.0.zip -------------------------------------------------------------------------------- /android/java-sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/java-sources.txt -------------------------------------------------------------------------------- /android/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/manifest -------------------------------------------------------------------------------- /android/platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/platform/README -------------------------------------------------------------------------------- /android/src/yy/logcatcher/PipeExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/src/yy/logcatcher/PipeExceptionHandler.java -------------------------------------------------------------------------------- /android/src/yy/logcatcher/PipeLogListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/src/yy/logcatcher/PipeLogListener.java -------------------------------------------------------------------------------- /android/src/yy/logcatcher/TilogcatcherModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/src/yy/logcatcher/TilogcatcherModule.java -------------------------------------------------------------------------------- /android/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/android/timodule.xml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | -------------------------------------------------------------------------------- /ios/Classes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/.gitignore -------------------------------------------------------------------------------- /ios/Classes/TiExceptionHandler+EventLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/TiExceptionHandler+EventLogging.h -------------------------------------------------------------------------------- /ios/Classes/TiExceptionHandler+EventLogging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/TiExceptionHandler+EventLogging.m -------------------------------------------------------------------------------- /ios/Classes/YyLogcatcherModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/YyLogcatcherModule.h -------------------------------------------------------------------------------- /ios/Classes/YyLogcatcherModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/YyLogcatcherModule.m -------------------------------------------------------------------------------- /ios/Classes/YyLogcatcherModuleAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/YyLogcatcherModuleAssets.h -------------------------------------------------------------------------------- /ios/Classes/YyLogcatcherModuleAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/Classes/YyLogcatcherModuleAssets.m -------------------------------------------------------------------------------- /ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/LICENSE -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/project.xcworkspace/xcuserdata/david.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/project.xcworkspace/xcuserdata/david.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/project.xcworkspace/xcuserdata/miga.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/project.xcworkspace/xcuserdata/miga.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/Build & Test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/Build & Test.xcscheme -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/TiLogCatcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/TiLogCatcher.xcscheme -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/TiLogCatcher.xcodeproj/xcuserdata/miga.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/TiLogCatcher.xcodeproj/xcuserdata/miga.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/YyLogcatcher_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/YyLogcatcher_Prefix.pch -------------------------------------------------------------------------------- /ios/dist/yy.logcatcher-iphone-1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/dist/yy.logcatcher-iphone-1.0.0.zip -------------------------------------------------------------------------------- /ios/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/manifest -------------------------------------------------------------------------------- /ios/metadata.json: -------------------------------------------------------------------------------- 1 | {"exports":[]} -------------------------------------------------------------------------------- /ios/module.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/module.xcconfig -------------------------------------------------------------------------------- /ios/platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/platform/README -------------------------------------------------------------------------------- /ios/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/timodule.xml -------------------------------------------------------------------------------- /ios/titanium.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbankier/TiLogCatcher/HEAD/ios/titanium.xcconfig --------------------------------------------------------------------------------