I test valid link before making the http call to get sourcecode of html site:
String mylink = "https://www.facebook.com/leo.delosrioveros"; //will say false, but exists!! Should be true
String mylink = "https://www.facebook.com/leo.rio"; //will say true
boolean zi =false;
CkString hk = new CkString();
zi = http.QuickGetStr(mylink,hk); //pre-check true/false
If "String mylink" contains a large URL it seems it says false, when indeed URL is valid and
should be true! I am using latest Chilkat Version .70 on Android Studio.
Edit
I noticed the Crash of the app happens once
myhtml = http.quickGetStr(mylink);
is executed. But a normal browser can Display the Content. Why does it Crash?