HeliBoard keyboard is an improved fork of the now-unmaintained OpenBoard keyboard. It does not require internet permission, allowing it to be used 100% offline.
Add dictionaries for suggestions and spell check
Customize keyboard themes (style, colors, and background image)
Customize keyboard layouts (only available when disabling system languages)
Multilingual typing
Glide typing (only with closed-source library ☹️)
Clipboard history
One-handed mode
Split keyboard (only available if the screen is large enough)
Number pad
Backup and restore your learned word/history data
Features that may go unnoticed, and further potentially useful information
Welcome to the droidymcdroidface-iest, Lemmyest (Lemmiest), test, bestest, phoniest, pluckiest, snarkiest, and spiciest Android community on Lemmy (Do not respond)! Here you can participate in amazing discussions and events relating to all things Android.
The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:
1. All posts must be relevant to Android devices/operating system.
2. Posts cannot be illegal or NSFW material.
3. No spam, self promotion, or upvote farming. Sources engaging in these behavior will be added to the Blacklist.
4. Non-whitelisted bots will be banned.
5. Engage respectfully: Harassment, flamebaiting, bad faith engagement, or agenda posting will result in your posts being removed. Excessive violations will result in temporary or permanent ban, depending on severity.
6. Memes are not allowed to be posts, but are allowed in the comments.
7. Posts from clickbait sources are heavily discouraged. Please de-clickbait titles if it needs to be submitted.
8. Submission statements of any length composed of your own thoughts inside the post text field are mandatory for any microblog posts, and are optional but recommended for article/image/video posts.
Community Resources:
We are Android girls*,
In our Lemmy.world.
The back is plastic,
It’s fantastic.
*Well, not just girls: people of all gender identities are welcomed here.
Our Partner Communities:
How can I know this keyboard is secure? Reading all the source code feels impractical.
Fwiw, my cousin says it’s clean. But he’s a bit of a dick. He does code for a living though, so there’s that.
It doesn’t even declare any network access permissions (and according to the README’s policy, it won’t in the future), so it couldn’t even be a keylogger.
deleted by creator
Could it log to some type of storage and a different app with network permissions upload it? I’m not an Android dev, just thinking aloud.
I mean… You could be paranoid about any app doing that
Not any app has direct access to every key that you type like the keyboard app does. It has all access to literally every PII you enter in using it. If any app needs additional scrutiny it would be the keyboard.
Despite widespread misinformation, that isn’t actually true. You DO NOT need to declare the Internet permission in an Android app. Google removed the requirement about 10 years ago when they realized pretty much every single app used the Internet permission. You only need it now if you are using sockets
Do you have any sources or docs on that? Sounds pretty backwards but also new to me. I pretty recently tried to download images (using Glide) without any special permissions and it failed since the app was missing the
android.permission.INTERNET
declaration (just like HeliBoard)I don’t have a reputable source (only stack overflow) because Google’s docs are misleading. They say you need INTERNET and ACCESS_NETWORK_STATE permissions but it simply isn’t true. I wonder if they regret the decision but can’t change it now because it could break older apps?