JP Notify is an Android app that helps you memorize JLPT kanji passively. Every time you turn off your phone screen, the app shows a flashcard-style notification with a random kanji and its meaning.
- Flashcard-style kanji notifications shown when you turn off the screen
- JLPT levels N1–N5 selectable from the app's interface
- Works entirely offline using a bundled SQLite database
- Lightweight and minimal UI
- Fully customizable notification layout
-
Clone this repository:
git clone https://github.com/yourusername/jp-notify.git
-
Open the project in Android Studio.
-
Build and run the app on your device (Android 6.0 or newer).
- The app uses a
BroadcastReceiverthat listens for theSCREEN_OFFevent. - When the screen is turned off, it randomly selects a kanji from a local SQLite database.
- A notification is shown with the kanji (and reading) as well as the meaning.
- The user can configure which JLPT levels (N1 to N5) are included.
Android 13 and above require runtime permission for notifications:
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />