Yuri Goncharenko

Results 11 comments of Yuri Goncharenko

The issue is back today, Maven is seeing this mention in build.gradle: `implementation(group: 'com.transistorsoft', name:'tsbackgroundfetch', version: '+')` and tries to get it from Bintray repository, but since [bintray repository is...

Replacing the `+` version with an actual version name fixed the problem for me `implementation(group: 'com.transistorsoft', name:'tsbackgroundfetch', version: '+')` —> `implementation(group: 'com.transistorsoft', name:'tsbackgroundfetch', version: '0.5.0')` Also, the order of repositories...

same here, need to be fixed asap

You can convert short links to full ones: ``` if (urlText.contains("youtu.be/")) { urlText = urlText.replaceAll( "youtu.be/", "youtube.com/watch?v="); } ```

Long press support is really needed as actual iPhones do not support 3D Touch as well

For me it doesn't work in Simulator but **does** work on a real device. Make sure you set your `Info.plist` correctly, if you don't it won't be able to ask...

@florent37 Any updates on this? Our users with iOS 16 still can't hear any sounds

same here, please ping me when it starts working 🙏🏻

Someone might try to use this instruction to make our own working fork of it on Maven: https://gist.github.com/cleberjamaral/6c9b0a615e51e26c94ffe407a641f531

Or this one, this one even looks easier: https://vegeta2102.medium.com/how-to-publish-android-library-to-github-package-as-a-maven-repository-4709de7608ab If someone can do this we could finally switch to a better repo once and forever