├── .gitattributes ├── .gitignore ├── README.md ├── demo.keystore.jks ├── easyScan ├── build.gradle.kts ├── proguard-rules.pro ├── schemas │ └── com.pixelnetica.easyscan.data.EasyScanDatabase │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ └── 5.json └── src │ ├── androidTest │ └── kotlin │ │ └── com │ │ └── pixelnetica │ │ └── easyscan │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── fonts │ │ │ ├── NotoSans-Regular.ttf │ │ │ ├── NotoSansArabic-Regular.ttf │ │ │ ├── NotoSansDevanagari-Regular.ttf │ │ │ ├── NotoSansHebrew-Regular.ttf │ │ │ ├── NotoSansJP-Regular.ttf │ │ │ ├── NotoSansKR-Regular.ttf │ │ │ ├── NotoSansMyanmar-Regular.ttf │ │ │ ├── NotoSansSC-Regular.ttf │ │ │ └── NotoSansTC-Regular.ttf │ │ └── pixelnetica │ │ │ └── scanning │ │ │ └── license.key │ ├── kotlin │ │ └── com │ │ │ └── pixelnetica │ │ │ ├── easyscan │ │ │ ├── AppTagger.kt │ │ │ ├── EasyScanApp.kt │ │ │ ├── EasyScanSettings.kt │ │ │ ├── data │ │ │ │ ├── Complete.kt │ │ │ │ ├── DataFile.kt │ │ │ │ ├── EasyScanConverters.kt │ │ │ │ ├── EasyScanDao.kt │ │ │ │ ├── EasyScanDatabase.kt │ │ │ │ ├── EasyScanRepository.kt │ │ │ │ ├── Input.kt │ │ │ │ ├── Original.kt │ │ │ │ ├── Output.kt │ │ │ │ ├── Page.kt │ │ │ │ ├── Pending.kt │ │ │ │ ├── Recognition.kt │ │ │ │ ├── Representation.kt │ │ │ │ ├── ShareItem.kt │ │ │ │ ├── ShareSession.kt │ │ │ │ ├── Text.kt │ │ │ │ └── di │ │ │ │ │ ├── DataModule.kt │ │ │ │ │ ├── DatabaseModule.kt │ │ │ │ │ └── LanguageRepositoryModule.kt │ │ │ └── ui │ │ │ │ ├── cropscreen │ │ │ │ ├── CropScreen.kt │ │ │ │ └── CropScreenViewModel.kt │ │ │ │ ├── main │ │ │ │ ├── EasyScanFileProvider.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainNavigation.kt │ │ │ │ └── NavDialog.kt │ │ │ │ ├── pagelist │ │ │ │ ├── PageListItem.kt │ │ │ │ ├── PageListScreen.kt │ │ │ │ └── PageListViewModel.kt │ │ │ │ ├── pageprops │ │ │ │ ├── PageProperties.kt │ │ │ │ ├── PagePropertiesViewModel.kt │ │ │ │ └── PaperMapper.kt │ │ │ │ ├── pagescreen │ │ │ │ ├── PageSliderScreen.kt │ │ │ │ ├── PageSliderViewModel.kt │ │ │ │ └── PageView.kt │ │ │ │ ├── settings │ │ │ │ ├── SettingsDialog.kt │ │ │ │ └── SettingsDialogViewModel.kt │ │ │ │ ├── sharedialog │ │ │ │ ├── ShareDialog.kt │ │ │ │ └── ShareViewModel.kt │ │ │ │ ├── textscreen │ │ │ │ ├── LanguagesScreen.kt │ │ │ │ ├── LanguagesScreenViewModel.kt │ │ │ │ ├── TextScreen.kt │ │ │ │ └── TextScreenViewModel.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── viewitem │ │ │ │ └── PageViewItem.kt │ │ │ └── support │ │ │ ├── ImagePicker.kt │ │ │ ├── WaitingOverlay.kt │ │ │ └── scrollBar.kt │ ├── proto │ │ └── settings.proto │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── document_photo_icon.png │ │ ├── ic_album.xml │ │ ├── ic_attention.xml │ │ ├── ic_camera.xml │ │ ├── ic_collapse.xml │ │ ├── ic_crop_rotate.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_expand.xml │ │ ├── ic_language.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_ocr.xml │ │ ├── ic_page_property.xml │ │ ├── ic_profile_border.xml │ │ ├── ic_profile_bw.xml │ │ ├── ic_profile_color.xml │ │ ├── ic_profile_gray.xml │ │ ├── ic_profile_original.xml │ │ ├── ic_refresh.xml │ │ ├── ic_rotate_ccw.xml │ │ ├── ic_rotate_cw.xml │ │ ├── ic_select_all.xml │ │ ├── ic_settings.xml │ │ ├── ic_share.xml │ │ ├── ic_share_as_image.xml │ │ ├── ic_share_as_pdf.xml │ │ ├── ic_share_as_text.xml │ │ ├── ic_share_as_tiff.xml │ │ ├── ic_strong_shadows.xml │ │ ├── ic_strong_shadows_off.xml │ │ └── ic_trash_bin.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_background.png │ │ ├── ic_foreground.png │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── ic_background.png │ │ ├── ic_foreground.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── ic_background.png │ │ ├── ic_foreground.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_background.png │ │ ├── ic_foreground.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_background.png │ │ ├── ic_foreground.png │ │ └── ic_launcher.png │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rSG │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── strings.xml │ │ ├── themes.xml │ │ └── values.xml │ │ └── xml │ │ └── share_provider_paths.xml │ └── test │ └── kotlin │ └── com │ └── pixelnetica │ └── easyscan │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── plugins ├── build.gradle.kts ├── settings.gradle.kts └── src │ └── main │ └── kotlin │ └── com │ └── pixelnetica │ └── classloader │ ├── ClassLoaderPlugin.kt │ ├── capitalize.kt │ ├── configurePublication.kt │ ├── getCurrentYear.kt │ ├── getLastCommitHash.kt │ ├── loadLocalProperties.kt │ └── projectVersions.kt └── settings.gradle.kts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/README.md -------------------------------------------------------------------------------- /demo.keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/demo.keystore.jks -------------------------------------------------------------------------------- /easyScan/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/build.gradle.kts -------------------------------------------------------------------------------- /easyScan/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/proguard-rules.pro -------------------------------------------------------------------------------- /easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/1.json -------------------------------------------------------------------------------- /easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/2.json -------------------------------------------------------------------------------- /easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/3.json -------------------------------------------------------------------------------- /easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/4.json -------------------------------------------------------------------------------- /easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/schemas/com.pixelnetica.easyscan.data.EasyScanDatabase/5.json -------------------------------------------------------------------------------- /easyScan/src/androidTest/kotlin/com/pixelnetica/easyscan/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/androidTest/kotlin/com/pixelnetica/easyscan/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /easyScan/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansArabic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansArabic-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansDevanagari-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansDevanagari-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansHebrew-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansHebrew-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansJP-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansJP-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansKR-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansKR-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansMyanmar-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansMyanmar-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/fonts/NotoSansTC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/fonts/NotoSansTC-Regular.ttf -------------------------------------------------------------------------------- /easyScan/src/main/assets/pixelnetica/scanning/license.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/assets/pixelnetica/scanning/license.key -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/AppTagger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/AppTagger.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/EasyScanApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/EasyScanApp.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/EasyScanSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/EasyScanSettings.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Complete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Complete.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/DataFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/DataFile.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanConverters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanConverters.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanDao.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanDatabase.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/EasyScanRepository.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Input.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Original.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Original.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Output.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Output.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Page.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Page.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Pending.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Pending.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Recognition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Recognition.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Representation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Representation.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/ShareItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/ShareItem.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/ShareSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/ShareSession.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Text.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/Text.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/di/DataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/di/DataModule.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/di/DatabaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/di/DatabaseModule.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/di/LanguageRepositoryModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/data/di/LanguageRepositoryModule.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/cropscreen/CropScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/cropscreen/CropScreen.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/cropscreen/CropScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/cropscreen/CropScreenViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/EasyScanFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/EasyScanFileProvider.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/MainActivity.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/MainNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/MainNavigation.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/NavDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/main/NavDialog.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagelist/PageListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagelist/PageListItem.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagelist/PageListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagelist/PageListScreen.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagelist/PageListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagelist/PageListViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pageprops/PageProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pageprops/PageProperties.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pageprops/PagePropertiesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pageprops/PagePropertiesViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pageprops/PaperMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pageprops/PaperMapper.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagescreen/PageSliderScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagescreen/PageSliderScreen.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagescreen/PageSliderViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagescreen/PageSliderViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagescreen/PageView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/pagescreen/PageView.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/settings/SettingsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/settings/SettingsDialog.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/settings/SettingsDialogViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/settings/SettingsDialogViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/sharedialog/ShareDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/sharedialog/ShareDialog.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/sharedialog/ShareViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/sharedialog/ShareViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/LanguagesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/LanguagesScreen.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/LanguagesScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/LanguagesScreenViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/TextScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/TextScreen.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/TextScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/textscreen/TextScreenViewModel.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/theme/Color.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/theme/Theme.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/theme/Type.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/viewitem/PageViewItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/easyscan/ui/viewitem/PageViewItem.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/support/ImagePicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/support/ImagePicker.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/support/WaitingOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/support/WaitingOverlay.kt -------------------------------------------------------------------------------- /easyScan/src/main/kotlin/com/pixelnetica/support/scrollBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/kotlin/com/pixelnetica/support/scrollBar.kt -------------------------------------------------------------------------------- /easyScan/src/main/proto/settings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/proto/settings.proto -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/document_photo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/document_photo_icon.png -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_album.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_album.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_attention.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_attention.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_collapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_collapse.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_crop_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_crop_rotate.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_drag_handle.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_expand.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_language.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_ocr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_ocr.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_page_property.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_page_property.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_profile_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_profile_border.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_profile_bw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_profile_bw.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_profile_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_profile_color.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_profile_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_profile_gray.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_profile_original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_profile_original.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_rotate_ccw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_rotate_ccw.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_rotate_cw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_rotate_cw.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_select_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_select_all.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_share_as_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_share_as_image.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_share_as_pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_share_as_pdf.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_share_as_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_share_as_text.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_share_as_tiff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_share_as_tiff.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_strong_shadows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_strong_shadows.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_strong_shadows_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_strong_shadows_off.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/drawable/ic_trash_bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/drawable/ic_trash_bin.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-hdpi/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-hdpi/ic_background.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-hdpi/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-hdpi/ic_foreground.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-mdpi/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-mdpi/ic_background.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-mdpi/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-mdpi/ic_foreground.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xhdpi/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xhdpi/ic_background.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xhdpi/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xhdpi/ic_foreground.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xxhdpi/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xxhdpi/ic_background.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xxhdpi/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xxhdpi/ic_foreground.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xxxhdpi/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xxxhdpi/ic_background.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xxxhdpi/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xxxhdpi/ic_foreground.png -------------------------------------------------------------------------------- /easyScan/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /easyScan/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-zh-rSG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-zh-rSG/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/values/values.xml -------------------------------------------------------------------------------- /easyScan/src/main/res/xml/share_provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/main/res/xml/share_provider_paths.xml -------------------------------------------------------------------------------- /easyScan/src/test/kotlin/com/pixelnetica/easyscan/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/easyScan/src/test/kotlin/com/pixelnetica/easyscan/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/gradlew.bat -------------------------------------------------------------------------------- /plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/build.gradle.kts -------------------------------------------------------------------------------- /plugins/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/settings.gradle.kts -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/ClassLoaderPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/ClassLoaderPlugin.kt -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/capitalize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/capitalize.kt -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/configurePublication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/configurePublication.kt -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/getCurrentYear.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/getCurrentYear.kt -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/getLastCommitHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/getLastCommitHash.kt -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/loadLocalProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/loadLocalProperties.kt -------------------------------------------------------------------------------- /plugins/src/main/kotlin/com/pixelnetica/classloader/projectVersions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/plugins/src/main/kotlin/com/pixelnetica/classloader/projectVersions.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelnetica/android-pdf-ocr-document-scanner/HEAD/settings.gradle.kts --------------------------------------------------------------------------------