2985 Views
For find extension from a given path you can use any one from given solution:
Method 1: Get extension from string path
String path = "/storage/emulated/0/WhatsApp/Media/WhatsApp Video/VID-20190125-WA0010.mp4";
String extension = path.substring(path.lastIndexOf("."));
Method ...
Sheetal Kumar
Jan 26, 2019
2994 Views
Problem:
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
This error shows on the terminal when you update or new install macOS Mojave. This error means your system does not have installed Xcode-select Developer ...
Sheetal Kumar
Dec 01, 2018