JakkeJ

Results 6 comments of JakkeJ

> As mentioned in other issues with the same problem add dependsOn(commonMain) to androidMain in the build.gradle file. > > ``` > val androidMain by getting { > dependsOn(commonMain) >...

Same issue here, not solvable with Moko Permissions without an update to this library I think. Either make a custom permissions library that supports background location (since this is the...

2024-05-12 21:33:05.605 10872-10872 rotateImage com.sar.app.android D Orientation: null from ``` fun rotateImage(mapViewModel: MapViewModel) { val inputFile: ByteArray = mapViewModel.imageByteArray ?: return val metadata = Kim.readMetadata(inputFile) val orientation = metadata?.findShortValue(TiffTag.TIFF_TAG_ORIENTATION) val...

Hi Stefan! No, it is when I take a picture with the phones/tablets. I used Exif data to get rotation in Compose a year ago, and that worked fine, we...

> @JakkeJ Did you figure out the source of the problem? I actually used some old code from an old mobile programming course project to load the pictures in, either...

> @JakkeJ You said also ExifInterface did not work for you. > > Can you share the code that works for you and gets the orientation right? > I still...