AndroidVimeoExtractor
AndroidVimeoExtractor copied to clipboard
Fetches Vimeo's mp4 URLs for Android / Java
not working in some devices
``` VimeoExtractor.getInstance().fetchVideoWithURL(url, null, new OnVimeoExtractionListener() { @Override public void onSuccess(VimeoVideo video) { if (!play) { try { ((DetailActivity) context).runOnUiThread((Runnable) () -> Glide.with(context) .load(video.getThumbs().get("base")) .apply(new RequestOptions().centerCrop()) .into(thumbnail)); } catch (Exception e)...
Hi there, the library works fine on my debug session, but it hang the entire app on release, and think the reason is because I set this code: release {...
Inspired by other repositories that have created similar pages, please use this issue as a space to comment on how you are using this library, your feedback on it and...