Andrew Sun
Andrew Sun
Hmm... I don't think this is fixable at the library level. As you mentioned, one bypass would be to hook whatever in the system performs this validation and allow the...
Recently I found this undocumented property `android:forceQueryable="true"` that you can set on the `` element in your AndroidManifest.xml which seems like a way to bypass the package visibility changes. Haven't...
@RobertZenz interesting, although I'm not sure how much that would have in common with RemotePreferences (the vast majority of code in this library is just to adapt SharedPreferences to the...
I thought about this a long time ago, I believe the main reason I never implemented it was because I suck at UI and didn't want to implement rearranging list...
I do want to implement ordering, but probably won't have the time to do it myself anytime soon. Work is hard :-/
As it turns out, Android O seems to have removed the *_SMS permissions from `com.android.phone`, which means we can no longer protect our blocked messages/filters database using that permission. Using...
(2) also has the added benefit of removing a lot of ugly complexity in the app. We can finally implement verbose logging in a reasonable way (global singleton, anyone?), and...