├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-docs ├── README.md ├── README.zh-CN.md ├── checkstyle.xml ├── doc ├── architecture.png ├── capture_anr.png ├── capture_native_crash.png ├── intro.png ├── tombstone_anr_arm64-v8a.txt ├── tombstone_anr_armeabi-v7a.txt ├── tombstone_anr_armeabi.txt ├── tombstone_anr_x86.txt ├── tombstone_anr_x86_64.txt ├── tombstone_java.txt ├── tombstone_native_arm64-v8a.txt ├── tombstone_native_armeabi-v7a.txt ├── tombstone_native_armeabi.txt ├── tombstone_native_x86.txt ├── tombstone_native_x86_64.txt ├── xcrash_logo.png ├── xcrash_logo.svg └── xcrash_logo2.png ├── gradle.properties ├── gradle ├── check.gradle ├── publish.gradle ├── sanitizer.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── xcrash_lib ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── common │ │ ├── queue.h │ │ ├── tree.h │ │ ├── xcc_b64.c │ │ ├── xcc_b64.h │ │ ├── xcc_errno.h │ │ ├── xcc_fmt.c │ │ ├── xcc_fmt.h │ │ ├── xcc_libc_support.c │ │ ├── xcc_libc_support.h │ │ ├── xcc_meminfo.c │ │ ├── xcc_meminfo.h │ │ ├── xcc_signal.c │ │ ├── xcc_signal.h │ │ ├── xcc_spot.h │ │ ├── xcc_unwind.c │ │ ├── xcc_unwind.h │ │ ├── xcc_unwind_clang.c │ │ ├── xcc_unwind_clang.h │ │ ├── xcc_unwind_libcorkscrew.c │ │ ├── xcc_unwind_libcorkscrew.h │ │ ├── xcc_unwind_libunwind.c │ │ ├── xcc_unwind_libunwind.h │ │ ├── xcc_util.c │ │ ├── xcc_util.h │ │ └── xcc_version.h │ ├── dl │ │ ├── README.md │ │ ├── xc_dl.c │ │ └── xc_dl.h │ ├── lzma │ │ ├── 7z.h │ │ ├── 7zAlloc.c │ │ ├── 7zAlloc.h │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── 7zVersion.rc │ │ ├── Aes.c │ │ ├── Aes.h │ │ ├── AesOpt.c │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bcj2Enc.c │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── Compiler.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── DllSecur.c │ │ ├── DllSecur.h │ │ ├── LICENSE │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma2DecMt.c │ │ ├── Lzma2DecMt.h │ │ ├── Lzma2Enc.c │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── MtCoder.c │ │ ├── MtCoder.h │ │ ├── MtDec.c │ │ ├── MtDec.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha256.c │ │ ├── Sha256.h │ │ ├── Sort.c │ │ ├── Sort.h │ │ ├── Threads.c │ │ ├── Threads.h │ │ ├── Xz.c │ │ ├── Xz.h │ │ ├── XzCrc64.c │ │ ├── XzCrc64.h │ │ ├── XzCrc64Opt.c │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ ├── XzEnc.h │ │ └── XzIn.c │ ├── xcrash.exports │ ├── xcrash │ │ ├── xc_common.c │ │ ├── xc_common.h │ │ ├── xc_crash.c │ │ ├── xc_crash.h │ │ ├── xc_fallback.c │ │ ├── xc_fallback.h │ │ ├── xc_jni.c │ │ ├── xc_jni.h │ │ ├── xc_test.c │ │ ├── xc_test.h │ │ ├── xc_trace.c │ │ ├── xc_trace.h │ │ ├── xc_util.c │ │ └── xc_util.h │ └── xcrash_dumper │ │ ├── xcd_arm_exidx.c │ │ ├── xcd_arm_exidx.h │ │ ├── xcd_core.c │ │ ├── xcd_dwarf.c │ │ ├── xcd_dwarf.h │ │ ├── xcd_elf.c │ │ ├── xcd_elf.h │ │ ├── xcd_elf_interface.c │ │ ├── xcd_elf_interface.h │ │ ├── xcd_frames.c │ │ ├── xcd_frames.h │ │ ├── xcd_log.h │ │ ├── xcd_map.c │ │ ├── xcd_map.h │ │ ├── xcd_maps.c │ │ ├── xcd_maps.h │ │ ├── xcd_md5.c │ │ ├── xcd_md5.h │ │ ├── xcd_memory.c │ │ ├── xcd_memory.h │ │ ├── xcd_memory_buf.c │ │ ├── xcd_memory_buf.h │ │ ├── xcd_memory_file.c │ │ ├── xcd_memory_file.h │ │ ├── xcd_memory_remote.c │ │ ├── xcd_memory_remote.h │ │ ├── xcd_process.c │ │ ├── xcd_process.h │ │ ├── xcd_regs.h │ │ ├── xcd_regs_arm.c │ │ ├── xcd_regs_arm64.c │ │ ├── xcd_regs_x86.c │ │ ├── xcd_regs_x86_64.c │ │ ├── xcd_sys.c │ │ ├── xcd_sys.h │ │ ├── xcd_thread.c │ │ ├── xcd_thread.h │ │ ├── xcd_util.c │ │ └── xcd_util.h │ └── java │ └── xcrash │ ├── ActivityMonitor.java │ ├── AnrHandler.java │ ├── DefaultLogger.java │ ├── Errno.java │ ├── FileManager.java │ ├── ICrashCallback.java │ ├── ILibLoader.java │ ├── ILogger.java │ ├── JavaCrashHandler.java │ ├── NativeHandler.java │ ├── TombstoneManager.java │ ├── TombstoneParser.java │ ├── Util.java │ ├── Version.java │ └── XCrash.java └── xcrash_sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── xcrash │ └── sample │ ├── MainActivity.java │ ├── MyCustomApplication.java │ ├── MyService.java │ └── SecondActivity.java └── res ├── drawable-v24 └── ic_launcher_foreground.xml ├── drawable └── ic_launcher_background.xml ├── layout ├── activity_main.xml └── activity_second.xml ├── mipmap-anydpi-v26 ├── ic_launcher.xml └── ic_launcher_round.xml ├── mipmap-hdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-mdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-xhdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-xxhdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-xxxhdpi ├── ic_launcher.png └── ic_launcher_round.png └── values ├── colors.xml ├── strings.xml └── styles.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/LICENSE-docs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /doc/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/architecture.png -------------------------------------------------------------------------------- /doc/capture_anr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/capture_anr.png -------------------------------------------------------------------------------- /doc/capture_native_crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/capture_native_crash.png -------------------------------------------------------------------------------- /doc/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/intro.png -------------------------------------------------------------------------------- /doc/tombstone_anr_arm64-v8a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_anr_arm64-v8a.txt -------------------------------------------------------------------------------- /doc/tombstone_anr_armeabi-v7a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_anr_armeabi-v7a.txt -------------------------------------------------------------------------------- /doc/tombstone_anr_armeabi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_anr_armeabi.txt -------------------------------------------------------------------------------- /doc/tombstone_anr_x86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_anr_x86.txt -------------------------------------------------------------------------------- /doc/tombstone_anr_x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_anr_x86_64.txt -------------------------------------------------------------------------------- /doc/tombstone_java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_java.txt -------------------------------------------------------------------------------- /doc/tombstone_native_arm64-v8a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_native_arm64-v8a.txt -------------------------------------------------------------------------------- /doc/tombstone_native_armeabi-v7a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_native_armeabi-v7a.txt -------------------------------------------------------------------------------- /doc/tombstone_native_armeabi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_native_armeabi.txt -------------------------------------------------------------------------------- /doc/tombstone_native_x86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_native_x86.txt -------------------------------------------------------------------------------- /doc/tombstone_native_x86_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/tombstone_native_x86_64.txt -------------------------------------------------------------------------------- /doc/xcrash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/xcrash_logo.png -------------------------------------------------------------------------------- /doc/xcrash_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/xcrash_logo.svg -------------------------------------------------------------------------------- /doc/xcrash_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/doc/xcrash_logo2.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/check.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradle/check.gradle -------------------------------------------------------------------------------- /gradle/publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradle/publish.gradle -------------------------------------------------------------------------------- /gradle/sanitizer.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradle/sanitizer.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/settings.gradle -------------------------------------------------------------------------------- /xcrash_lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /xcrash_lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/build.gradle -------------------------------------------------------------------------------- /xcrash_lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/proguard-rules.pro -------------------------------------------------------------------------------- /xcrash_lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/queue.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/tree.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_b64.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_b64.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_errno.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_fmt.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_fmt.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_libc_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_libc_support.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_libc_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_libc_support.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_meminfo.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_meminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_meminfo.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_signal.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_signal.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_spot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_spot.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind_clang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind_clang.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind_clang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind_clang.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind_libcorkscrew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind_libcorkscrew.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind_libcorkscrew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind_libcorkscrew.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind_libunwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind_libunwind.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_unwind_libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_unwind_libunwind.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_util.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_util.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/common/xcc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/common/xcc_version.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/dl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/dl/README.md -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/dl/xc_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/dl/xc_dl.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/dl/xc_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/dl/xc_dl.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7z.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zAlloc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zAlloc.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zArcIn.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zBuf.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zBuf.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zBuf2.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zCrc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zCrc.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zCrcOpt.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zDec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zFile.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zFile.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zStream.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zTypes.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zVersion.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/7zVersion.rc -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Aes.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Aes.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/AesOpt.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Alloc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Alloc.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Bcj2.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Bcj2.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Bcj2Enc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Bra.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Bra.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Bra86.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/BraIA64.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Compiler.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/CpuArch.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/CpuArch.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Delta.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Delta.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/DllSecur.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/DllSecur.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LICENSE -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzFind.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzFind.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzFindMt.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzFindMt.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzHash.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma2Dec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma2Dec.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma2DecMt.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma2DecMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma2DecMt.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma2Enc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma2Enc.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma86.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma86Dec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Lzma86Enc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzmaDec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzmaDec.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzmaLib.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/LzmaLib.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/MtCoder.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/MtCoder.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/MtDec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/MtDec.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Ppmd.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Ppmd7.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Ppmd7.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Ppmd7Dec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Ppmd7Enc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Precomp.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/RotateDefs.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Sha256.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Sha256.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Sort.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Sort.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Threads.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Threads.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Xz.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/Xz.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzCrc64.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzCrc64.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzCrc64Opt.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzDec.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzEnc.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzEnc.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/lzma/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/lzma/XzIn.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash.exports -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_common.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_common.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_crash.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_crash.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_fallback.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_fallback.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_jni.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_jni.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_test.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_test.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_trace.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_trace.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_util.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash/xc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash/xc_util.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_arm_exidx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_arm_exidx.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_arm_exidx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_arm_exidx.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_core.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_dwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_dwarf.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_dwarf.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf_interface.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_elf_interface.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_frames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_frames.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_frames.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_log.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_map.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_map.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_maps.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_maps.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_md5.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_md5.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_buf.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_buf.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_file.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_file.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_remote.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_memory_remote.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_process.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_process.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_arm.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_arm64.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_x86.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_regs_x86_64.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_sys.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_sys.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_thread.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_thread.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_util.c -------------------------------------------------------------------------------- /xcrash_lib/src/main/cpp/xcrash_dumper/xcd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/cpp/xcrash_dumper/xcd_util.h -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/ActivityMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/ActivityMonitor.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/AnrHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/AnrHandler.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/DefaultLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/DefaultLogger.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/Errno.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/Errno.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/FileManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/FileManager.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/ICrashCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/ICrashCallback.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/ILibLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/ILibLoader.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/ILogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/ILogger.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/JavaCrashHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/JavaCrashHandler.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/NativeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/NativeHandler.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/TombstoneManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/TombstoneManager.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/TombstoneParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/TombstoneParser.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/Util.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/Version.java -------------------------------------------------------------------------------- /xcrash_lib/src/main/java/xcrash/XCrash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_lib/src/main/java/xcrash/XCrash.java -------------------------------------------------------------------------------- /xcrash_sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /xcrash_sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/build.gradle -------------------------------------------------------------------------------- /xcrash_sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/proguard-rules.pro -------------------------------------------------------------------------------- /xcrash_sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/java/xcrash/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/java/xcrash/sample/MainActivity.java -------------------------------------------------------------------------------- /xcrash_sample/src/main/java/xcrash/sample/MyCustomApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/java/xcrash/sample/MyCustomApplication.java -------------------------------------------------------------------------------- /xcrash_sample/src/main/java/xcrash/sample/MyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/java/xcrash/sample/MyService.java -------------------------------------------------------------------------------- /xcrash_sample/src/main/java/xcrash/sample/SecondActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/java/xcrash/sample/SecondActivity.java -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/layout/activity_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/layout/activity_second.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /xcrash_sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/xCrash/HEAD/xcrash_sample/src/main/res/values/styles.xml --------------------------------------------------------------------------------