#pragma strict
function Start () {
}
function Update () {
OnGUI();
}
function OnGUI()
{
if(GUI.Button(new Rect(100,100,100,100) , "Android")){
AndroidJavaClass jc = new AndroidJavaClass("com.example.com.shona.izzanaqvi");
AndroidJavaObject jo = jc.GetStatic("currentActivity");
jo.Call("Launch");
}
}
this is my code and error is on line 13 and 14