├── .gitignore ├── LICENSE ├── README.md ├── doc └── pt │ └── README.md ├── example ├── README.md └── index.html ├── hooks └── after_prepare │ └── 010-update-android-manifest.js ├── package.json ├── plugin.xml ├── screenshots ├── android.png └── ios.jpg ├── src ├── android │ ├── ImagePickerMain.java │ ├── imageloader │ │ └── GlideImageLoader.java │ ├── imagepicker.gradle │ ├── module │ │ ├── DataHolder.java │ │ ├── ImageDataSource.java │ │ ├── ImagePicker.java │ │ ├── ImagePickerProvider.java │ │ ├── adapter │ │ │ ├── ImageFolderAdapter.java │ │ │ ├── ImagePageAdapter.java │ │ │ └── ImageRecyclerAdapter.java │ │ ├── bean │ │ │ ├── ImageFolder.java │ │ │ └── ImageItem.java │ │ ├── loader │ │ │ └── ImageLoader.java │ │ ├── ui │ │ │ ├── ImageBaseActivity.java │ │ │ ├── ImageCropActivity.java │ │ │ ├── ImageGridActivity.java │ │ │ ├── ImagePreviewActivity.java │ │ │ ├── ImagePreviewBaseActivity.java │ │ │ └── ImagePreviewDelActivity.java │ │ ├── util │ │ │ ├── BitmapUtil.java │ │ │ ├── InnerToaster.java │ │ │ ├── NavigationBarChangeListener.java │ │ │ ├── ProviderUtil.java │ │ │ └── Utils.java │ │ └── view │ │ │ ├── CropImageView.java │ │ │ ├── FolderPopUpWindow.java │ │ │ ├── GridSpacingItemDecoration.java │ │ │ ├── SuperCheckBox.java │ │ │ ├── SystemBarTintManager.java │ │ │ └── ViewPagerFixed.java │ └── res │ │ ├── anim │ │ ├── fade_in.xml │ │ ├── fade_out.xml │ │ ├── hide_to_bottom.xml │ │ ├── show_from_bottom.xml │ │ ├── top_in.xml │ │ └── top_out.xml │ │ ├── drawable-v21 │ │ └── bg_folder_item.xml │ │ ├── drawable │ │ ├── bg_btn_dis.xml │ │ ├── bg_btn_nor.xml │ │ ├── bg_btn_pre.xml │ │ ├── bg_folder_item.xml │ │ ├── bg_image_folder.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_cover_shade.xml │ │ ├── ic_default_image.xml │ │ ├── ic_vector_check.xml │ │ ├── ic_vector_delete.xml │ │ ├── radio_item_checked.xml │ │ ├── selector_back_press.xml │ │ ├── selector_grid_camera_bg.xml │ │ ├── selector_item_checked.xml │ │ └── selector_top_ok.xml │ │ ├── layout │ │ ├── activity_image_crop.xml │ │ ├── activity_image_grid.xml │ │ ├── activity_image_preview.xml │ │ ├── adapter_camera_item.xml │ │ ├── adapter_folder_list_item.xml │ │ ├── adapter_image_list_item.xml │ │ ├── include_top_bar.xml │ │ ├── ip_dialog_loading.xml │ │ └── pop_folder.xml │ │ ├── mipmap-xxhdpi │ │ ├── checkbox_checked.png │ │ ├── checkbox_normal.png │ │ ├── grid_camera.png │ │ ├── radio_checked.png │ │ ├── radio_normal.png │ │ └── text_indicator.png │ │ ├── values-en │ │ └── multi_image_chooser_strings.xml │ │ ├── values-pt │ │ └── multi_image_chooser_strings.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── multi_image_chooser_colors.xml │ │ └── multi_image_chooser_strings.xml │ │ └── xml │ │ └── imagepicker_provider_paths.xml └── ios │ ├── ImagePickerMain.h │ ├── ImagePickerMain.m │ ├── UIImage+Luban_iOS_Extension_h.h │ ├── UIImage+Luban_iOS_Extension_h.m │ └── libs │ ├── LxGridViewFlowLayout.h │ ├── LxGridViewFlowLayout.m │ ├── NSBundle+TZImagePicker.h │ ├── NSBundle+TZImagePicker.m │ ├── TZAssetCell.h │ ├── TZAssetCell.m │ ├── TZAssetModel.h │ ├── TZAssetModel.m │ ├── TZGifPhotoPreviewController.h │ ├── TZGifPhotoPreviewController.m │ ├── TZImageCropManager.h │ ├── TZImageCropManager.m │ ├── TZImageManager.h │ ├── TZImageManager.m │ ├── TZImagePickerController.bundle │ ├── MMVideoPreviewPlay@2x.png │ ├── MMVideoPreviewPlayHL@2x.png │ ├── Root.plist │ ├── TableViewArrow@2x.png │ ├── VideoSendIcon@2x.png │ ├── en.lproj │ │ └── Localizable.strings │ ├── navi_back@2x.png │ ├── photo_def_photoPickerVc@2x.png │ ├── photo_def_previewVc@2x.png │ ├── photo_number_icon@2x.png │ ├── photo_original_def@2x.png │ ├── photo_original_sel@2x.png │ ├── photo_sel_photoPickerVc@2x.png │ ├── photo_sel_previewVc@2x.png │ ├── preview_number_icon@2x.png │ ├── preview_original_def@2x.png │ ├── takePicture80@2x.png │ ├── takePicture@2x.png │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ └── zh-Hant.lproj │ │ └── Localizable.strings │ ├── TZImagePickerController.h │ ├── TZImagePickerController.m │ ├── TZImageRequestOperation.h │ ├── TZImageRequestOperation.m │ ├── TZImageUploadOperation.h │ ├── TZImageUploadOperation.m │ ├── TZLocationManager.h │ ├── TZLocationManager.m │ ├── TZPhotoPickerController.h │ ├── TZPhotoPickerController.m │ ├── TZPhotoPreviewCell.h │ ├── TZPhotoPreviewCell.m │ ├── TZPhotoPreviewController.h │ ├── TZPhotoPreviewController.m │ ├── TZProgressView.h │ ├── TZProgressView.m │ ├── TZTestCell.h │ ├── TZTestCell.m │ ├── TZVideoPlayerController.h │ ├── TZVideoPlayerController.m │ ├── UIView+Layout.h │ └── UIView+Layout.m └── www └── ImagePicker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/README.md -------------------------------------------------------------------------------- /doc/pt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/doc/pt/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | # 测试插件的 Demo 2 | 3 | 注意 cordova.js 的引用。 4 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/example/index.html -------------------------------------------------------------------------------- /hooks/after_prepare/010-update-android-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/hooks/after_prepare/010-update-android-manifest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/plugin.xml -------------------------------------------------------------------------------- /screenshots/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/screenshots/android.png -------------------------------------------------------------------------------- /screenshots/ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/screenshots/ios.jpg -------------------------------------------------------------------------------- /src/android/ImagePickerMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/ImagePickerMain.java -------------------------------------------------------------------------------- /src/android/imageloader/GlideImageLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/imageloader/GlideImageLoader.java -------------------------------------------------------------------------------- /src/android/imagepicker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/imagepicker.gradle -------------------------------------------------------------------------------- /src/android/module/DataHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/DataHolder.java -------------------------------------------------------------------------------- /src/android/module/ImageDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ImageDataSource.java -------------------------------------------------------------------------------- /src/android/module/ImagePicker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ImagePicker.java -------------------------------------------------------------------------------- /src/android/module/ImagePickerProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ImagePickerProvider.java -------------------------------------------------------------------------------- /src/android/module/adapter/ImageFolderAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/adapter/ImageFolderAdapter.java -------------------------------------------------------------------------------- /src/android/module/adapter/ImagePageAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/adapter/ImagePageAdapter.java -------------------------------------------------------------------------------- /src/android/module/adapter/ImageRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/adapter/ImageRecyclerAdapter.java -------------------------------------------------------------------------------- /src/android/module/bean/ImageFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/bean/ImageFolder.java -------------------------------------------------------------------------------- /src/android/module/bean/ImageItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/bean/ImageItem.java -------------------------------------------------------------------------------- /src/android/module/loader/ImageLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/loader/ImageLoader.java -------------------------------------------------------------------------------- /src/android/module/ui/ImageBaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ui/ImageBaseActivity.java -------------------------------------------------------------------------------- /src/android/module/ui/ImageCropActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ui/ImageCropActivity.java -------------------------------------------------------------------------------- /src/android/module/ui/ImageGridActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ui/ImageGridActivity.java -------------------------------------------------------------------------------- /src/android/module/ui/ImagePreviewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ui/ImagePreviewActivity.java -------------------------------------------------------------------------------- /src/android/module/ui/ImagePreviewBaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ui/ImagePreviewBaseActivity.java -------------------------------------------------------------------------------- /src/android/module/ui/ImagePreviewDelActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/ui/ImagePreviewDelActivity.java -------------------------------------------------------------------------------- /src/android/module/util/BitmapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/util/BitmapUtil.java -------------------------------------------------------------------------------- /src/android/module/util/InnerToaster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/util/InnerToaster.java -------------------------------------------------------------------------------- /src/android/module/util/NavigationBarChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/util/NavigationBarChangeListener.java -------------------------------------------------------------------------------- /src/android/module/util/ProviderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/util/ProviderUtil.java -------------------------------------------------------------------------------- /src/android/module/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/util/Utils.java -------------------------------------------------------------------------------- /src/android/module/view/CropImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/view/CropImageView.java -------------------------------------------------------------------------------- /src/android/module/view/FolderPopUpWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/view/FolderPopUpWindow.java -------------------------------------------------------------------------------- /src/android/module/view/GridSpacingItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/view/GridSpacingItemDecoration.java -------------------------------------------------------------------------------- /src/android/module/view/SuperCheckBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/view/SuperCheckBox.java -------------------------------------------------------------------------------- /src/android/module/view/SystemBarTintManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/view/SystemBarTintManager.java -------------------------------------------------------------------------------- /src/android/module/view/ViewPagerFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/module/view/ViewPagerFixed.java -------------------------------------------------------------------------------- /src/android/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/anim/fade_in.xml -------------------------------------------------------------------------------- /src/android/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/anim/fade_out.xml -------------------------------------------------------------------------------- /src/android/res/anim/hide_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/anim/hide_to_bottom.xml -------------------------------------------------------------------------------- /src/android/res/anim/show_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/anim/show_from_bottom.xml -------------------------------------------------------------------------------- /src/android/res/anim/top_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/anim/top_in.xml -------------------------------------------------------------------------------- /src/android/res/anim/top_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/anim/top_out.xml -------------------------------------------------------------------------------- /src/android/res/drawable-v21/bg_folder_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable-v21/bg_folder_item.xml -------------------------------------------------------------------------------- /src/android/res/drawable/bg_btn_dis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/bg_btn_dis.xml -------------------------------------------------------------------------------- /src/android/res/drawable/bg_btn_nor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/bg_btn_nor.xml -------------------------------------------------------------------------------- /src/android/res/drawable/bg_btn_pre.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/bg_btn_pre.xml -------------------------------------------------------------------------------- /src/android/res/drawable/bg_folder_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/bg_folder_item.xml -------------------------------------------------------------------------------- /src/android/res/drawable/bg_image_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/bg_image_folder.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_cover_shade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/ic_cover_shade.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_default_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/ic_default_image.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_vector_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/ic_vector_check.xml -------------------------------------------------------------------------------- /src/android/res/drawable/ic_vector_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/ic_vector_delete.xml -------------------------------------------------------------------------------- /src/android/res/drawable/radio_item_checked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/radio_item_checked.xml -------------------------------------------------------------------------------- /src/android/res/drawable/selector_back_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/selector_back_press.xml -------------------------------------------------------------------------------- /src/android/res/drawable/selector_grid_camera_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/selector_grid_camera_bg.xml -------------------------------------------------------------------------------- /src/android/res/drawable/selector_item_checked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/selector_item_checked.xml -------------------------------------------------------------------------------- /src/android/res/drawable/selector_top_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/drawable/selector_top_ok.xml -------------------------------------------------------------------------------- /src/android/res/layout/activity_image_crop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/activity_image_crop.xml -------------------------------------------------------------------------------- /src/android/res/layout/activity_image_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/activity_image_grid.xml -------------------------------------------------------------------------------- /src/android/res/layout/activity_image_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/activity_image_preview.xml -------------------------------------------------------------------------------- /src/android/res/layout/adapter_camera_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/adapter_camera_item.xml -------------------------------------------------------------------------------- /src/android/res/layout/adapter_folder_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/adapter_folder_list_item.xml -------------------------------------------------------------------------------- /src/android/res/layout/adapter_image_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/adapter_image_list_item.xml -------------------------------------------------------------------------------- /src/android/res/layout/include_top_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/include_top_bar.xml -------------------------------------------------------------------------------- /src/android/res/layout/ip_dialog_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/ip_dialog_loading.xml -------------------------------------------------------------------------------- /src/android/res/layout/pop_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/layout/pop_folder.xml -------------------------------------------------------------------------------- /src/android/res/mipmap-xxhdpi/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/mipmap-xxhdpi/checkbox_checked.png -------------------------------------------------------------------------------- /src/android/res/mipmap-xxhdpi/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/mipmap-xxhdpi/checkbox_normal.png -------------------------------------------------------------------------------- /src/android/res/mipmap-xxhdpi/grid_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/mipmap-xxhdpi/grid_camera.png -------------------------------------------------------------------------------- /src/android/res/mipmap-xxhdpi/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/mipmap-xxhdpi/radio_checked.png -------------------------------------------------------------------------------- /src/android/res/mipmap-xxhdpi/radio_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/mipmap-xxhdpi/radio_normal.png -------------------------------------------------------------------------------- /src/android/res/mipmap-xxhdpi/text_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/mipmap-xxhdpi/text_indicator.png -------------------------------------------------------------------------------- /src/android/res/values-en/multi_image_chooser_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/values-en/multi_image_chooser_strings.xml -------------------------------------------------------------------------------- /src/android/res/values-pt/multi_image_chooser_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/values-pt/multi_image_chooser_strings.xml -------------------------------------------------------------------------------- /src/android/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/values/attrs.xml -------------------------------------------------------------------------------- /src/android/res/values/multi_image_chooser_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/values/multi_image_chooser_colors.xml -------------------------------------------------------------------------------- /src/android/res/values/multi_image_chooser_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/values/multi_image_chooser_strings.xml -------------------------------------------------------------------------------- /src/android/res/xml/imagepicker_provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/android/res/xml/imagepicker_provider_paths.xml -------------------------------------------------------------------------------- /src/ios/ImagePickerMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/ImagePickerMain.h -------------------------------------------------------------------------------- /src/ios/ImagePickerMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/ImagePickerMain.m -------------------------------------------------------------------------------- /src/ios/UIImage+Luban_iOS_Extension_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/UIImage+Luban_iOS_Extension_h.h -------------------------------------------------------------------------------- /src/ios/UIImage+Luban_iOS_Extension_h.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/UIImage+Luban_iOS_Extension_h.m -------------------------------------------------------------------------------- /src/ios/libs/LxGridViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/LxGridViewFlowLayout.h -------------------------------------------------------------------------------- /src/ios/libs/LxGridViewFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/LxGridViewFlowLayout.m -------------------------------------------------------------------------------- /src/ios/libs/NSBundle+TZImagePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/NSBundle+TZImagePicker.h -------------------------------------------------------------------------------- /src/ios/libs/NSBundle+TZImagePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/NSBundle+TZImagePicker.m -------------------------------------------------------------------------------- /src/ios/libs/TZAssetCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZAssetCell.h -------------------------------------------------------------------------------- /src/ios/libs/TZAssetCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZAssetCell.m -------------------------------------------------------------------------------- /src/ios/libs/TZAssetModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZAssetModel.h -------------------------------------------------------------------------------- /src/ios/libs/TZAssetModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZAssetModel.m -------------------------------------------------------------------------------- /src/ios/libs/TZGifPhotoPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZGifPhotoPreviewController.h -------------------------------------------------------------------------------- /src/ios/libs/TZGifPhotoPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZGifPhotoPreviewController.m -------------------------------------------------------------------------------- /src/ios/libs/TZImageCropManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageCropManager.h -------------------------------------------------------------------------------- /src/ios/libs/TZImageCropManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageCropManager.m -------------------------------------------------------------------------------- /src/ios/libs/TZImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageManager.h -------------------------------------------------------------------------------- /src/ios/libs/TZImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageManager.m -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/Root.plist -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/TableViewArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/TableViewArrow@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/VideoSendIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/VideoSendIcon@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/navi_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/navi_back@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_def_previewVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_def_previewVc@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_number_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_number_icon@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_original_def@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_original_def@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_original_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_original_sel@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/photo_sel_previewVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/photo_sel_previewVc@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/preview_number_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/preview_number_icon@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/preview_original_def@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/preview_original_def@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/takePicture80@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/takePicture80@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/takePicture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/takePicture@2x.png -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.h -------------------------------------------------------------------------------- /src/ios/libs/TZImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImagePickerController.m -------------------------------------------------------------------------------- /src/ios/libs/TZImageRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageRequestOperation.h -------------------------------------------------------------------------------- /src/ios/libs/TZImageRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageRequestOperation.m -------------------------------------------------------------------------------- /src/ios/libs/TZImageUploadOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageUploadOperation.h -------------------------------------------------------------------------------- /src/ios/libs/TZImageUploadOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZImageUploadOperation.m -------------------------------------------------------------------------------- /src/ios/libs/TZLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZLocationManager.h -------------------------------------------------------------------------------- /src/ios/libs/TZLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZLocationManager.m -------------------------------------------------------------------------------- /src/ios/libs/TZPhotoPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZPhotoPickerController.h -------------------------------------------------------------------------------- /src/ios/libs/TZPhotoPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZPhotoPickerController.m -------------------------------------------------------------------------------- /src/ios/libs/TZPhotoPreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZPhotoPreviewCell.h -------------------------------------------------------------------------------- /src/ios/libs/TZPhotoPreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZPhotoPreviewCell.m -------------------------------------------------------------------------------- /src/ios/libs/TZPhotoPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZPhotoPreviewController.h -------------------------------------------------------------------------------- /src/ios/libs/TZPhotoPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZPhotoPreviewController.m -------------------------------------------------------------------------------- /src/ios/libs/TZProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZProgressView.h -------------------------------------------------------------------------------- /src/ios/libs/TZProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZProgressView.m -------------------------------------------------------------------------------- /src/ios/libs/TZTestCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZTestCell.h -------------------------------------------------------------------------------- /src/ios/libs/TZTestCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZTestCell.m -------------------------------------------------------------------------------- /src/ios/libs/TZVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZVideoPlayerController.h -------------------------------------------------------------------------------- /src/ios/libs/TZVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/TZVideoPlayerController.m -------------------------------------------------------------------------------- /src/ios/libs/UIView+Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/UIView+Layout.h -------------------------------------------------------------------------------- /src/ios/libs/UIView+Layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/src/ios/libs/UIView+Layout.m -------------------------------------------------------------------------------- /www/ImagePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giantss/cordova-plugin-ImagePicker/HEAD/www/ImagePicker.js --------------------------------------------------------------------------------