├── .gitignore ├── LICENSE.txt ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── fra.traineddata │ ├── java │ └── com │ │ └── jaouan │ │ └── snapandmatch │ │ ├── SnapAndMatchActivity.java │ │ ├── components │ │ ├── models │ │ │ ├── exceptions │ │ │ │ └── ServiceTechnicalException.java │ │ │ ├── googlebean │ │ │ │ ├── GoogleResponseData.java │ │ │ │ └── GoogleSearchResponse.java │ │ │ └── matches │ │ │ │ └── Match.java │ │ ├── services │ │ │ ├── BitmapToTextService.java │ │ │ ├── MatchService.java │ │ │ └── SpellCheckService.java │ │ ├── tasks │ │ │ └── AnalyzeAndSearchAsyncTask.java │ │ ├── utils │ │ │ ├── AndroidUtils.java │ │ │ └── Procedure1.java │ │ └── views │ │ │ ├── FakeScrollView.java │ │ │ └── ListenableScrollView.java │ │ ├── help │ │ └── HelpDrawerFragment.java │ │ ├── results │ │ ├── ErrorFragment.java │ │ ├── MatchesFragment.java │ │ └── adapters │ │ │ └── MatchAdapter.java │ │ └── snap │ │ └── SnapFragment.java │ └── res │ ├── drawable-hdpi │ ├── drawer_shadow.9.png │ ├── ic_book_white_48dp.png │ ├── ic_clear_white_48dp.png │ ├── ic_done.png │ ├── ic_done_white_48dp.png │ ├── ic_drawer.png │ ├── ic_language_white_24dp.png │ ├── ic_language_white_48dp.png │ ├── ic_spellcheck_white_24dp.png │ ├── ic_track_changes_white_24dp.png │ └── ic_visibility_white_24dp.png │ ├── drawable-mdpi │ ├── drawer_shadow.9.png │ ├── ic_book_white_48dp.png │ ├── ic_clear_white_48dp.png │ ├── ic_done.png │ ├── ic_done_white_48dp.png │ ├── ic_drawer.png │ ├── ic_language_white_24dp.png │ ├── ic_language_white_48dp.png │ ├── ic_spellcheck_white_24dp.png │ ├── ic_track_changes_white_24dp.png │ └── ic_visibility_white_24dp.png │ ├── drawable-xhdpi │ ├── drawer_shadow.9.png │ ├── ic_book_white_48dp.png │ ├── ic_clear_white_48dp.png │ ├── ic_done.png │ ├── ic_done_white_48dp.png │ ├── ic_drawer.png │ ├── ic_language_white_24dp.png │ ├── ic_language_white_48dp.png │ ├── ic_spellcheck_white_24dp.png │ ├── ic_track_changes_white_24dp.png │ ├── ic_visibility_white_24dp.png │ └── wiki.png │ ├── drawable-xxhdpi │ ├── drawer_shadow.9.png │ ├── ic_book_white_48dp.png │ ├── ic_clear_white_48dp.png │ ├── ic_done.png │ ├── ic_done_white_48dp.png │ ├── ic_drawer.png │ ├── ic_language_white_24dp.png │ ├── ic_language_white_48dp.png │ ├── ic_spellcheck_white_24dp.png │ ├── ic_track_changes_white_24dp.png │ └── ic_visibility_white_24dp.png │ ├── drawable-xxxhdpi │ ├── ic_book_white_48dp.png │ ├── ic_clear_white_48dp.png │ ├── ic_done_white_48dp.png │ ├── ic_language_white_24dp.png │ ├── ic_language_white_48dp.png │ ├── ic_spellcheck_white_24dp.png │ ├── ic_track_changes_white_24dp.png │ └── ic_visibility_white_24dp.png │ ├── drawable │ ├── circle.xml │ ├── circle_book.xml │ ├── circle_error.xml │ ├── circle_noresult.xml │ ├── circle_web.xml │ ├── circle_wiki.xml │ ├── help_step_1.png │ ├── help_step_2.png │ ├── help_step_3.png │ ├── snap.png │ ├── snap_base.xml │ └── snap_pressed.xml │ ├── layout │ ├── activity_snapandmatch.xml │ ├── fragment_camera.xml │ ├── fragment_error.xml │ ├── fragment_help_drawer.xml │ ├── fragment_matches.xml │ ├── fragment_nomatch.xml │ └── item_result.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-fr │ └── strings.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── fra.traineddata ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/fra.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/assets/fra.traineddata -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/SnapAndMatchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/SnapAndMatchActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/models/exceptions/ServiceTechnicalException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/models/exceptions/ServiceTechnicalException.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/models/googlebean/GoogleResponseData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/models/googlebean/GoogleResponseData.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/models/googlebean/GoogleSearchResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/models/googlebean/GoogleSearchResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/models/matches/Match.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/models/matches/Match.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/services/BitmapToTextService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/services/BitmapToTextService.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/services/MatchService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/services/MatchService.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/services/SpellCheckService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/services/SpellCheckService.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/tasks/AnalyzeAndSearchAsyncTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/tasks/AnalyzeAndSearchAsyncTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/utils/AndroidUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/utils/AndroidUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/utils/Procedure1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/utils/Procedure1.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/views/FakeScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/views/FakeScrollView.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/components/views/ListenableScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/components/views/ListenableScrollView.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/help/HelpDrawerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/help/HelpDrawerFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/results/ErrorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/results/ErrorFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/results/MatchesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/results/MatchesFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/results/adapters/MatchAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/results/adapters/MatchAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/jaouan/snapandmatch/snap/SnapFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/java/com/jaouan/snapandmatch/snap/SnapFragment.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_book_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_book_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_done_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_done_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_language_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_language_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_language_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_language_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_spellcheck_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_spellcheck_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_track_changes_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_track_changes_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_visibility_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-hdpi/ic_visibility_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_book_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_book_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_done_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_done_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_language_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_language_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_language_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_language_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_spellcheck_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_spellcheck_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_track_changes_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_track_changes_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_visibility_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-mdpi/ic_visibility_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_book_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_book_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_done_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_done_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_language_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_language_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_language_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_language_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_spellcheck_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_spellcheck_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_track_changes_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_track_changes_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_visibility_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/ic_visibility_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xhdpi/wiki.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_book_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_book_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_done_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_done_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_language_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_language_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_language_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_language_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_spellcheck_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_spellcheck_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_track_changes_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_track_changes_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_visibility_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxhdpi/ic_visibility_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_book_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_book_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_done_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_done_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_language_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_language_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_language_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_language_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_spellcheck_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_spellcheck_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_track_changes_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_track_changes_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_visibility_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable-xxxhdpi/ic_visibility_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/circle_book.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/circle_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_noresult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/circle_noresult.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/circle_web.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_wiki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/circle_wiki.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/help_step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/help_step_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/help_step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/help_step_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/help_step_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/help_step_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/snap.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/snap_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/snap_base.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/snap_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/drawable/snap_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_snapandmatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/activity_snapandmatch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/fragment_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/fragment_error.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_help_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/fragment_help_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_matches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/fragment_matches.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_nomatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/fragment_nomatch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/layout/item_result.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /fra.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/fra.traineddata -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaouan/SnapAndMatch/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------