├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── misc.xml ├── render.experimental.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── gita │ │ └── dictioronaryapp │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── dictionary.db │ │ └── salom.db │ ├── java │ │ └── com │ │ │ └── gita │ │ │ └── dictioronaryapp │ │ │ ├── activity │ │ │ ├── AboutActivity.kt │ │ │ ├── BookMarkActivity.kt │ │ │ ├── EnglishUzbekActivity.kt │ │ │ ├── MainActivity.kt │ │ │ └── UzbekEnglishActivity.kt │ │ │ ├── adapter │ │ │ ├── BookmarkAdapter.kt │ │ │ ├── RvAdapter.kt │ │ │ └── UzbAdapter.kt │ │ │ ├── app │ │ │ └── App.kt │ │ │ ├── db │ │ │ ├── CopyDb.kt │ │ │ └── DbHelper.kt │ │ │ ├── model │ │ │ └── Dictionary.kt │ │ │ └── utils │ │ │ ├── StringEx.kt │ │ │ └── TTS.kt │ └── res │ │ ├── drawable-v24 │ │ ├── btn_select_lang_night.xml │ │ ├── cancel.png │ │ ├── dictionary_night_mode.png │ │ ├── ic_baseline_arrow_back_ios_24_night.xml │ │ ├── ic_baseline_share_24.xml │ │ ├── ic_bookmark_border.xml │ │ ├── ic_clear.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_search.xml │ │ ├── logo.png │ │ ├── logout.png │ │ └── volume.png │ │ ├── drawable │ │ ├── bottomsheet_bg.xml │ │ ├── btn_select_lang.xml │ │ ├── dictionary.png │ │ ├── facebook.png │ │ ├── gita.png │ │ ├── ic_baseline_arrow_back_ios_24.xml │ │ ├── ic_baseline_bookmark_24.xml │ │ ├── ic_baseline_bookmark_border_24.xml │ │ ├── ic_baseline_close_24.xml │ │ ├── ic_baseline_dark_mode_24.xml │ │ ├── ic_baseline_info_24.xml │ │ ├── ic_baseline_keyboard_voice_24.xml │ │ ├── ic_baseline_person_24.xml │ │ ├── ic_baseline_search_24.xml │ │ ├── ic_baseline_star_border_24.xml │ │ ├── ic_baseline_wb_sunny_24.xml │ │ ├── ic_launcher_background.xml │ │ ├── instagram.png │ │ ├── menu.png │ │ ├── search__bg.xml │ │ ├── side_nav_bar.xml │ │ ├── telegram.png │ │ ├── vector.png │ │ └── youtube.png │ │ ├── layout-night │ │ ├── activity_about.xml │ │ ├── activity_book_mark.xml │ │ ├── activity_english_uzbek.xml │ │ ├── activity_main.xml │ │ ├── activity_uzbek_english.xml │ │ ├── bottom_sheet.xml │ │ ├── item_rv.xml │ │ └── nav_header_main.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_book_mark.xml │ │ ├── activity_english_uzbek.xml │ │ ├── activity_main.xml │ │ ├── activity_uzbek_english.xml │ │ ├── bottom_sheet.xml │ │ ├── dialog_exit.xml │ │ ├── item_rv.xml │ │ └── nav_header_main.xml │ │ ├── menu │ │ ├── main_activity2.xml │ │ └── pop_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── raw │ │ └── empty.json │ │ ├── values-land │ │ └── dimens.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-w1240dp │ │ └── dimens.xml │ │ ├── values-w600dp │ │ └── dimens.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── gita │ └── dictioronaryapp │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | DictioronaryApp -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/gita/dictioronaryapp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/androidTest/java/com/gita/dictioronaryapp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/dictionary.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/assets/dictionary.db -------------------------------------------------------------------------------- /app/src/main/assets/salom.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/assets/salom.db -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/activity/AboutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/activity/AboutActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/activity/BookMarkActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/activity/BookMarkActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/activity/EnglishUzbekActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/activity/EnglishUzbekActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/activity/UzbekEnglishActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/activity/UzbekEnglishActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/adapter/BookmarkAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/adapter/BookmarkAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/adapter/RvAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/adapter/RvAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/adapter/UzbAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/adapter/UzbAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/app/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/app/App.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/db/CopyDb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/db/CopyDb.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/db/DbHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/db/DbHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/model/Dictionary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/model/Dictionary.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/utils/StringEx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/utils/StringEx.kt -------------------------------------------------------------------------------- /app/src/main/java/com/gita/dictioronaryapp/utils/TTS.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/java/com/gita/dictioronaryapp/utils/TTS.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/btn_select_lang_night.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/btn_select_lang_night.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/dictionary_night_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/dictionary_night_mode.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_baseline_arrow_back_ios_24_night.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/ic_baseline_arrow_back_ios_24_night.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_baseline_share_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/ic_baseline_share_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_bookmark_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/ic_bookmark_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/ic_clear.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/logout.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable-v24/volume.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottomsheet_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/bottomsheet_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_select_lang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/btn_select_lang.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/dictionary.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/facebook.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/gita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/gita.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_arrow_back_ios_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_arrow_back_ios_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_bookmark_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_bookmark_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_bookmark_border_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_bookmark_border_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_close_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_close_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_dark_mode_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_dark_mode_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_info_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_info_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_keyboard_voice_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_keyboard_voice_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_person_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_person_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_search_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_search_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_star_border_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_star_border_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_wb_sunny_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_baseline_wb_sunny_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/search__bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/search__bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/telegram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/vector.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/drawable/youtube.png -------------------------------------------------------------------------------- /app/src/main/res/layout-night/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/activity_book_mark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/activity_book_mark.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/activity_english_uzbek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/activity_english_uzbek.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/activity_uzbek_english.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/activity_uzbek_english.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/bottom_sheet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/item_rv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/item_rv.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-night/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout-night/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_book_mark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/activity_book_mark.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_english_uzbek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/activity_english_uzbek.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_uzbek_english.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/activity_uzbek_english.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/bottom_sheet.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/dialog_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_rv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/item_rv.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main_activity2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/menu/main_activity2.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/pop_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/menu/pop_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/raw/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/raw/empty.json -------------------------------------------------------------------------------- /app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w1240dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values-w1240dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/gita/dictioronaryapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/app/src/test/java/com/gita/dictioronaryapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/professorDeveloper/Dictionary-App/HEAD/settings.gradle --------------------------------------------------------------------------------