import android.content.Intent;
import android.net.*;
public class ignitionClass {
Intent dialI = new Intent(Intent.ACTION_CALL, Uri.parse("tel:610-970-1218"));
startActivity(dialI);
}
Now the issues I am being faced with are from Intent dialI all the way down. I think its something simple for the most part… Just I cant figure out what is wrong.
What do you mean “diall all the way down” do you want the app to start dialing? If so then it won’t happen for security reasons. User needs to initiate call himself, your app can just prompt the dial screen with number filled in. Otherwise malicious software can dial on paid numbers, etc.