├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md └── funding.yml ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── assets ├── app-mockup-design.json ├── icon.svg ├── iconRound.svg ├── irregex.png └── sample.gif ├── base ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── mf │ │ └── irregex │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── mf │ │ │ └── irregex │ │ │ ├── App.kt │ │ │ ├── MainActivity.kt │ │ │ ├── SplashScreen.kt │ │ │ ├── keyboard │ │ │ ├── Constants.kt │ │ │ ├── IrregularKeyboard.kt │ │ │ ├── IrregularKeyboardView.kt │ │ │ └── MyInputMethodService.kt │ │ │ ├── settings │ │ │ ├── SettingsActivity.kt │ │ │ ├── StyleConfigAdapter.kt │ │ │ └── StyleConfigFragment.kt │ │ │ └── styles │ │ │ ├── AccentStyle.kt │ │ │ ├── AppTextStyle.kt │ │ │ ├── AvailableStyles.kt │ │ │ ├── CharsetStyle.kt │ │ │ ├── RandomCaps.kt │ │ │ ├── StylePickerAdapter.kt │ │ │ └── Zalgo.kt │ └── res │ │ ├── anim │ │ ├── fade_in.xml │ │ └── fade_out.xml │ │ ├── drawable │ │ ├── bg_config_item.xml │ │ ├── bg_gradient.xml │ │ ├── bg_main_layout.xml │ │ ├── bg_rounded_primary.xml │ │ ├── bg_splash.xml │ │ ├── ic_icon_round.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── kbd_ic_alphabetical_variant.xml │ │ ├── kbd_ic_arrow_up_bold.xml │ │ ├── kbd_ic_arrow_up_bold_outline.xml │ │ ├── kbd_ic_backspace_outline.xml │ │ ├── kbd_ic_close.xml │ │ ├── kbd_ic_keyboard_caps_filled.xml │ │ ├── kbd_ic_keyboard_return.xml │ │ ├── kbd_ic_keyboard_search.xml │ │ ├── kbd_ic_keyboard_space.xml │ │ ├── kbd_ic_minus.xml │ │ ├── kbd_ic_numeric.xml │ │ ├── kbd_ic_settings.xml │ │ ├── kbd_ic_style_off.xml │ │ ├── kbd_ic_style_on.xml │ │ ├── key_background.xml │ │ ├── key_normal.xml │ │ ├── key_pressed.xml │ │ ├── pref_ic_arrow_down.xml │ │ ├── pref_ic_arrow_up.xml │ │ ├── pref_ic_arrow_up_down.xml │ │ ├── pref_ic_chat_processing_outline.xml │ │ ├── pref_ic_code.xml │ │ ├── pref_ic_down.xml │ │ ├── pref_ic_information_outline.xml │ │ ├── pref_ic_information_outline_white.xml │ │ ├── pref_ic_keyboard_outline.xml │ │ ├── pref_ic_mf.xml │ │ ├── pref_ic_sort.xml │ │ ├── pref_ic_theme_light_dark.xml │ │ └── pref_ic_vibrate.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_splash.xml │ │ ├── fragment_style_config.xml │ │ ├── item_config_style.xml │ │ ├── item_style.xml │ │ ├── item_style_selected.xml │ │ ├── keyboard_extras.xml │ │ ├── keyboard_popkey.xml │ │ ├── keyboard_popup.xml │ │ └── keyboard_view.xml │ │ ├── menu │ │ └── config.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-night │ │ └── colors.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-v16 │ │ └── textstyles.xml │ │ ├── values-v19 │ │ ├── textstyles.xml │ │ └── theme.xml │ │ ├── values-v21 │ │ ├── textstyles.xml │ │ └── theme.xml │ │ ├── values-v23 │ │ └── textstyles.xml │ │ ├── values-v26 │ │ └── textstyles.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── font-arrays.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── textdefs.xml │ │ ├── textstyles.xml │ │ └── theme.xml │ │ └── xml │ │ ├── keyboard_azerty.xml │ │ ├── keyboard_dvorak.xml │ │ ├── keyboard_extended.xml │ │ ├── keyboard_math.xml │ │ ├── keyboard_phone.xml │ │ ├── keyboard_popup.xml │ │ ├── keyboard_qwerty.xml │ │ ├── keyboard_qwertz.xml │ │ ├── method.xml │ │ └── root_preferences.xml │ └── test │ └── java │ └── mf │ └── irregex │ └── ExampleUnitTest.kt ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── en-US │ ├── changelogs │ │ ├── 10.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ ├── promoGraphic.png │ │ └── tvBanner.png │ ├── short_description.txt │ ├── title.txt │ └── video.txt │ └── fr-FR │ ├── full_description.txt │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── privacy.md ├── renovate.json └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/app-mockup-design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/assets/app-mockup-design.json -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/iconRound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/assets/iconRound.svg -------------------------------------------------------------------------------- /assets/irregex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/assets/irregex.png -------------------------------------------------------------------------------- /assets/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/assets/sample.gif -------------------------------------------------------------------------------- /base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/build.gradle -------------------------------------------------------------------------------- /base/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/proguard-rules.pro -------------------------------------------------------------------------------- /base/src/androidTest/java/mf/irregex/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/androidTest/java/mf/irregex/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /base/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /base/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/App.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/MainActivity.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/SplashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/SplashScreen.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/keyboard/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/keyboard/Constants.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/keyboard/IrregularKeyboard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/keyboard/IrregularKeyboard.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/keyboard/IrregularKeyboardView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/keyboard/IrregularKeyboardView.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/keyboard/MyInputMethodService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/keyboard/MyInputMethodService.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/settings/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/settings/SettingsActivity.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/settings/StyleConfigAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/settings/StyleConfigAdapter.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/settings/StyleConfigFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/settings/StyleConfigFragment.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/AccentStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/AccentStyle.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/AppTextStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/AppTextStyle.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/AvailableStyles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/AvailableStyles.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/CharsetStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/CharsetStyle.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/RandomCaps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/RandomCaps.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/StylePickerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/StylePickerAdapter.kt -------------------------------------------------------------------------------- /base/src/main/java/mf/irregex/styles/Zalgo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/java/mf/irregex/styles/Zalgo.kt -------------------------------------------------------------------------------- /base/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /base/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/bg_config_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/bg_config_item.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/bg_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/bg_gradient.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/bg_main_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/bg_main_layout.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/bg_rounded_primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/bg_rounded_primary.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/bg_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/bg_splash.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/ic_icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/ic_icon_round.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_alphabetical_variant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_alphabetical_variant.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_arrow_up_bold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_arrow_up_bold.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_arrow_up_bold_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_arrow_up_bold_outline.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_backspace_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_backspace_outline.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_close.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_keyboard_caps_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_keyboard_caps_filled.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_keyboard_return.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_keyboard_return.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_keyboard_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_keyboard_search.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_keyboard_space.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_keyboard_space.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_minus.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_numeric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_numeric.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_settings.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_style_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_style_off.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/kbd_ic_style_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/kbd_ic_style_on.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/key_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/key_background.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/key_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/key_normal.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/key_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/key_pressed.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_arrow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_arrow_down.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_arrow_up.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_arrow_up_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_arrow_up_down.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_chat_processing_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_chat_processing_outline.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_code.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_down.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_information_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_information_outline.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_information_outline_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_information_outline_white.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_keyboard_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_keyboard_outline.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_mf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_mf.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_sort.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_theme_light_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_theme_light_dark.xml -------------------------------------------------------------------------------- /base/src/main/res/drawable/pref_ic_vibrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/drawable/pref_ic_vibrate.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/fragment_style_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/fragment_style_config.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/item_config_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/item_config_style.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/item_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/item_style.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/item_style_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/item_style_selected.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/keyboard_extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/keyboard_extras.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/keyboard_popkey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/keyboard_popkey.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/keyboard_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/keyboard_popup.xml -------------------------------------------------------------------------------- /base/src/main/res/layout/keyboard_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/layout/keyboard_view.xml -------------------------------------------------------------------------------- /base/src/main/res/menu/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/menu/config.xml -------------------------------------------------------------------------------- /base/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /base/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /base/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /base/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /base/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-eo/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /base/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v16/textstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v16/textstyles.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v19/textstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v19/textstyles.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v19/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v19/theme.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v21/textstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v21/textstyles.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v21/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v21/theme.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v23/textstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v23/textstyles.xml -------------------------------------------------------------------------------- /base/src/main/res/values-v26/textstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-v26/textstyles.xml -------------------------------------------------------------------------------- /base/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /base/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /base/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /base/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /base/src/main/res/values/font-arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/font-arrays.xml -------------------------------------------------------------------------------- /base/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /base/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /base/src/main/res/values/textdefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/textdefs.xml -------------------------------------------------------------------------------- /base/src/main/res/values/textstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/textstyles.xml -------------------------------------------------------------------------------- /base/src/main/res/values/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/values/theme.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_azerty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_azerty.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_dvorak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_dvorak.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_extended.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_math.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_math.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_phone.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_popup.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_qwerty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_qwerty.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/keyboard_qwertz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/keyboard_qwertz.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/method.xml -------------------------------------------------------------------------------- /base/src/main/res/xml/root_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/main/res/xml/root_preferences.xml -------------------------------------------------------------------------------- /base/src/test/java/mf/irregex/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/base/src/test/java/mf/irregex/ExampleUnitTest.kt -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/changelogs/10.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/changelogs/12.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/changelogs/13.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | Fix: 2 | - launch bug fix for Android 11/API 30 3 | - centering of landscape MainActivity -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/8.txt: -------------------------------------------------------------------------------- 1 | Converted to a virtual keyboard -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/changelogs/9.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/promoGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/promoGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Irregular Expressions -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | https://youtu.be/py7woY7OQ24 -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/fastlane/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/privacy.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileFirstLLC/irregular-expressions/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':base' 2 | rootProject.name='Irregex' 3 | --------------------------------------------------------------------------------