Skip to content

Verge Tor Wallet for Android v2.7

Latest
Compare
Choose a tag to compare
@justinvforvendetta justinvforvendetta released this 27 Jul 00:30
· 31 commits to master since this release

Fixes a bug where the app crashes at launch
RECEIVER EXPORTED must be used when the app communicates with another app, in this case, Tordroid uses Orbot, so we

changes made to WalletActivity.java:


registerReceiver(orbotStatusReceiver, intentFilter);_  to:
import android.content.Context;
registerReceiver(orbotStatusReceiver, intentFilter, Context.RECEIVER_EXPORTED);

Google Play Downloads: 10K+

Downloads outside of Google Play:GitHub all releases

can read more about it here:

https://stackoverflow.com/questions/78295557/android-api-34-security-exception-one-of-receiver-exported-or-receiver-not-exp

(wallet-release-min24.apk is API 24, for users who need to manual download because Google Play no longer supports them, it only support 34 or higher now)