[Android] Download file.cs from Url & use it instead of original script.

Hi ^^

For Android application, wanted to apply downloadedFile.cs downloaded from Url instead of defaut script.

My script (DOESN’T WORK) :

public void NouvellesAnnonces (){    		
		WWW ww = new WWW("http://myWebSite/Ajouter.cs");
		StartCoroutine (NouvellesAnnoncesCor(ww));
	}
    IEnumerator NouvellesAnnoncesCor(WWW ww){
            		yield return ww;
            
            		#if UNITY_ANDROID //DOESN'T WORK
            		StreamWriter writer = new StreamWriter ("Assets/Scripts/AnnonceCherche.cs");
            		writer.WriteLine (ww.text);
            		writer.Close ();
            		#endif
            	}

Scripts must be compiled for them to work in the application. They cannot be added at runtime.