Nicola Gallazzi
Nicola Gallazzi
I was trying to batch updating all my drawables. Got this error message: Error: No such file or directory 'D:\Development\myfoody-app-android-2019\app\src\main\res\drawable\*.xml'. at checkOptimizeFileError (C:\Users\Nicola\AppData\Roaming\npm\node_modules\avocado\dist\lib\index.js:212:31) at C:\Users\Nicola\AppData\Roaming\npm\node_modules\avocado\dist\lib\index.js:162:16 Thanks for your time!
I've launched avocado on this vector: ` ` Unfortunately Android Studio is still telling me "long vector" even after the optimization
Happening only on IOS, with .mp4 videos and cache enabled
For custom authorities, different from com.mvc.imagepicker.provider ImagePicker.pickImage(fragment, title) method crashes with this error: 'android.content.res.XmlResourceParser android.content.pm.ProviderInfo.loadXmlMetaData(android.content.pm.PackageManager, java.lang.String)' on a null object reference Authority is hard coded inside ImagePicker.class "com.mvc.imagepicker.provider", row 118
Fixes issue#52: "App crashing when changing image_picker_file_provider_auth". In ImagePicker.java class "authority" parameter was referencing to BuildConfig.APPLICATION_ID of sample application. This way the library is dependent from sample application and probably...
For some types of camera, for example using a Xiaomi A2, image comes with a wrong rotation from the method "getImageFromResult"
``` Caused by: dev.whyoleg.cryptography.CryptographyAlgorithmNotFoundException: Algorithm not found: dev.whyoleg.cryptography.algorithms.asymmetric.ECDSA androidMain.dependencies { implementation("dev.whyoleg.cryptography:cryptography-provider-jdk:0.3.1") implementation("org.bouncycastle:bcpkix-jdk15on:1.68") } commonMain.dependencies { implementation("dev.whyoleg.cryptography:cryptography-core:0.3.1") } iosMain.dependencies { implementation("dev.whyoleg.cryptography:cryptography-provider-apple:0.3.1") } ``` provider: `dev.whyoleg.cryptography:cryptography-provider-apple:0.3.1`
Project: Compose Multiplatform Library version: 0.3.1 agp = "8.2.0" kotlin = "1.9.21" key: "-----BEGIN PRIVATE KEY-----\n" + "My key payload" "-----END PRIVATE KEY-----" ``` class TimeSignatureHelper(private val secret: String) {...
I'm trying to generate ECDSA signature from a known private key generated according to [RFC 5915](https://datatracker.ietf.org/doc/html/rfc5915) specifications. However when I try to decode the key I get a parsing exception:...
I'm wondering if there is a way to pass a "Test Navigator" to test voyager navigation from **unit tests.** I have this `NavigationHelper` class ``` class NavigationHelper(val navigator: Navigator) :...