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.
If you want to build the iOS app yourself, you will need to 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 tsurukame
directory, or use cd
to change it if not. Then type the following command, replacing 7B2GP77Y4A
with your development team, such as D526893WQ3
, and com.davidsansome.wanikani
with your identifier, such as com.mzsanford.wanikani
: utils/set-team-product.sh 7B2GP77Y4A com.davidsansome.wanikani
First, you will need to install CocoaPods if you don't already have it. The website suggests using sudo 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
.