├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── .ruby-gemset ├── .ruby-version ├── .vscode └── settings.json ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── NOTICES.md ├── PRIVACY-POLICY.md ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle.kts ├── proguard-rules.pro ├── rust-toolchain.toml └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── ghostsinthelab │ │ └── apps │ │ └── guilelessbopomofo │ │ ├── ChewingBridgeInstrumentedTest.kt │ │ └── GuilelessBopomofoServiceTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── .gitignore │ │ └── .gitkeep │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── libchewing_android_jni.cpp │ ├── ic_launcher-playstore.png │ ├── java │ │ └── org │ │ │ └── ghostsinthelab │ │ │ └── apps │ │ │ └── guilelessbopomofo │ │ │ ├── Candidate.kt │ │ │ ├── CandidateViewHolder.kt │ │ │ ├── CandidatesAdapter.kt │ │ │ ├── Chewing.kt │ │ │ ├── ChewingBridge.kt │ │ │ ├── ChewingUtil.kt │ │ │ ├── EngineeringModeActivity.kt │ │ │ ├── GuilelessBopomofoEnv.kt │ │ │ ├── GuilelessBopomofoService.kt │ │ │ ├── ImeLayout.kt │ │ │ ├── KeyboardLayout.kt │ │ │ ├── KeyboardPanel.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MyApplication.kt │ │ │ ├── PagedCandidateViewHolder.kt │ │ │ ├── PagedCandidatesAdapter.kt │ │ │ ├── buffers │ │ │ ├── BopomofoBufferTextView.kt │ │ │ ├── BufferLayout.kt │ │ │ ├── BufferTextView.kt │ │ │ └── PreEditBufferTextView.kt │ │ │ ├── enums │ │ │ ├── DirectionKey.kt │ │ │ ├── Layout.kt │ │ │ └── SelectionKeys.kt │ │ │ ├── events │ │ │ └── Events.kt │ │ │ ├── keys │ │ │ ├── BehaveLikeKey.kt │ │ │ ├── KeyButton.kt │ │ │ ├── KeyImageButton.kt │ │ │ ├── physical │ │ │ │ ├── CapsLock.kt │ │ │ │ ├── Del.kt │ │ │ │ ├── Down.kt │ │ │ │ ├── End.kt │ │ │ │ ├── Enter.kt │ │ │ │ ├── Escape.kt │ │ │ │ ├── Home.kt │ │ │ │ ├── Left.kt │ │ │ │ ├── LeftAlt.kt │ │ │ │ ├── PhysicalKeyHandler.kt │ │ │ │ ├── Right.kt │ │ │ │ ├── RightShift.kt │ │ │ │ ├── Space.kt │ │ │ │ └── Up.kt │ │ │ └── virtual │ │ │ │ ├── BackToMainFunctionKey.kt │ │ │ │ ├── BackspaceKey.kt │ │ │ │ ├── CandidateButton.kt │ │ │ │ ├── CharacterKey.kt │ │ │ │ ├── EnterKey.kt │ │ │ │ ├── ImeSwitchFunctionKey.kt │ │ │ │ ├── ModeSwitchFunctionKey.kt │ │ │ │ ├── PunctuationFunctionKey.kt │ │ │ │ ├── ShiftKey.kt │ │ │ │ ├── SpaceKey.kt │ │ │ │ └── SymbolFunctionKey.kt │ │ │ └── utils │ │ │ ├── DisplayMetricsComputable.kt │ │ │ ├── EdgeToEdge.kt │ │ │ ├── KeyEventExtension.kt │ │ │ └── Vibratable.kt │ └── res │ │ ├── drawable │ │ ├── gradient_ime_background.xml │ │ ├── guileless_bopomofo_keyboard_a.xml │ │ ├── guileless_bopomofo_keyboard_ai.xml │ │ ├── guileless_bopomofo_keyboard_an.xml │ │ ├── guileless_bopomofo_keyboard_ang.xml │ │ ├── guileless_bopomofo_keyboard_ao.xml │ │ ├── guileless_bopomofo_keyboard_b.xml │ │ ├── guileless_bopomofo_keyboard_chi.xml │ │ ├── guileless_bopomofo_keyboard_ci.xml │ │ ├── guileless_bopomofo_keyboard_d.xml │ │ ├── guileless_bopomofo_keyboard_e.xml │ │ ├── guileless_bopomofo_keyboard_ei.xml │ │ ├── guileless_bopomofo_keyboard_en.xml │ │ ├── guileless_bopomofo_keyboard_eng.xml │ │ ├── guileless_bopomofo_keyboard_er.xml │ │ ├── guileless_bopomofo_keyboard_et26_ci_ie.xml │ │ ├── guileless_bopomofo_keyboard_et26_d.xml │ │ ├── guileless_bopomofo_keyboard_et26_f.xml │ │ ├── guileless_bopomofo_keyboard_et26_g_q.xml │ │ ├── guileless_bopomofo_keyboard_et26_h_er.xml │ │ ├── guileless_bopomofo_keyboard_et26_j_zhi.xml │ │ ├── guileless_bopomofo_keyboard_et26_k.xml │ │ ├── guileless_bopomofo_keyboard_et26_l_eng.xml │ │ ├── guileless_bopomofo_keyboard_et26_p_ou.xml │ │ ├── guileless_bopomofo_keyboard_et26_ri.xml │ │ ├── guileless_bopomofo_keyboard_et26_t_ang.xml │ │ ├── guileless_bopomofo_keyboard_et26_zi_ei.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_a.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_b.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_c.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_d.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_e.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_f.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_g.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_h.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_i.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_j.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_k.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_l.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_m.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_n.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_o.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_p.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_q.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_r.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_s.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_t.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_u.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_v.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_w.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_x.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_y.xml │ │ ├── guileless_bopomofo_keyboard_eten26_qwerty_z.xml │ │ ├── guileless_bopomofo_keyboard_f.xml │ │ ├── guileless_bopomofo_keyboard_g.xml │ │ ├── guileless_bopomofo_keyboard_h.xml │ │ ├── guileless_bopomofo_keyboard_hsu_ci_ei.xml │ │ ├── guileless_bopomofo_keyboard_hsu_d.xml │ │ ├── guileless_bopomofo_keyboard_hsu_f.xml │ │ ├── guileless_bopomofo_keyboard_hsu_g_e.xml │ │ ├── guileless_bopomofo_keyboard_hsu_h_o.xml │ │ ├── guileless_bopomofo_keyboard_hsu_j_zhi.xml │ │ ├── guileless_bopomofo_keyboard_hsu_k_ang.xml │ │ ├── guileless_bopomofo_keyboard_hsu_l_eng_er.xml │ │ ├── guileless_bopomofo_keyboard_hsu_m_an.xml │ │ ├── guileless_bopomofo_keyboard_hsu_n_en.xml │ │ ├── guileless_bopomofo_keyboard_hsu_q_chi.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_a.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_b.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_c.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_d.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_e.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_f.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_g.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_h.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_i.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_j.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_k.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_l.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_m.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_n.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_o.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_p.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_r.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_s.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_t.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_u.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_v.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_w.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_x.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_y.xml │ │ ├── guileless_bopomofo_keyboard_hsu_qwerty_z.xml │ │ ├── guileless_bopomofo_keyboard_hsu_si.xml │ │ ├── guileless_bopomofo_keyboard_hsu_x_shi.xml │ │ ├── guileless_bopomofo_keyboard_hsu_yi_ie.xml │ │ ├── guileless_bopomofo_keyboard_ie.xml │ │ ├── guileless_bopomofo_keyboard_j.xml │ │ ├── guileless_bopomofo_keyboard_k.xml │ │ ├── guileless_bopomofo_keyboard_l.xml │ │ ├── guileless_bopomofo_keyboard_m.xml │ │ ├── guileless_bopomofo_keyboard_n.xml │ │ ├── guileless_bopomofo_keyboard_o.xml │ │ ├── guileless_bopomofo_keyboard_ou.xml │ │ ├── guileless_bopomofo_keyboard_p.xml │ │ ├── guileless_bopomofo_keyboard_punctuation.xml │ │ ├── guileless_bopomofo_keyboard_q.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_0.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_1.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_2.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_3.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_4.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_5.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_6.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_7.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_8.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_9.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_a.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_apostrophe.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_b.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_backslash.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_c.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_comma.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_d.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_e.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_equal.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_f.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_g.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_grave.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_h.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_i.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_j.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_k.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_l.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_left_bracket.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_m.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_minus.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_n.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_o.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_p.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_period.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_q.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_r.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_right_bracket.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_s.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_semicolon.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_slash.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_t.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_u.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_v.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_w.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_x.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_y.xml │ │ ├── guileless_bopomofo_keyboard_qwerty_z.xml │ │ ├── guileless_bopomofo_keyboard_ri.xml │ │ ├── guileless_bopomofo_keyboard_shi.xml │ │ ├── guileless_bopomofo_keyboard_si.xml │ │ ├── guileless_bopomofo_keyboard_t.xml │ │ ├── guileless_bopomofo_keyboard_tone_2.xml │ │ ├── guileless_bopomofo_keyboard_tone_3.xml │ │ ├── guileless_bopomofo_keyboard_tone_4.xml │ │ ├── guileless_bopomofo_keyboard_tone_light.xml │ │ ├── guileless_bopomofo_keyboard_wu.xml │ │ ├── guileless_bopomofo_keyboard_x.xml │ │ ├── guileless_bopomofo_keyboard_yi.xml │ │ ├── guileless_bopomofo_keyboard_yu.xml │ │ ├── guileless_bopomofo_keyboard_zhi.xml │ │ ├── guileless_bopomofo_keyboard_zi.xml │ │ ├── ic_guileless_bopomofo_icon_v2.xml │ │ ├── ic_guileless_bopomofo_statusbar_icon.xml │ │ ├── ic_keyboard_24.xml │ │ ├── ic_keyboard_backspace_24.xml │ │ ├── ic_keyboard_ime_switch_24.xml │ │ ├── ic_keyboard_mode_switch_bopomofo.xml │ │ ├── ic_keyboard_mode_switch_eng.xml │ │ ├── ic_keyboard_return_24.xml │ │ ├── ic_keyboard_shift_24.xml │ │ ├── ic_keyboard_space_24.xml │ │ ├── ic_keyboard_symbol_chooser_24.xml │ │ └── round_border.xml │ │ ├── layout-land │ │ ├── keyboard_dachen_layout.xml │ │ ├── keyboard_et26_layout.xml │ │ ├── keyboard_et26_qwerty_layout.xml │ │ ├── keyboard_et41_layout.xml │ │ ├── keyboard_hsu_layout.xml │ │ ├── keyboard_hsu_qwerty_layout.xml │ │ └── keyboard_qwerty_layout.xml │ │ ├── layout-sw600dp │ │ ├── keyboard_dachen_layout.xml │ │ ├── keyboard_et26_layout.xml │ │ ├── keyboard_et26_qwerty_layout.xml │ │ ├── keyboard_et41_layout.xml │ │ ├── keyboard_hsu_layout.xml │ │ ├── keyboard_hsu_qwerty_layout.xml │ │ └── keyboard_qwerty_layout.xml │ │ ├── layout │ │ ├── activity_engineering_mode.xml │ │ ├── activity_main.xml │ │ ├── candidate_item_layout.xml │ │ ├── candidates_item_paged_layout.xml │ │ ├── candidates_layout.xml │ │ ├── compact_layout.xml │ │ ├── ime_layout.xml │ │ ├── keyboard_dachen_layout.xml │ │ ├── keyboard_et26_layout.xml │ │ ├── keyboard_et26_qwerty_layout.xml │ │ ├── keyboard_et41_layout.xml │ │ ├── keyboard_hsu_layout.xml │ │ ├── keyboard_hsu_qwerty_layout.xml │ │ ├── keyboard_qwerty_layout.xml │ │ ├── setting_general_layout.xml │ │ ├── setting_section_physical_keyboard_layout.xml │ │ └── setting_section_user_interface_layout.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── resources.properties │ │ ├── values-ja-rJP │ │ └── strings.xml │ │ ├── values-night │ │ └── styles.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ ├── xml-v24 │ │ └── input_method.xml │ │ └── xml │ │ └── input_method.xml │ └── test │ └── java │ └── org │ └── ghostsinthelab │ └── apps │ └── guilelessbopomofo │ └── ExampleUnitTest.kt ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── en-US │ ├── changelogs │ │ ├── 13.txt │ │ └── 16.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-US.png │ │ │ └── 2_en-US.png │ │ ├── sevenInchScreenshots │ │ │ └── .gitkeep │ │ └── tenInchScreenshots │ │ │ ├── 1_en-US.png │ │ │ └── 2_en-US.png │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── changelogs │ ├── 13.txt │ └── 16.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ ├── phoneScreenshots │ │ ├── 1_zh-TW.png │ │ └── 2_zh-TW.png │ ├── sevenInchScreenshots │ │ └── .gitkeep │ └── tenInchScreenshots │ │ ├── 1_zh-TW.png │ │ └── 2_zh-TW.png │ ├── short_description.txt │ └── title.txt ├── gpl-3.0.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── media ├── GetItOnGooglePlay_Badge_Web_color_Chinese-TW.png ├── Screenshot_20250703_092244.png ├── Screenshot_20250703_092343.png ├── Screenshot_20250704_172359.png ├── Screenshot_20250704_172918.png ├── badge_get-it-on-zh-tw.png ├── get-it-on-zh-tw.svg ├── guileless_bopomofo_keyboard-a.svg ├── guileless_bopomofo_keyboard-ai.svg ├── guileless_bopomofo_keyboard-an.svg ├── guileless_bopomofo_keyboard-ang.svg ├── guileless_bopomofo_keyboard-ao.svg ├── guileless_bopomofo_keyboard-b.svg ├── guileless_bopomofo_keyboard-chi.svg ├── guileless_bopomofo_keyboard-ci.svg ├── guileless_bopomofo_keyboard-d.svg ├── guileless_bopomofo_keyboard-e.svg ├── guileless_bopomofo_keyboard-ei.svg ├── guileless_bopomofo_keyboard-en.svg ├── guileless_bopomofo_keyboard-eng.svg ├── guileless_bopomofo_keyboard-er.svg ├── guileless_bopomofo_keyboard-et26-ci-ie.svg ├── guileless_bopomofo_keyboard-et26-d.svg ├── guileless_bopomofo_keyboard-et26-f.svg ├── guileless_bopomofo_keyboard-et26-g-q.svg ├── guileless_bopomofo_keyboard-et26-h-er.svg ├── guileless_bopomofo_keyboard-et26-j-zhi.svg ├── guileless_bopomofo_keyboard-et26-k.svg ├── guileless_bopomofo_keyboard-et26-l-eng.svg ├── guileless_bopomofo_keyboard-et26-p-ou.svg ├── guileless_bopomofo_keyboard-et26-ri.svg ├── guileless_bopomofo_keyboard-et26-t-ang.svg ├── guileless_bopomofo_keyboard-et26-zi-ei.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-a.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-b.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-c.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-d.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-e.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-f.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-g.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-h.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-i.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-j.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-k.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-l.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-m.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-n.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-o.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-p.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-q.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-r.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-s.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-t.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-u.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-v.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-w.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-x.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-y.svg ├── guileless_bopomofo_keyboard-eten26-qwerty-z.svg ├── guileless_bopomofo_keyboard-f.svg ├── guileless_bopomofo_keyboard-g.svg ├── guileless_bopomofo_keyboard-h.svg ├── guileless_bopomofo_keyboard-hsu-ci-ei.svg ├── guileless_bopomofo_keyboard-hsu-d.svg ├── guileless_bopomofo_keyboard-hsu-f.svg ├── guileless_bopomofo_keyboard-hsu-g-e.svg ├── guileless_bopomofo_keyboard-hsu-h-o.svg ├── guileless_bopomofo_keyboard-hsu-j-zhi.svg ├── guileless_bopomofo_keyboard-hsu-k-ang.svg ├── guileless_bopomofo_keyboard-hsu-l-eng-er.svg ├── guileless_bopomofo_keyboard-hsu-m-an.svg ├── guileless_bopomofo_keyboard-hsu-n-en.svg ├── guileless_bopomofo_keyboard-hsu-q-chi.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-a.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-b.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-c.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-d.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-e.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-f.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-g.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-h.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-i.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-j.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-k.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-l.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-m.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-n.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-o.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-p.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-r.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-s.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-t.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-u.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-v.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-w.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-x.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-y.svg ├── guileless_bopomofo_keyboard-hsu-qwerty-z.svg ├── guileless_bopomofo_keyboard-hsu-si.svg ├── guileless_bopomofo_keyboard-hsu-x-shi.svg ├── guileless_bopomofo_keyboard-hsu-yi-ie.svg ├── guileless_bopomofo_keyboard-ie.svg ├── guileless_bopomofo_keyboard-j.svg ├── guileless_bopomofo_keyboard-k.svg ├── guileless_bopomofo_keyboard-l.svg ├── guileless_bopomofo_keyboard-m.svg ├── guileless_bopomofo_keyboard-mode-switch-bopomofo.svg ├── guileless_bopomofo_keyboard-mode-switch-eng.svg ├── guileless_bopomofo_keyboard-mode-switch.svg ├── guileless_bopomofo_keyboard-n.svg ├── guileless_bopomofo_keyboard-o.svg ├── guileless_bopomofo_keyboard-ou.svg ├── guileless_bopomofo_keyboard-p.svg ├── guileless_bopomofo_keyboard-punctuation.svg ├── guileless_bopomofo_keyboard-q.svg ├── guileless_bopomofo_keyboard-ri.svg ├── guileless_bopomofo_keyboard-shi.svg ├── guileless_bopomofo_keyboard-si.svg ├── guileless_bopomofo_keyboard-t.svg ├── guileless_bopomofo_keyboard-tone-2.svg ├── guileless_bopomofo_keyboard-tone-3.svg ├── guileless_bopomofo_keyboard-tone-4.svg ├── guileless_bopomofo_keyboard-tone-light.svg ├── guileless_bopomofo_keyboard-wu.svg ├── guileless_bopomofo_keyboard-x.svg ├── guileless_bopomofo_keyboard-yi.svg ├── guileless_bopomofo_keyboard-yu.svg ├── guileless_bopomofo_keyboard-zhi.svg ├── guileless_bopomofo_keyboard-zi.svg ├── guileless_bopomofo_keyboard.svg ├── guileless_bopomofo_keyboard_qwerty_0.svg ├── guileless_bopomofo_keyboard_qwerty_1.svg ├── guileless_bopomofo_keyboard_qwerty_2.svg ├── guileless_bopomofo_keyboard_qwerty_3.svg ├── guileless_bopomofo_keyboard_qwerty_4.svg ├── guileless_bopomofo_keyboard_qwerty_5.svg ├── guileless_bopomofo_keyboard_qwerty_6.svg ├── guileless_bopomofo_keyboard_qwerty_7.svg ├── guileless_bopomofo_keyboard_qwerty_8.svg ├── guileless_bopomofo_keyboard_qwerty_9.svg ├── guileless_bopomofo_keyboard_qwerty_a.svg ├── guileless_bopomofo_keyboard_qwerty_apostrophe.svg ├── guileless_bopomofo_keyboard_qwerty_b.svg ├── guileless_bopomofo_keyboard_qwerty_backslash.svg ├── guileless_bopomofo_keyboard_qwerty_c.svg ├── guileless_bopomofo_keyboard_qwerty_comma.svg ├── guileless_bopomofo_keyboard_qwerty_d.svg ├── guileless_bopomofo_keyboard_qwerty_e.svg ├── guileless_bopomofo_keyboard_qwerty_equal.svg ├── guileless_bopomofo_keyboard_qwerty_f.svg ├── guileless_bopomofo_keyboard_qwerty_g.svg ├── guileless_bopomofo_keyboard_qwerty_grave.svg ├── guileless_bopomofo_keyboard_qwerty_h.svg ├── guileless_bopomofo_keyboard_qwerty_i.svg ├── guileless_bopomofo_keyboard_qwerty_j.svg ├── guileless_bopomofo_keyboard_qwerty_k.svg ├── guileless_bopomofo_keyboard_qwerty_l.svg ├── guileless_bopomofo_keyboard_qwerty_left_bracket.svg ├── guileless_bopomofo_keyboard_qwerty_m.svg ├── guileless_bopomofo_keyboard_qwerty_minus.svg ├── guileless_bopomofo_keyboard_qwerty_n.svg ├── guileless_bopomofo_keyboard_qwerty_o.svg ├── guileless_bopomofo_keyboard_qwerty_p.svg ├── guileless_bopomofo_keyboard_qwerty_period.svg ├── guileless_bopomofo_keyboard_qwerty_q.svg ├── guileless_bopomofo_keyboard_qwerty_r.svg ├── guileless_bopomofo_keyboard_qwerty_right_bracket.svg ├── guileless_bopomofo_keyboard_qwerty_s.svg ├── guileless_bopomofo_keyboard_qwerty_semicolon.svg ├── guileless_bopomofo_keyboard_qwerty_slash.svg ├── guileless_bopomofo_keyboard_qwerty_t.svg ├── guileless_bopomofo_keyboard_qwerty_u.svg ├── guileless_bopomofo_keyboard_qwerty_v.svg ├── guileless_bopomofo_keyboard_qwerty_w.svg ├── guileless_bopomofo_keyboard_qwerty_x.svg ├── guileless_bopomofo_keyboard_qwerty_y.svg ├── guileless_bopomofo_keyboard_qwerty_z.svg ├── ic_baseline_format_quote_24.svg ├── ic_baseline_keyboard_24.svg ├── ic_baseline_keyboard_backspace_24.svg ├── ic_baseline_keyboard_return_24.svg ├── ic_baseline_keyboard_shift_24.svg ├── ic_baseline_language_24.svg └── ic_baseline_space_bar_24.svg ├── pubkey.gpg └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/.gitmodules -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | GuilelessBopomofo 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.3.0 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane", "~> 2.226" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/NOTICES.md -------------------------------------------------------------------------------- /PRIVACY-POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/PRIVACY-POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/rust-toolchain.toml -------------------------------------------------------------------------------- /app/src/androidTest/java/org/ghostsinthelab/apps/guilelessbopomofo/ChewingBridgeInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/androidTest/java/org/ghostsinthelab/apps/guilelessbopomofo/ChewingBridgeInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/org/ghostsinthelab/apps/guilelessbopomofo/GuilelessBopomofoServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/androidTest/java/org/ghostsinthelab/apps/guilelessbopomofo/GuilelessBopomofoServiceTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | *.tab -------------------------------------------------------------------------------- /app/src/main/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/libchewing_android_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/cpp/libchewing_android_jni.cpp -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/Candidate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/Candidate.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/CandidateViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/CandidateViewHolder.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/CandidatesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/CandidatesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/Chewing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/Chewing.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/ChewingBridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/ChewingBridge.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/ChewingUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/ChewingUtil.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/EngineeringModeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/EngineeringModeActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/GuilelessBopomofoEnv.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/GuilelessBopomofoEnv.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/GuilelessBopomofoService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/GuilelessBopomofoService.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/ImeLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/ImeLayout.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/KeyboardLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/KeyboardLayout.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/KeyboardPanel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/KeyboardPanel.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/MyApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/PagedCandidateViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/PagedCandidateViewHolder.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/PagedCandidatesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/PagedCandidatesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/BopomofoBufferTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/BopomofoBufferTextView.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/BufferLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/BufferLayout.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/BufferTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/BufferTextView.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/PreEditBufferTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/buffers/PreEditBufferTextView.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/enums/DirectionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/enums/DirectionKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/enums/Layout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/enums/Layout.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/enums/SelectionKeys.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/enums/SelectionKeys.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/events/Events.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/events/Events.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/BehaveLikeKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/BehaveLikeKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/KeyButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/KeyButton.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/KeyImageButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/KeyImageButton.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/CapsLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/CapsLock.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Del.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Del.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Down.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Down.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/End.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/End.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Enter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Enter.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Escape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Escape.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Home.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Home.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Left.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Left.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/LeftAlt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/LeftAlt.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/PhysicalKeyHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/PhysicalKeyHandler.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Right.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Right.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/RightShift.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/RightShift.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Space.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Space.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Up.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/physical/Up.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/BackToMainFunctionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/BackToMainFunctionKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/BackspaceKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/BackspaceKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/CandidateButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/CandidateButton.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/CharacterKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/CharacterKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/EnterKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/EnterKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/ImeSwitchFunctionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/ImeSwitchFunctionKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/ModeSwitchFunctionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/ModeSwitchFunctionKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/PunctuationFunctionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/PunctuationFunctionKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/ShiftKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/ShiftKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/SpaceKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/SpaceKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/SymbolFunctionKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/keys/virtual/SymbolFunctionKey.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/DisplayMetricsComputable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/DisplayMetricsComputable.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/EdgeToEdge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/EdgeToEdge.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/KeyEventExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/KeyEventExtension.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/Vibratable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/java/org/ghostsinthelab/apps/guilelessbopomofo/utils/Vibratable.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/gradient_ime_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/gradient_ime_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ai.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_an.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_an.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ang.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ao.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_b.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_chi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_chi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ci.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_e.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ei.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_en.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eng.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_er.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_er.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_ci_ie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_ci_ie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_g_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_g_q.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_h_er.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_h_er.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_j_zhi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_j_zhi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_l_eng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_l_eng.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_p_ou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_p_ou.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_ri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_ri.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_t_ang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_t_ang.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_zi_ei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_et26_zi_ei.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_b.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_c.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_e.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_g.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_h.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_i.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_j.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_m.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_m.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_p.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_q.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_s.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_t.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_u.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_v.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_v.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_w.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_x.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_y.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_eten26_qwerty_z.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_g.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_h.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_ci_ei.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_ci_ei.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_g_e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_g_e.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_h_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_h_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_j_zhi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_j_zhi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_k_ang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_k_ang.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_l_eng_er.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_l_eng_er.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_m_an.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_m_an.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_n_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_n_en.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_q_chi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_q_chi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_b.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_c.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_e.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_g.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_h.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_i.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_j.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_m.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_m.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_p.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_s.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_t.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_u.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_v.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_v.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_w.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_x.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_y.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_qwerty_z.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_si.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_x_shi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_x_shi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_yi_ie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_hsu_yi_ie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_j.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_m.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_m.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ou.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_p.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_punctuation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_punctuation.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_q.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_7.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_8.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_9.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_a.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_apostrophe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_apostrophe.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_b.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_backslash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_backslash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_c.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_comma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_comma.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_d.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_e.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_equal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_equal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_f.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_f.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_g.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_grave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_grave.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_h.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_i.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_j.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_k.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_l.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_left_bracket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_left_bracket.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_m.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_m.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_minus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_n.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_o.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_o.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_p.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_period.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_period.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_q.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_q.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_r.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_r.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_right_bracket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_right_bracket.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_s.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_semicolon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_semicolon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_slash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_slash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_t.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_u.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_u.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_v.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_v.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_w.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_x.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_y.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_qwerty_z.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_ri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_ri.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_shi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_shi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_si.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_t.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_tone_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_wu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_wu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_x.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_yi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_yi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_yu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_yu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_zhi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_zhi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/guileless_bopomofo_keyboard_zi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/guileless_bopomofo_keyboard_zi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_guileless_bopomofo_icon_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_guileless_bopomofo_icon_v2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_guileless_bopomofo_statusbar_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_guileless_bopomofo_statusbar_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_backspace_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_backspace_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_ime_switch_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_ime_switch_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_mode_switch_bopomofo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_mode_switch_bopomofo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_mode_switch_eng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_mode_switch_eng.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_return_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_return_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_shift_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_shift_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_space_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_space_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_keyboard_symbol_chooser_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/ic_keyboard_symbol_chooser_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/drawable/round_border.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_dachen_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_dachen_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_et26_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_et26_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_et26_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_et26_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_et41_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_et41_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_hsu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_hsu_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_hsu_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_hsu_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/keyboard_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-land/keyboard_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_dachen_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_dachen_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_et26_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_et26_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_et26_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_et26_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_et41_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_et41_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_hsu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_hsu_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_hsu_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_hsu_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/keyboard_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout-sw600dp/keyboard_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_engineering_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/activity_engineering_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/candidate_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/candidate_item_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/candidates_item_paged_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/candidates_item_paged_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/candidates_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/candidates_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/compact_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/compact_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ime_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/ime_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_dachen_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_dachen_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_et26_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_et26_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_et26_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_et26_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_et41_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_et41_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_hsu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_hsu_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_hsu_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_hsu_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_qwerty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/keyboard_qwerty_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_general_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/setting_general_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_section_physical_keyboard_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/setting_section_physical_keyboard_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/setting_section_user_interface_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/layout/setting_section_user_interface_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/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/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/resources.properties -------------------------------------------------------------------------------- /app/src/main/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml-v24/input_method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/xml-v24/input_method.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/input_method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/main/res/xml/input_method.xml -------------------------------------------------------------------------------- /app/src/test/java/org/ghostsinthelab/apps/guilelessbopomofo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/app/src/test/java/org/ghostsinthelab/apps/guilelessbopomofo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/changelogs/13.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/changelogs/16.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/sevenInchScreenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Guileless Bopomofo Keyboard -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/changelogs/13.txt: -------------------------------------------------------------------------------- 1 | 這個版本修正了在使用英文鍵盤時,候選詞列表會誤將鍵盤切回注音模式的問題。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/changelogs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/changelogs/16.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/phoneScreenshots/1_zh-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/images/phoneScreenshots/1_zh-TW.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/phoneScreenshots/2_zh-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/images/phoneScreenshots/2_zh-TW.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/tenInchScreenshots/1_zh-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/1_zh-TW.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/images/tenInchScreenshots/2_zh-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/2_zh-TW.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 樸實無華、開放原始碼的注音輸入法鍵盤 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 樸實注音鍵盤 -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /media/GetItOnGooglePlay_Badge_Web_color_Chinese-TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/GetItOnGooglePlay_Badge_Web_color_Chinese-TW.png -------------------------------------------------------------------------------- /media/Screenshot_20250703_092244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/Screenshot_20250703_092244.png -------------------------------------------------------------------------------- /media/Screenshot_20250703_092343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/Screenshot_20250703_092343.png -------------------------------------------------------------------------------- /media/Screenshot_20250704_172359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/Screenshot_20250704_172359.png -------------------------------------------------------------------------------- /media/Screenshot_20250704_172918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/Screenshot_20250704_172918.png -------------------------------------------------------------------------------- /media/badge_get-it-on-zh-tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/badge_get-it-on-zh-tw.png -------------------------------------------------------------------------------- /media/get-it-on-zh-tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/get-it-on-zh-tw.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-a.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ai.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-an.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-an.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ang.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ao.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-b.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-chi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-chi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ci.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-d.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-e.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ei.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-en.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eng.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-er.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-ci-ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-ci-ie.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-d.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-f.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-g-q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-g-q.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-h-er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-h-er.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-j-zhi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-j-zhi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-k.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-l-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-l-eng.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-p-ou.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-p-ou.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-ri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-ri.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-t-ang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-t-ang.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-et26-zi-ei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-et26-zi-ei.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-a.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-b.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-c.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-d.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-e.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-f.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-g.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-h.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-i.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-j.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-k.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-l.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-m.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-n.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-o.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-p.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-q.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-r.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-s.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-t.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-u.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-v.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-w.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-x.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-y.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-eten26-qwerty-z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-eten26-qwerty-z.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-f.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-g.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-h.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-ci-ei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-ci-ei.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-d.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-f.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-g-e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-g-e.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-h-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-h-o.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-j-zhi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-j-zhi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-k-ang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-k-ang.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-l-eng-er.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-l-eng-er.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-m-an.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-m-an.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-n-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-n-en.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-q-chi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-q-chi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-a.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-b.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-c.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-d.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-e.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-f.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-g.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-h.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-i.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-j.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-k.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-l.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-m.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-n.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-o.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-p.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-r.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-s.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-t.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-u.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-v.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-w.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-x.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-y.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-qwerty-z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-qwerty-z.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-si.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-x-shi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-x-shi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-hsu-yi-ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-hsu-yi-ie.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ie.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-j.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-k.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-l.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-m.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-mode-switch-bopomofo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-mode-switch-bopomofo.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-mode-switch-eng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-mode-switch-eng.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-mode-switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-mode-switch.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-n.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-o.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ou.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ou.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-p.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-punctuation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-punctuation.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-q.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-ri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-ri.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-shi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-shi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-si.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-si.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-t.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-tone-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-tone-2.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-tone-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-tone-3.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-tone-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-tone-4.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-tone-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-tone-light.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-wu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-wu.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-x.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-yi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-yi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-yu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-yu.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-zhi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-zhi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard-zi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard-zi.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_0.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_1.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_2.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_3.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_4.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_5.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_6.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_7.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_8.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_9.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_a.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_apostrophe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_apostrophe.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_b.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_backslash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_backslash.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_c.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_comma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_comma.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_d.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_e.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_equal.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_f.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_g.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_g.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_grave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_grave.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_h.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_i.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_j.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_k.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_l.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_left_bracket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_left_bracket.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_m.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_minus.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_n.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_o.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_p.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_period.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_period.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_q.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_r.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_right_bracket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_right_bracket.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_s.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_semicolon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_semicolon.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_slash.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_t.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_u.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_v.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_w.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_x.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_y.svg -------------------------------------------------------------------------------- /media/guileless_bopomofo_keyboard_qwerty_z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/guileless_bopomofo_keyboard_qwerty_z.svg -------------------------------------------------------------------------------- /media/ic_baseline_format_quote_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_format_quote_24.svg -------------------------------------------------------------------------------- /media/ic_baseline_keyboard_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_keyboard_24.svg -------------------------------------------------------------------------------- /media/ic_baseline_keyboard_backspace_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_keyboard_backspace_24.svg -------------------------------------------------------------------------------- /media/ic_baseline_keyboard_return_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_keyboard_return_24.svg -------------------------------------------------------------------------------- /media/ic_baseline_keyboard_shift_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_keyboard_shift_24.svg -------------------------------------------------------------------------------- /media/ic_baseline_language_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_language_24.svg -------------------------------------------------------------------------------- /media/ic_baseline_space_bar_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/media/ic_baseline_space_bar_24.svg -------------------------------------------------------------------------------- /pubkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroshiyui/GuilelessBopomofo/HEAD/pubkey.gpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Guileless Bopomofo" --------------------------------------------------------------------------------