chris mckenzie
chris mckenzie
nope, looks like it's my job, alright.
so there should be a cascade that checks redgifs as well apparently, since this is where the split exists. Whether one would want to add some "disallow_nsfw" flag is probably...
there's the pr, do with it what you will.
I also version bumped it to 0.2.3 in the PR btw.
Quoting: https://developer.android.com/training/permissions/requesting.html > When the system asks the user to grant a permission, the user has the option of telling the system not to ask for that permission again. In...
Also, this doesn't preclude including things in the manifest in addition to asking explicitly. Quoting the same link above: > On all versions of Android, your app needs to declare...
So for me at least, after manually adding this line to my `AndroidManifest.xml` (for in this case camera, since this seems to be the big pain point) ``` ``` And...
As far as detecting if the user had done the "never ask again" option probably the only feasible way to do it (since android doesn't tell you) would be something...
this is trivial just do something like this. ```bash #!/bin/bash VER=0.10.4 ./cursor-${ver}.AppImage --appimage-extract mv squashfs-root cursor-${ver} mkdir -p cursor-${ver}/usr/local/cursor cursor-${ver}/usr/local/bin mv cursor-${ver}/{*,.*} cursor-${ver}/usr/local/cursor ( cd cursor-${ver}/usr/local/bin/ && ln -s ../cursor/cursor...
> > this is trivial just do something like this. > > ```shell > > #!/bin/bash > > VER=0.10.4 > > ./cursor-${ver}.AppImage --appimage-extract > > mv squashfs-root cursor-${ver} > >...