├── .gitignore ├── .idea ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ └── output-metadata.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shaon2016 │ │ └── propickersample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── shaon2016 │ │ │ └── propickersample │ │ │ ├── JavaMainActivityExample.java │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── activity_main2.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── shaon2016 │ └── propickersample │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── propicker.jks ├── propicker ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── shaon2016 │ │ └── propicker │ │ ├── pro_image_picker │ │ ├── ProPicker.kt │ │ ├── ProviderHelper.kt │ │ ├── model │ │ │ ├── ImageProvider.kt │ │ │ └── Picker.kt │ │ └── ui │ │ │ ├── ImageProviderFragment.kt │ │ │ └── ProPickerActivity.kt │ │ └── util │ │ ├── D.kt │ │ ├── DateUtil.kt │ │ ├── FileUriUtils.kt │ │ ├── FileUtil.kt │ │ └── TouchImageView.kt │ └── res │ ├── drawable │ ├── circle_black_background_white_2dp_border.xml │ ├── circle_green_background.xml │ ├── circle_transparent.xml │ ├── ic_baseline_check_24.xml │ ├── ic_baseline_close_24.xml │ ├── ic_baseline_flash_auto_24.xml │ ├── ic_baseline_flash_off_24.xml │ ├── ic_baseline_flash_on_24.xml │ ├── ic_baseline_flip_camera_android_24.xml │ ├── ic_baseline_photo_camera_24.xml │ ├── ic_baseline_white_close_24.xml │ └── zoom_seekbar_line_fill.xml │ ├── layout │ ├── activity_pro_image_picker.xml │ ├── camera_controller_ui.xml │ ├── dialog_image_picker_chooser.xml │ ├── dialog_progress.xml │ └── fragment_image_provider.xml │ └── values │ ├── colors.xml │ └── styles.xml ├── screenshot ├── image1.jpeg └── image2.jpeg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ProPickerSample -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/shaon2016/propickersample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/androidTest/java/com/shaon2016/propickersample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/shaon2016/propickersample/JavaMainActivityExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/java/com/shaon2016/propickersample/JavaMainActivityExample.java -------------------------------------------------------------------------------- /app/src/main/java/com/shaon2016/propickersample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/java/com/shaon2016/propickersample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/shaon2016/propickersample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/app/src/test/java/com/shaon2016/propickersample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /propicker.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker.jks -------------------------------------------------------------------------------- /propicker/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /propicker/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/build.gradle -------------------------------------------------------------------------------- /propicker/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /propicker/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/proguard-rules.pro -------------------------------------------------------------------------------- /propicker/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ProPicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ProPicker.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ProviderHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ProviderHelper.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/model/ImageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/model/ImageProvider.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/model/Picker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/model/Picker.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ui/ImageProviderFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ui/ImageProviderFragment.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ui/ProPickerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/pro_image_picker/ui/ProPickerActivity.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/util/D.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/util/D.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/util/DateUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/util/DateUtil.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/util/FileUriUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/util/FileUriUtils.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/util/FileUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/util/FileUtil.kt -------------------------------------------------------------------------------- /propicker/src/main/java/com/shaon2016/propicker/util/TouchImageView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/java/com/shaon2016/propicker/util/TouchImageView.kt -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/circle_black_background_white_2dp_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/circle_black_background_white_2dp_border.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/circle_green_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/circle_green_background.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/circle_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/circle_transparent.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_check_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_check_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_close_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_close_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_flash_auto_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_flash_auto_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_flash_off_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_flash_off_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_flash_on_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_flash_on_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_flip_camera_android_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_flip_camera_android_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_photo_camera_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_photo_camera_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/ic_baseline_white_close_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/ic_baseline_white_close_24.xml -------------------------------------------------------------------------------- /propicker/src/main/res/drawable/zoom_seekbar_line_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/drawable/zoom_seekbar_line_fill.xml -------------------------------------------------------------------------------- /propicker/src/main/res/layout/activity_pro_image_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/layout/activity_pro_image_picker.xml -------------------------------------------------------------------------------- /propicker/src/main/res/layout/camera_controller_ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/layout/camera_controller_ui.xml -------------------------------------------------------------------------------- /propicker/src/main/res/layout/dialog_image_picker_chooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/layout/dialog_image_picker_chooser.xml -------------------------------------------------------------------------------- /propicker/src/main/res/layout/dialog_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/layout/dialog_progress.xml -------------------------------------------------------------------------------- /propicker/src/main/res/layout/fragment_image_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/layout/fragment_image_provider.xml -------------------------------------------------------------------------------- /propicker/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /propicker/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/propicker/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /screenshot/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/screenshot/image1.jpeg -------------------------------------------------------------------------------- /screenshot/image2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/screenshot/image2.jpeg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaon2016/ProPicker/HEAD/settings.gradle --------------------------------------------------------------------------------