Aristide13

Results 18 comments of Aristide13

@TranceLove For that you can use this: https://github.com/stealthcopter/AndroidNetworkTools ````java ArrayList ports = new ArrayList(); ports.add(445); ports.add(443); SubnetDevices.fromLocalAddress().findDevices(new SubnetDevices.OnSubnetDeviceFound() { @Override public void onDeviceFound(Device device) { // Stub: Found subnet device...

Hi, What created the problem for me, was when I invoked several times for the same device: ``FileSystem currentFs = storageItem.usbMassStorageDevice.getPartitions().get(0).getFileSystem(); `` ``UsbFile root = currentFs.getRootDirectory();`` So ,for a given...

https://github.com/Rider02vn/Youtube-Extractor by @Rider02vn is a big SCAM!!!!!!

So according to you, my logic of storing and refreshing tokens is not enough to prevent login screen appears? Do you have an example using AuthStorage and especially an example...

So I try to understand the logic of your sdk: Can you tell me where is the code that triggers the account selection view (with the toast: "you have been...

OK... So instead of set the tokens I set the userId that I get in my database: ```java mBoxSession = new BoxSession(getActivity(),userId);//

My goal like with other cloud providers that I use, is to move from one account to another without having to identify me again once the creation is done. So...

OK @dblankety so for the listener issue if I proceed as follows ?: ````java //click item1 to connect account 1 mUserId = item1.getUserId(); activity.mBoxSession.setSessionAuthListener(null); mBoxSession = null; mFileApi = null;...

@doncung no, the principle mentioned above does not work. After a certain duration ?? the requests are no longer accepted ... To try to use your sdk in my application...

@doncung I will try to catch the exception with response.getException() and give it to you. But in the mentionned case, onCompleted() is not called at all. Thank you again for...