Jacob Nordfalk
Jacob Nordfalk
Sorry, its been a while since I used this and I can't remember much :-) I think you can edit this file and change shortcuts. https://github.com/nordfalk/jsyntaxpane/blob/3e18f868b5dd0f4c623eaa5b367abf28d4786540/jsyntaxpane/src/main/resources/META-INF/services/jsyntaxpane/defaultsyntaxkit/config.properties#L55
I worked around this by setting gradle.properties back to to distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip and in my build.gradle I had to go back to classpath 'com.android.tools.build:gradle:4.2.0' and then it worked - and I...
Here is a 'small but ugly' workaround that I use: // workaround for https://github.com/square/retrofit/issues/3474 so that we can see the URL and where the stacktraces came from fun wrapToBeTraceable(throwable: Throwable):...
Yes @Red7M , you can surround all calls to retrofit in try/catch blocks. And then you invoke wrapToBeTraceable() to get the real stack trace: Like ``` try { ... some...
I am using newest release from https://github.com/hapifhir/hapi-hl7v2/releases
If others have the same need Ive published an artifact on jitpack. See https://jitpack.io/#DineroRegnskab/PdfiumAndroid/pdfium-android-1.9.2 allprojects { repositories { google() jcenter() **maven { url 'https://jitpack.io' }** } } Note: You muse...
Hi, this widget is not accessible for people using a screenreader (Talkback) per default, but its easy to fix it, and at the same fix should make it work well...
I dont have that problem. Ive made some improvements, which might solve your problem - try https://github.com/nordfalk/recompose, it might work for you.
@Ric-AB Ive just verified that my version can be installed as a plugin in Android Studio Hedgehog | 2023.1.1 Canary 6, using ./gradlew buildPlugin and then installing the plugin from...
@hamzabelhaj Theres no GUI for the Command-line interface. The CLI works as described in https://github.com/pocmo/recompose?tab=readme-ov-file#command-line-interface-cli I used it like this: ./gradlew recompose-cli:run --args="-h" ./gradlew recompose-cli:run --args="/home/j/dinero-android-app/base/src/main/res/layout/settings_companies_list_item.xml -o /home/j/dinero-android-app/base/src/main/java/dk/dinero/dinero/app/navigation -c" to...