The content displayed in Tsurukame comes from WaniKani, and its use is covered by https://www.wanikani.com/terms, NOT the terms of the Tsurukame software license.
Tsurukame is an unofficial WaniKani app for iOS. It helps you learn Japanese Kanji.
You can download the latest stable release of Tsurukame on the App Store.
Or join the TestFlight beta which is updated automatically any time there's a commit to this Git repository.
Building Tsurukame
If you want to build the iOS app yourself, you will need to change the signing identifiers.
Change the signing identifiers
You'll have to change the app bundle identifiers in the main target and app extension to match your Apple Developer Account.- You will need a registered Apple Developer Account. If you don't have one, you can get one for free at Apple Developer.
- Next, you will need to open Xcode, and open
ios/Tsurukame.xcworkspace, which is what you will use to build the app.
- If you already know your development team identifier, skip to step 4.
- Open Terminal, and ensure the current directory is in the
tsurukamedirectory, or usecdto change it if not. Then type the following command, replacing7B2GP77Y4Awith your development team, such asD526893WQ3, andcom.davidsansome.wanikaniwith your identifier, such ascom.mzsanford.wanikani:
utils/set-team-product.sh 7B2GP77Y4A com.davidsansome.wanikani
Update the CocoaPods dependencies
First, you will need to install CocoaPods if you don't already have it. The website suggests usingsudo gem install cocoapods.
Next, you will need to switch the current directory to the ios directory using cd.
Finally, simply install the dependencies using pod install or pod update.