I am developing a script in IntelliJ IDEA to download a file. I have a problem with Instagram and Facebook Android applications while opening link, so I want is after clicking on link it should auto open it in Google Chrome browser.
boolean downloadAndroid = false;
DBObject obj = new DBObject();
if(detector.detectMobileLong()) {
obj.setSystemType("mobile");
if(detector.isAndroid) {
downloadAndroid = true;
}
}