Can this be resurrected?
I've been using this for years. Just updated my phone and it wasn't able to copy over, and I don't see it in the play store anymore. I'd love to be able to continue using it.
I was able to find an apk online that worked, but it'd be great to have an official updated version.
That'd be amazing, to be honest. I still have friends use this (along with myself).
just an FYI to others finding this. The previously compiled versions don't seem to have a 64-bit binary and some newer phones have dropped support for 32-bit (recent pixels for example). However, pull this repo, import into a recent version of android studio and update a few things here and there, it can and does work.
bumping for support
I managed to compile an APK that works for newer devices (at least, it works on my Pixel 7). I'm not very advanced in Android though, so you might want to compile it for yourself.
Here were my steps in case anyone wants to replicate:
- Install Android Studio v3.0 and import the project.
- Add
android:exported="true"to any<service>tags inAndroidManifest.xml. This seems to be a new requirement for all apps after Android 12. - Build the APK
Build > Generated Signed APK...
I also updated the compileSdkVersion and targetSdkVersion in the generated build.gradle to 33, but I'm not sure if that's required.