Alexey Rochev
Alexey Rochev
I have the same issue with latest build. Xposed log: https://gist.github.com/equeim/bfa3177605ca593b97d137cbe3ad8f88
Animations are buggy in landscape. 0.2.0 from xposed repository works fine, though.
Considering that Google [recommends](https://developer.android.com/guide/navigation/navigation-programmatic#share_ui-related_data_between_destinations_with_viewmodel) this pattern with androidx.navigation, probably quite a few people use it :) (the wording there is a bit weird since it works not only with whole...
Thanks, it seems to be working (including when app is restored from process death). Though it's a bit strange from library user point of view why there is NavHostScope interface...
But why is explicit cast is neccessary here? If you pass `@StdString BytePointer` to a function that takes `std::string&` it will compile without explicit cast by using implicit conversion via...
Yeah, you are right. I think it would be cleaner if adapters had explicit conversion functions, e.g. toPointer() and toContainer(). But that would obviously break compatibility for people that make...
Also, how does one use this function: ```C++ virtual std::string wtf(std::string str) { return str; } ``` With following Java code ```Java @Virtual native @Cast({"", "std::string"}) @StdString String wtf(@Cast({"", "std::string"})...
I see two options: 1. Call operators explicitly, like `adapter.operator std::basic_string&()` or `adapter.operator const char*()` This solution is ugly and we also will need to somehow make sure that these...
Oh lol, I don't know how I missed that. Ok, variant 2.1: Separate Adapter class in two (nested?) classes, one for container -> pointer conversion and other for pointer ->...
Seems that crash is caused by CheckJNI mode that is enabled for debuggable apps and in Android Emulator: https://developer.android.com/training/articles/perf-jni#extended-checking