uyilmaz
uyilmaz
I changed line 191 from SampleActivity: ` if (event.getAction() == MotionEvent.ACTION_UP) { mPageFlipView.onFingerUp(event.getX(), event.getY()); return true; }` to: ` if (event.getAction() == MotionEvent.ACTION_UP) { mPageFlipView.onFingerUp(event.getX(), event.getY()); return mGestureDetector.onTouchEvent(event); }` Seems...
In addition to above, when you specify a streaming expression instead of a query like: ``` val s1 = Map( "zkHost" -> "myZK", "collection" -> "myCollection", "expr" -> "search(myCollection,q="multivaluedField:[* TO...
Hi, I'm getting the CSP error with following environment: Solr 8.4.0, Banana: Latest (b3ff48d), Browser: Yandex 20.11.2.78 (uses the latest chromium as of now). I'm using Option 1 for installation,...
@oliviassss Thanks for replying! For my use case it doesn't matter if it's `exact` or `prefix`, both works since I only need to route based on the hostname. What I'd...