Mikhail Mitrofanov

Results 11 comments of Mikhail Mitrofanov

I had same error when I made gradle sync. How can I fix this error? ``` Build file '/home/mihail/work/LibreraReader/app/build.gradle' line: 121 A problem occurred evaluating project ':app'. > Could not...

> @Lampotrias maybe you can help? Do you need advice on implementation or usage scenarios? If you're not inclined to create a second button that selects a specific file, I...

> If we assume that merging is implemented, would a second button be necessary? Honestly, I'm not sure what would be best from a UI/UX perspective. But I can suggest...

@eartle , thank you, the warnings are disappears in Logcat

https://github.com/user-attachments/assets/2d807d17-f151-4cd4-a993-fe3bf0fcbb7c

After all the changes, this looks good, but I found a bug. If there is only one track in a category and during editing we move it to another category,...

Ok, I can watch it tomorrow. Then this PR won't block anything.

Hi! This task seems simple, but I also need to know the scale ranges (min/max) from the C++ framework, including for the iOS application. Without this information, my solution will...

> What happens on pressing zoom buttons now? Currently, when pressing the zoom buttons, we simply call: ``` public static void zoomIn() { nativeScalePlus(); } public static void zoomOut() {...

Next, JNI is called: ``` JNIEXPORT void JNICALL Java_app_organicmaps_Map_nativeScalePlus(JNIEnv *, jclass) { g_framework->Scale(::Framework::SCALE_MAG); } JNIEXPORT void JNICALL Java_app_organicmaps_Map_nativeScaleMinus(JNIEnv *, jclass) { g_framework->Scale(::Framework::SCALE_MIN); } ``` without return value. What happens after...