Ruslan Berozov

Results 8 comments of Ruslan Berozov

@dentakoy Check this: https://contacts.skype.com/contacts/v2/users/(string: id)/invites from https://skpy.t.allofti.me/protocol/contact.html

@Xayanix Search JavaSkype project. In one of the issues you can find implementation for Microsoft login.

@Xayanix https://github.com/Delthas/JavaSkype/issues/24

@Slacktooth My skills in Java 1.8 are not so high. I thought that someone has already ported this API to Android, and I asked this question not because I'm so...

@sponges I know about it, but for Android (SDK 19) compatibility I need to backport code that used java 1.8 features to java 1.7, because Android SDK < 24 (below...

Issue resolved. Maybe helpful for someone: FOREACH: //this.resources.forEach(interestedResources::add); for (String resource : this.resources) { interestedResources.add(resource); } FOREACHREMAINING: //object.get("capabilities").asArray().iterator().forEachRemaining(value -> //this.capabilities.add(value.asString())); Iterator iterator1 = object.get("capabilities").asArray().iterator(); while (iterator1.hasNext()) { JsonValue value =...

May be it can help: https://skpy.t.allofti.me/protocol/login.html

Version 0.2.5. FFmpeg.java `@Override public boolean isFFmpegCommandRunning() { return ffmpegExecuteAsyncTask != null && ffmpegExecuteAsyncTask.isProcessCompleted(); }`