proletarius101

Results 127 comments of proletarius101

https://gitlab.com/fdroid/fdroiddata/-/merge_requests/9010 @Kr328 Needs your endorsement :)

What does your "release" mean? Would you do it yourself, or you ask us to wait for the next release?

BTW, since you replied, would you switch the NDK to the latest LTS or stable which could be included in F-droid?

The author didn't call "magisk" task (which does the packeging stuff) in `module/build.gradle.kts`. So you simply execute this command will it output the zip file: ```` ./gradlew magisk ```` However,...

@Kr328 Not sure if you do prefer `./gradlew build` (according to gradle's doc they don't always call it this way). If so, have a look at https://github.com/Kr328/ClashForMagisk/pull/9.

A possible solution: use Demigod mode

> > A possible solution: use diamond mode > > If you mean "Demigod mode", yes, that's a viable alternative solution. Yes. Typo. ;)

``` Failed to initiate app search for shortcut package com.oasisfeng.island user 10 java.lang.RuntimeException: Resetting app search failed at com.android.internal.util.ConcurrentUtils.waitForFutureNoInterrupt(ConcurrentUtils.java:91) at com.android.server.pm.ShortcutPackage.awaitInAppSearch(ShortcutPackage.java:2610) at com.android.server.pm.ShortcutPackage.awaitInAppSearch(ShortcutPackage.java:2593) at com.android.server.pm.ShortcutPackage.forEachShortcutStopWhen(ShortcutPackage.java:2542) at com.android.server.pm.ShortcutPackage.forEachShortcutStopWhen(ShortcutPackage.java:2524) at com.android.server.pm.ShortcutPackage.hasNoShortcut(ShortcutPackage.java:1725) at...

Any reasons not using `ShortcutManagerCompat` for Android O+ consistently as described in https://developer.android.com/guide/topics/ui/shortcuts/creating-shortcuts?hl=en#dynamic?

After a bit more research, maybe we just need to change `mobile/src/main/java/com/oasisfeng/island/shortcut/IslandAppShortcut.kt` from ```kotlin @OwnerUser @JvmStatic fun requestPin(context: Context, app: ApplicationInfo) { val dynamic = isDynamicLabelEnabled(context) val profile = app.user...