robotg
robotg
When I use 1.4.4 version of this lib a Toast pops up and here are the logs: ``` java.io.FileNotFoundException: /storage/emulated/0/bimagechooser/1443635066334.jpg: open failed: ENOENT (No such file or directory) at libcore.io.IoBridge.open(IoBridge.java:452)...
I found the issue, in API >= 23 you have to check for Read/Write external storage permissions even if its listed in your manifest. ``` java private static final int...
I was able to get around this problem by enabling and disabling onDragStart/Stop override methods ``` java dragSortRecycler.setOnDragStateChangedListener(new DragSortRecycler.OnDragStateChangedListener() { @Override public void onDragStart() { mRefreshLayout.setEnabled(false); } @Override public void...
I've also managed to bundle inscriptions together in a single UTXO. This was def my fault, I did an rbf on an inflight inscription transfer using the btc core wallet....