summaryrefslogtreecommitdiffstats
path: root/content/posts/enable-swype-aosp-keyboard.md
diff options
context:
space:
mode:
authorbreadcat2021-02-03 12:17:11 +0000
committerbreadcat2021-02-03 12:17:11 +0000
commita3869cbad5fa81ab5a764c1639b14779b26db6ab (patch)
tree97a628b7e7ee86885d675257937c0002e13abdb8 /content/posts/enable-swype-aosp-keyboard.md
parentd22a7a5db0ff5ff4b3886b7b3e65a90a2623cb41 (diff)
downloadblog.minskio.co.uk-a3869cbad5fa81ab5a764c1639b14779b26db6ab.tar.gz
blog.minskio.co.uk-a3869cbad5fa81ab5a764c1639b14779b26db6ab.tar.bz2
blog.minskio.co.uk-a3869cbad5fa81ab5a764c1639b14779b26db6ab.zip
Update post
Diffstat (limited to 'content/posts/enable-swype-aosp-keyboard.md')
-rw-r--r--content/posts/enable-swype-aosp-keyboard.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/content/posts/enable-swype-aosp-keyboard.md b/content/posts/enable-swype-aosp-keyboard.md
index 788278a..0a51953 100644
--- a/content/posts/enable-swype-aosp-keyboard.md
+++ b/content/posts/enable-swype-aosp-keyboard.md
@@ -1,6 +1,7 @@
---
title: "Enabling Swype on the AOSP keyboard"
date: 2021-01-31T14:42:00
+lastmod: 2021-02-03T11:51:00
tags: ["Android", "Linux", "Snippets", "Software"]
---
@@ -37,4 +38,21 @@ Once rebooted, browse to:
Settings > System > Languages & input > Virtual Keyboard > Android Keyboard (AOSP) > Gesture Typing > Enable gesture typing
```
-And you should be done. \ No newline at end of file
+One annoyance is that whenever a OTA update is pushed out to your device, it will remove this library. A [helpful script](https://gist.github.com/rugk/a4c9fa11c5c031faf45602d6bf922a1c) ([and instructions](https://android.stackexchange.com/a/187686)) to workaround this have been provided by [rugk](https://github.com/rugk):
+```
+wget "https://gist.github.com/rugk/a4c9fa11c5c031faf45602d6bf922a1c/raw/eed64cea4d37f5c35cd4ced5ceb0281fef38afc9/95-latinimegoogle.sh"
+sed -i 's/lib\//lib64\//g' 95-latinimegoogle.sh
+adb root
+adb remount
+adb push 95-latinimegoogle.sh /system/addon.d/
+adb shell
+cd /system/addon.d
+chmod +x 95-latinimegoogle.sh
+exit
+adb unroot
+adb reboot
+```
+
+And you should be done.
+
+* **Edit 2021-02-03:** Add OTA update library preservation section.