├── Algorithms ├── ReadMe.md ├── .gitignore ├── src │ └── main │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── algorithms │ │ ├── search │ │ └── BinarySearch.java │ │ ├── linkedlist │ │ └── CircleLinkedList.java │ │ └── sort │ │ └── select │ │ └── HeapSort.java └── build.gradle ├── HotFix ├── .gitignore ├── patch.jar ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── jiangdg │ │ │ │ └── hotfix │ │ │ │ ├── MyUtils.java │ │ │ │ └── MyApplication.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── hotfix │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── hotfix │ │ └── ExampleInstrumentedTest.kt └── proguard-rules.pro ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── aa.PNG │ │ │ │ ├── bb.PNG │ │ │ │ ├── cc.PNG │ │ │ │ ├── dd.PNG │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ │ └── activity_load_phones.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── jiangdg │ │ │ │ └── mvp │ │ │ │ ├── view │ │ │ │ ├── IBaseView.java │ │ │ │ ├── ILoadPhonesView.java │ │ │ │ └── ILoginView.java │ │ │ │ ├── model │ │ │ │ ├── ILoginModel.java │ │ │ │ ├── ILoadPhonesModel.java │ │ │ │ └── LoginModelImpl.java │ │ │ │ ├── utils │ │ │ │ └── common │ │ │ │ │ └── ConstantUtil.java │ │ │ │ ├── application │ │ │ │ └── MvpApplication.java │ │ │ │ ├── bean │ │ │ │ ├── UserInfoBean.java │ │ │ │ └── PhoneInfoBean.java │ │ │ │ └── presenter │ │ │ │ └── BasePresenter.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── mvp │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── mvp │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── FloatBall ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── jiangdg │ │ │ │ └── floatball │ │ │ │ ├── FloatBallService.java │ │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── floatball │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── floatball │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── HandleJpeg ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ └── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ ├── jniLibs │ │ │ ├── arm64-v8a │ │ │ │ └── libjpeg.so │ │ │ ├── armeabi │ │ │ │ └── libjpeg.so │ │ │ └── armeabi-v7a │ │ │ │ └── libjpeg.so │ │ ├── java │ │ │ └── com │ │ │ │ └── jiangdg │ │ │ │ └── natives │ │ │ │ └── JPEGUtils.java │ │ ├── cpp │ │ │ └── jconfigint.h │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── handlejpeg │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── handlejpeg │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── CMakeLists.txt ├── HandleYUV ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ └── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ ├── cpp │ │ │ └── yuv │ │ │ │ └── yuv.h │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── natives │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── natives │ │ └── ExampleInstrumentedTest.java ├── output │ ├── armeabi │ │ └── libyuv.so │ ├── arm64-v8a │ │ └── libyuv.so │ └── armeabi-v7a │ │ └── libyuv.so ├── CMakeLists.txt ├── proguard-rules.pro └── build.gradle ├── RC4Encrypt ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ └── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── test │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── test │ │ └── ExampleInstrumentedTest.java ├── so │ ├── armeabi │ │ └── librc4util.so │ ├── arm64-v8a │ │ └── librc4util.so │ └── armeabi-v7a │ │ └── librc4util.so ├── CMakeLists.txt └── proguard-rules.pro ├── libjpeg ├── .gitignore ├── src │ ├── main │ │ ├── cpp │ │ │ ├── java │ │ │ │ ├── doc │ │ │ │ │ ├── package-list │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── tab.gif │ │ │ │ │ │ ├── titlebar.gif │ │ │ │ │ │ ├── background.gif │ │ │ │ │ │ └── titlebar_end.gif │ │ │ │ │ └── script.js │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── org_libjpegturbo_turbojpeg_TJTransformer.h │ │ │ ├── doxygen-extra.css │ │ │ ├── html │ │ │ │ ├── doxygen-extra.css │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── open.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ ├── closed.png │ │ │ │ ├── doxygen.png │ │ │ │ ├── ftv2cl.png │ │ │ │ ├── ftv2doc.png │ │ │ │ ├── ftv2link.png │ │ │ │ ├── ftv2mo.png │ │ │ │ ├── ftv2node.png │ │ │ │ ├── ftv2ns.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── ftv2blank.png │ │ │ │ ├── ftv2mnode.png │ │ │ │ ├── ftv2pnode.png │ │ │ │ ├── ftv2lastnode.png │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ ├── ftv2plastnode.png │ │ │ │ ├── ftv2splitbar.png │ │ │ │ ├── ftv2vertline.png │ │ │ │ ├── search │ │ │ │ │ ├── close.png │ │ │ │ │ ├── groups_74.js │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ ├── search_l.png │ │ │ │ │ ├── search_m.png │ │ │ │ │ ├── search_r.png │ │ │ │ │ ├── all_68.js │ │ │ │ │ ├── all_77.js │ │ │ │ │ ├── all_78.js │ │ │ │ │ ├── all_79.js │ │ │ │ │ ├── all_72.js │ │ │ │ │ ├── variables_68.js │ │ │ │ │ ├── variables_77.js │ │ │ │ │ ├── variables_78.js │ │ │ │ │ ├── variables_79.js │ │ │ │ │ ├── variables_72.js │ │ │ │ │ ├── all_6e.js │ │ │ │ │ ├── variables_6e.js │ │ │ │ │ ├── all_63.js │ │ │ │ │ ├── variables_63.js │ │ │ │ │ ├── all_6f.js │ │ │ │ │ ├── variables_6f.js │ │ │ │ │ ├── all_64.js │ │ │ │ │ ├── classes_74.js │ │ │ │ │ ├── variables_64.js │ │ │ │ │ ├── typedefs_74.js │ │ │ │ │ ├── nomatches.html │ │ │ │ │ ├── enums_74.js │ │ │ │ │ ├── variables_74.js │ │ │ │ │ ├── all_63.html │ │ │ │ │ ├── all_64.html │ │ │ │ │ ├── all_68.html │ │ │ │ │ ├── all_6e.html │ │ │ │ │ ├── all_6f.html │ │ │ │ │ ├── all_72.html │ │ │ │ │ ├── all_74.html │ │ │ │ │ ├── all_77.html │ │ │ │ │ ├── all_78.html │ │ │ │ │ ├── all_79.html │ │ │ │ │ ├── enums_74.html │ │ │ │ │ ├── classes_74.html │ │ │ │ │ ├── groups_74.html │ │ │ │ │ ├── enumvalues_74.html │ │ │ │ │ ├── functions_74.html │ │ │ │ │ ├── typedefs_74.html │ │ │ │ │ ├── variables_63.html │ │ │ │ │ ├── variables_64.html │ │ │ │ │ ├── variables_68.html │ │ │ │ │ ├── variables_6e.html │ │ │ │ │ ├── variables_6f.html │ │ │ │ │ ├── variables_72.html │ │ │ │ │ ├── variables_74.html │ │ │ │ │ ├── variables_77.html │ │ │ │ │ ├── variables_78.html │ │ │ │ │ └── variables_79.html │ │ │ │ ├── ftv2folderopen.png │ │ │ │ └── ftv2folderclosed.png │ │ │ ├── md5 │ │ │ │ └── CMakeLists.txt │ │ │ ├── simd │ │ │ │ ├── gas-preprocessor.in │ │ │ │ ├── loongson │ │ │ │ │ └── jcsample.h │ │ │ │ └── powerpc │ │ │ │ │ └── jcsample.h │ │ │ ├── Brewfile │ │ │ ├── testimages │ │ │ │ ├── test1.icc │ │ │ │ ├── test2.icc │ │ │ │ ├── testorig.jpg │ │ │ │ ├── testorig.ppm │ │ │ │ ├── testimgari.jpg │ │ │ │ ├── testimgint.jpg │ │ │ │ ├── testorig12.jpg │ │ │ │ ├── vgl_5674_0098.bmp │ │ │ │ ├── vgl_6434_0018a.bmp │ │ │ │ ├── vgl_6548_0026a.bmp │ │ │ │ ├── nightshot_iso_100.bmp │ │ │ │ ├── test1.icc.txt │ │ │ │ └── test2.icc.txt │ │ │ ├── libjpeg.map.in │ │ │ ├── release │ │ │ │ ├── libjpeg.pc.in │ │ │ │ ├── libturbojpeg.pc.in │ │ │ │ ├── Welcome.rtf │ │ │ │ ├── makerpm.in │ │ │ │ ├── Distribution.xml.in │ │ │ │ └── makesrpm.in │ │ │ ├── doxygen.config │ │ │ ├── cmakescripts │ │ │ │ ├── testclean.cmake │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ ├── jdmaster.h │ │ │ ├── jconfigint.h.in │ │ │ └── jpegcomp.h │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── jiangdg │ │ │ │ └── libjpeg │ │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── libjpeg │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── libjpeg │ │ └── ExampleInstrumentedTest.java ├── so │ ├── armeabi │ │ ├── libjpeg.so │ │ └── jconfigint.h │ ├── arm64-v8a │ │ ├── libjpeg.so │ │ └── jconfigint.h │ └── armeabi-v7a │ │ ├── libjpeg.so │ │ └── jconfigint.h ├── CMakeLists.txt └── proguard-rules.pro ├── LeaksExamples ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_single_instance.xml │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── leaks │ │ │ ├── MainActivity.java │ │ │ ├── tools │ │ │ └── CommonUtils.java │ │ │ ├── SingleInstanceActivity.java │ │ │ ├── TraceViewAcitivty.java │ │ │ └── StaticInstanceActivity.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── leaks │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── leaks │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── SimpleThreadPool ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── threadpool │ │ │ └── MainActivity.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jiangdg │ │ │ └── threadpool │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jiangdg │ │ └── threadpool │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── heap dump.gif ├── Allocation Tracker.gif ├── .idea ├── copyright │ └── profiles_settings.xml ├── modules.xml ├── runConfigurations.xml ├── compiler.xml └── gradle.xml ├── LameMp3 ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.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 │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ └── layout │ │ │ └── activity_main.xml │ │ ├── java │ │ └── com │ │ │ └── jiangdg │ │ │ └── natives │ │ │ └── MainActivity.java │ │ ├── cpp │ │ ├── lame │ │ │ ├── lameerror.h │ │ │ ├── newmdct.h │ │ │ └── vbrquantize.h │ │ └── LameMp3.h │ │ └── AndroidManifest.xml ├── proguard-rules.pro ├── CMakeLists.txt └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore └── gradle.properties /Algorithms/ReadMe.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HotFix/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Algorithms/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FloatBall/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HandleJpeg/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HandleYUV/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /RC4Encrypt/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /libjpeg/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /LeaksExamples/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SimpleThreadPool/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/java/doc/package-list: -------------------------------------------------------------------------------- 1 | org.libjpegturbo.turbojpeg 2 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /heap dump.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/heap dump.gif -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/java/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: TJExample 3 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/md5/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_executable(md5cmp md5cmp.c md5.c md5hl.c) 2 | -------------------------------------------------------------------------------- /HotFix/patch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/patch.jar -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/simd/gas-preprocessor.in: -------------------------------------------------------------------------------- 1 | gas-preprocessor.pl @CMAKE_ASM_COMPILER@ ${1+"$@"} 2 | -------------------------------------------------------------------------------- /Allocation Tracker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/Allocation Tracker.gif -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MVP 3 | 4 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /HandleYUV/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | YuvDemo 3 | 4 | -------------------------------------------------------------------------------- /HotFix/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HotFix 3 | 4 | -------------------------------------------------------------------------------- /LameMp3/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LameMp3 3 | 4 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/Brewfile: -------------------------------------------------------------------------------- 1 | brew 'yasm' 2 | brew 'gcc@5' 3 | brew 'md5sha1sum' 4 | cask 'Caskroom/versions/java6' 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libjpeg 3 | 4 | -------------------------------------------------------------------------------- /FloatBall/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FloatBall 3 | 4 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HandleJPEG 3 | 4 | -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RC4Encrypt 3 | 4 | -------------------------------------------------------------------------------- /libjpeg/so/armeabi/libjpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/so/armeabi/libjpeg.so -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LeaksExamples 3 | 4 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ThreadPool 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /libjpeg/so/arm64-v8a/libjpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/so/arm64-v8a/libjpeg.so -------------------------------------------------------------------------------- /libjpeg/so/armeabi-v7a/libjpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/so/armeabi-v7a/libjpeg.so -------------------------------------------------------------------------------- /HandleYUV/output/armeabi/libyuv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/output/armeabi/libyuv.so -------------------------------------------------------------------------------- /RC4Encrypt/so/armeabi/librc4util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/so/armeabi/librc4util.so -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/bc_s.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/bdwn.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/nav_f.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/nav_g.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/nav_h.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/open.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/tab_a.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/tab_b.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/tab_h.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/tab_s.png -------------------------------------------------------------------------------- /HandleYUV/output/arm64-v8a/libyuv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/output/arm64-v8a/libyuv.so -------------------------------------------------------------------------------- /HandleYUV/output/armeabi-v7a/libyuv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/output/armeabi-v7a/libyuv.so -------------------------------------------------------------------------------- /RC4Encrypt/so/arm64-v8a/librc4util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/so/arm64-v8a/librc4util.so -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/aa.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xhdpi/aa.PNG -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/bb.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xhdpi/bb.PNG -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/cc.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xhdpi/cc.PNG -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/dd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xhdpi/dd.PNG -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/closed.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/doxygen.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2cl.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2doc.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2link.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2mo.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2node.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2ns.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/sync_off.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/sync_on.png -------------------------------------------------------------------------------- /RC4Encrypt/so/armeabi-v7a/librc4util.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/so/armeabi-v7a/librc4util.so -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2blank.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2mnode.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2pnode.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2lastnode.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2plastnode.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2splitbar.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2vertline.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/search/close.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/groups_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['turbojpeg',['TurboJPEG',['../group___turbo_j_p_e_g.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/test1.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/test1.icc -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/test2.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/test2.icc -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2folderopen.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/search/mag_sel.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/search/search_l.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/search/search_m.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/search/search_r.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/testorig.jpg -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/testorig.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/testorig.ppm -------------------------------------------------------------------------------- /HandleJpeg/src/main/jniLibs/arm64-v8a/libjpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/jniLibs/arm64-v8a/libjpeg.so -------------------------------------------------------------------------------- /HandleJpeg/src/main/jniLibs/armeabi/libjpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/jniLibs/armeabi/libjpeg.so -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/java/doc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/java/doc/resources/tab.gif -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/testimgari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/testimgari.jpg -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/testimgint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/testimgint.jpg -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/testorig12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/testorig12.jpg -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/jniLibs/armeabi-v7a/libjpeg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/jniLibs/armeabi-v7a/libjpeg.so -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['h',['h',['../structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_77.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['w',['w',['../structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_78.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x',['x',['../structtjregion.html#a4b6a37a93997091b26a75831fa291ad9',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_79.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/vgl_5674_0098.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/vgl_5674_0098.bmp -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/vgl_6434_0018a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/vgl_6434_0018a.bmp -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/vgl_6548_0026a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/vgl_6548_0026a.bmp -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_72.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['r',['r',['../structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf',1,'tjtransform']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_68.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['h',['h',['../structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_77.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['w',['w',['../structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_78.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x',['x',['../structtjregion.html#a4b6a37a93997091b26a75831fa291ad9',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_79.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['y',['y',['../structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2',1,'tjregion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/java/doc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/java/doc/resources/titlebar.gif -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/testimages/nightshot_iso_100.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/testimages/nightshot_iso_100.bmp -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/java/doc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/java/doc/resources/background.gif -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HotFix/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LameMp3/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_72.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['r',['r',['../structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf',1,'tjtransform']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/java/doc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/cpp/java/doc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/libjpeg/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/FloatBall/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleJpeg/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/HandleYUV/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/RC4Encrypt/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_6e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['num',['num',['../structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec',1,'tjscalingfactor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/LeaksExamples/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_6e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['num',['num',['../structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec',1,'tjscalingfactor']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['customfilter',['customFilter',['../structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1',1,'tjtransform']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/SimpleThreadPool/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_63.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['customfilter',['customFilter',['../structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1',1,'tjtransform']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /Algorithms/src/main/java/com/jiangdg/algorithms/search/BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangdongguo/AndroidFastDevelop/HEAD/Algorithms/src/main/java/com/jiangdg/algorithms/search/BinarySearch.java -------------------------------------------------------------------------------- /Algorithms/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'java-library' 2 | 3 | dependencies { 4 | implementation fileTree(dir: 'libs', include: ['*.jar']) 5 | } 6 | 7 | sourceCompatibility = "7" 8 | targetCompatibility = "7" 9 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/libjpeg.map.in: -------------------------------------------------------------------------------- 1 | LIBJPEGTURBO_@JPEG_LIB_VERSION_DECIMAL@ { 2 | @MEM_SRCDST_FUNCTIONS@ 3 | local: 4 | jsimd_*; 5 | jconst_*; 6 | }; 7 | 8 | LIBJPEG_@JPEG_LIB_VERSION_DECIMAL@ { 9 | global: 10 | *; 11 | }; 12 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #303F9F 4 | #303F9F 5 | #FFFFFF 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /FloatBall/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /HandleYUV/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /HotFix/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /LameMp3/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /libjpeg/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_6f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['op',['op',['../structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498',1,'tjtransform']]], 4 | ['options',['options',['../structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6',1,'tjtransform']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.4.1) 2 | 3 | 4 | add_library( 5 | native-lib 6 | 7 | SHARED 8 | 9 | src/main/cpp/native.cpp) 10 | 11 | find_library(log-lib log) 12 | 13 | target_link_libraries(native-lib 14 | ${log-lib}) -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_6f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['op',['op',['../structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498',1,'tjtransform']]], 4 | ['options',['options',['../structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6',1,'tjtransform']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /Algorithms/src/main/java/com/jiangdg/algorithms/linkedlist/CircleLinkedList.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.algorithms.linkedlist; 2 | 3 | /** 循环链表 4 | * author : jiangdg 5 | * date : 2020/1/16 21:16 6 | * desc : 7 | * version: 1.0 8 | */ 9 | public class CircleLinkedList { 10 | } 11 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/all_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['data',['data',['../structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3',1,'tjtransform']]], 4 | ['denom',['denom',['../structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3',1,'tjscalingfactor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/classes_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tjregion',['tjregion',['../structtjregion.html',1,'']]], 4 | ['tjscalingfactor',['tjscalingfactor',['../structtjscalingfactor.html',1,'']]], 5 | ['tjtransform',['tjtransform',['../structtjtransform.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/variables_64.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['data',['data',['../structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3',1,'tjtransform']]], 4 | ['denom',['denom',['../structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3',1,'tjscalingfactor']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/typedefs_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tjhandle',['tjhandle',['../group___turbo_j_p_e_g.html#ga758d2634ecb4949de7815cba621f5763',1,'turbojpeg.h']]], 4 | ['tjtransform',['tjtransform',['../group___turbo_j_p_e_g.html#gaa29f3189c41be12ec5dee7caec318a31',1,'turbojpeg.h']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /HotFix/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LameMp3/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /libjpeg/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FloatBall/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /HandleYUV/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/release/libjpeg.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@CMAKE_INSTALL_PREFIX@ 2 | exec_prefix=@CMAKE_INSTALL_PREFIX@ 3 | libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 4 | includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 5 | 6 | Name: libjpeg 7 | Description: A SIMD-accelerated JPEG codec that provides the libjpeg API 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -ljpeg 10 | Cflags: -I${includedir} 11 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/release/libturbojpeg.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@CMAKE_INSTALL_PREFIX@ 2 | exec_prefix=@CMAKE_INSTALL_PREFIX@ 3 | libdir=@CMAKE_INSTALL_FULL_LIBDIR@ 4 | includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ 5 | 6 | Name: libturbojpeg 7 | Description: A SIMD-accelerated JPEG codec that provides the TurboJPEG API 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -lturbojpeg 10 | Cflags: -I${includedir} 11 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /HandleYUV/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 设置编译native library需要最小的cmake版本 2 | cmake_minimum_required(VERSION 3.4.1) 3 | 4 | # 设置so动态库最后的输出路径 5 | set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/output/${ANDROID_ABI}) 6 | 7 | # 将指定的源文件编译为YuvOsd.so动态库 8 | add_library(yuv 9 | SHARED 10 | src/main/cpp/native_yuv.cpp) 11 | 12 | find_library(log-lib log ) 13 | target_link_libraries(yuv ${log-lib} ) 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/view/IBaseView.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.view; 2 | 3 | /** MVP框架V层,基抽象接口 4 | * Created by jianddongguo on 2017/7/5. 5 | * http://blog.csdn.net/andrexpert 6 | */ 7 | 8 | public interface IBaseView { 9 | // 显示进度框 10 | void showProgress(String content); 11 | 12 | // 取消进度框 13 | void dismissProgress(); 14 | 15 | // 打印toast 16 | void showToast(String msg); 17 | } 18 | -------------------------------------------------------------------------------- /LameMp3/src/main/java/com/jiangdg/natives/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.natives; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class MainActivity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_main); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /libjpeg/src/main/java/com/jiangdg/libjpeg/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.libjpeg; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class MainActivity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_main); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /HandleYUV/src/main/cpp/yuv/yuv.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | 6 | //#define FRAME_WIDTH (1280) 7 | //#define FRAME_HEIGHT (720) 8 | //#define FRAME_SIZE (FRAME_WIDTH*FRAME_HEIGHT*3/2) 9 | 10 | char *draw_Font_Func(char *ptr_frame, int FRAME_WIDTH, int FRAME_HEIGHT, 11 | int startx, int starty, int color, char *str,char * nameTable,int count); 12 | -------------------------------------------------------------------------------- /HotFix/src/main/java/com/jiangdg/hotfix/MyUtils.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.hotfix; 2 | 3 | /** 制造bug,即要修复的地方 4 | * author : jiangdg 5 | * date : 2019/12/29 14:51 6 | * desc : 7 | * version: 1.0 8 | */ 9 | public class MyUtils { 10 | 11 | public static int divisionOperate() { 12 | int a = 15; 13 | // 原始bug代码 14 | int b = 0; 15 | // 修改后的代码 16 | // int b=3; 17 | return a/b; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/java/com/jiangdg/leaks/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.leaks; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class MainActivity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_main); 12 | 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/java/com/jiangdg/natives/JPEGUtils.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.natives; 2 | 3 | import android.graphics.Bitmap; 4 | 5 | /** 6 | * 使用libjpeg实现JPEG编码压缩、解压 7 | * 8 | * @author Jiangdg 9 | * @since 2019-08-12 09:54:00 10 | * */ 11 | public class JPEGUtils { 12 | static { 13 | System.loadLibrary("jpegutil"); 14 | } 15 | 16 | public native static int nativeCompressJPEG(Bitmap bitmap, int quality, String outPath); 17 | } 18 | -------------------------------------------------------------------------------- /HotFix/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /LameMp3/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /libjpeg/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /FloatBall/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /HandleJpeg/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /HandleYUV/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /RC4Encrypt/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /HotFix/src/test/java/com/jiangdg/hotfix/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.jiangdg.hotfix 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SimpleThreadPool/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/view/ILoadPhonesView.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.view; 2 | 3 | import com.jiangdg.mvp.bean.PhoneInfoBean; 4 | 5 | import java.util.List; 6 | 7 | /** LoadFruitsActivityUI业务逻辑接口 8 | * 9 | * Created by jianddongguo on 2017/6/29. 10 | * http://blog.csdn.net/andrexpert 11 | */ 12 | 13 | public interface ILoadPhonesView extends IBaseView{ 14 | 15 | // 显示手机数据到RecyclerView 16 | void showPhoneInfos(List data); 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/view/ILoginView.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.view; 2 | 3 | import com.jiangdg.mvp.bean.UserInfoBean; 4 | 5 | import java.util.Map; 6 | 7 | /** LoginActivity UI业务逻辑接口 8 | * 9 | * Created by jianddongguo on 2017/6/29. 10 | * http://blog.csdn.net/andrexpert 11 | */ 12 | 13 | public interface ILoginView extends IBaseView{ 14 | // 获得用户登录输入数据 15 | UserInfoBean getLoginData(); 16 | 17 | void loginResult(boolean isSuccess); 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/model/ILoginModel.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.model; 2 | 3 | /**用户登录M层接口 4 | * 5 | * Created by jianddongguo on 2017/6/29. 6 | */ 7 | 8 | public interface ILoginModel { 9 | 10 | // 网络请求,验证用户密码 11 | void verifyUserPswd(String usrName,String passwd,verifyOnResultListener listener); 12 | 13 | // 回调接口:将请求结果暴露给调用者 14 | public interface verifyOnResultListener{ 15 | void onSuccess(); 16 | 17 | void onFailure(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/doxygen.config: -------------------------------------------------------------------------------- 1 | PROJECT_NAME = TurboJPEG 2 | PROJECT_NUMBER = 2.0 3 | OUTPUT_DIRECTORY = doc/ 4 | USE_WINDOWS_ENCODING = NO 5 | OPTIMIZE_OUTPUT_FOR_C = YES 6 | WARN_NO_PARAMDOC = YES 7 | GENERATE_LATEX = NO 8 | FILE_PATTERNS = turbojpeg.h 9 | HIDE_UNDOC_MEMBERS = YES 10 | VERBATIM_HEADERS = NO 11 | EXTRACT_STATIC = YES 12 | JAVADOC_AUTOBRIEF = YES 13 | MAX_INITIALIZER_LINES = 0 14 | ALWAYS_DETAILED_SEC = YES 15 | HTML_TIMESTAMP = NO 16 | HTML_EXTRA_STYLESHEET = doxygen-extra.css 17 | -------------------------------------------------------------------------------- /RC4Encrypt/src/test/java/com/jiangdg/test/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.test; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /libjpeg/src/test/java/com/jiangdg/libjpeg/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.libjpeg; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /HandleYUV/src/test/java/com/jiangdg/natives/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.natives; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /LeaksExamples/src/test/java/com/jiangdg/leaks/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.leaks; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/test/java/com/jiangdg/mvp/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /FloatBall/src/test/java/com/jiangdg/floatball/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.floatball; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /HandleJpeg/src/test/java/com/jiangdg/handlejpeg/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.handlejpeg; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /SimpleThreadPool/src/test/java/com/jiangdg/threadpool/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.threadpool; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /RC4Encrypt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.4.1) 2 | 3 | set(CMAKE_VERBOSE_MAKEFILE on) 4 | # 指定so输出路径 5 | set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/libs) 6 | # 添加自定义库rc4util 7 | add_library( 8 | rc4util 9 | SHARED 10 | src/main/cpp/NativeRC4.cpp 11 | ) 12 | # 查找系统库 13 | find_library(log-lib log) 14 | find_library(android-lib android) 15 | # 链接所有库到rc4util 16 | target_link_libraries( 17 | rc4util 18 | 19 | ${log-lib} 20 | ${android-lib} 21 | ) -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/utils/common/ConstantUtil.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.utils.common; 2 | 3 | import android.os.Environment; 4 | 5 | /**常量 6 | * Created by jiangdongguo on 2018/2/24. 7 | */ 8 | 9 | public class ConstantUtil { 10 | public static final boolean DEBUG = true; 11 | public static final String LOGPATH = Environment.getExternalStorageDirectory()+ 12 | "/log.txt"; 13 | 14 | public interface CacheData { 15 | String TIP_CRASH = "糟糕!程序异常,即将重启..."; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/model/ILoadPhonesModel.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.model; 2 | 3 | import com.jiangdg.mvp.bean.PhoneInfoBean; 4 | 5 | import java.util.List; 6 | 7 | /**加载手机数据M层接口,处理获取数据业务业务逻辑 8 | * 9 | * Created by jianddongguo on 2017/6/29. 10 | * http://blog.csdn.net/andrexpert 11 | */ 12 | 13 | public interface ILoadPhonesModel { 14 | 15 | // 获取手机数据业务逻辑 16 | void loadPhones(PhonesOnLoadListener listener); 17 | 18 | // 回调接口:将获取结果暴露给调用者 19 | public interface PhonesOnLoadListener{ 20 | void onComplete(List data); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /libjpeg/src/main/cpp/html/search/enums_74.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tjcs',['TJCS',['../group___turbo_j_p_e_g.html#ga4f83ad3368e0e29d1957be0efa7c3720',1,'turbojpeg.h']]], 4 | ['tjerr',['TJERR',['../group___turbo_j_p_e_g.html#gafbc17cfa57d0d5d11fea35ac025950fe',1,'turbojpeg.h']]], 5 | ['tjpf',['TJPF',['../group___turbo_j_p_e_g.html#gac916144e26c3817ac514e64ae5d12e2a',1,'turbojpeg.h']]], 6 | ['tjsamp',['TJSAMP',['../group___turbo_j_p_e_g.html#ga1d047060ea80bb9820d540bb928e9074',1,'turbojpeg.h']]], 7 | ['tjxop',['TJXOP',['../group___turbo_j_p_e_g.html#ga2de531af4e7e6c4f124908376b354866',1,'turbojpeg.h']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/application/MvpApplication.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.application; 2 | 3 | import android.app.Application; 4 | import android.os.Environment; 5 | 6 | import com.jiangdg.mvp.utils.common.CrashManager; 7 | 8 | /**全局类,继承于Application 9 | * Created by jianddongguo on 2018/2/23. 10 | */ 11 | 12 | public class MvpApplication extends Application { 13 | private CrashManager mCrashManager; 14 | 15 | @Override 16 | public void onCreate() { 17 | super.onCreate(); 18 | // 全局异常捕获 19 | mCrashManager = CrashManager.getInstance(); 20 | mCrashManager.initCrashHandler(this); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /LeaksExamples/src/main/java/com/jiangdg/leaks/tools/CommonUtils.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.leaks.tools; 2 | 3 | import android.content.Context; 4 | 5 | /** 工具类,单例模式 6 | * @Auther: Jiangdg 7 | * @Date: 2019/10/8 17:23 8 | * @Description: 9 | */ 10 | public class CommonUtils { 11 | private static CommonUtils instance; 12 | private Context mCtx; 13 | 14 | private CommonUtils(Context context){ 15 | this.mCtx = context; 16 | } 17 | 18 | public static CommonUtils getInstance(Context context) { 19 | if(instance == null) { 20 | instance = new CommonUtils(context); 21 | } 22 | return instance; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/java/com/jiangdg/mvp/bean/UserInfoBean.java: -------------------------------------------------------------------------------- 1 | package com.jiangdg.mvp.bean; 2 | 3 | /**用户登录信息 4 | * 5 | * Created by jianddongguo on 2017/7/3. 6 | */ 7 | 8 | public class UserInfoBean { 9 | private String userName; 10 | private String userPasswd; 11 | 12 | public String getUserName() { 13 | return userName; 14 | } 15 | 16 | public void setUserName(String userName) { 17 | this.userName = userName; 18 | } 19 | 20 | public String getUserPasswd() { 21 | return userPasswd; 22 | } 23 | 24 | public void setUserPasswd(String userPasswd) { 25 | this.userPasswd = userPasswd; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /FloatBall/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |