- Home /
WWW.text problems on android
Hello!
I'm trying to acces a string from a txt file in a FTP.
it works on the editor but on my phone it won't load.
is anyone else having this problem?
best regards.
here is my code:
public string url; private void Start() { StartCoroutine(StartCR()); }
IEnumerator StartCR()
{
WWW www = new WWW(url);
yield return www;
GetComponent<Text>().text = www.text;
}
Comment
Your answer
Follow this Question
Related Questions
Android : www.error 401 when using credentials in URL over HTTPs 0 Answers
Android www ssl error 0 Answers
www return empty text on android 0 Answers
Unity download audio 1 Answer
How can i do youtube video player from video url for Android devices ? 0 Answers