I wrote a simple android app using android studio and I just want it to show the message :"what`s up". but when the app runs, it only shows a "Hello world" message in the middle.
Ps: I`m using my real phone, USB debugging enabled, running android 7.0.
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.i("Hello","What`s up ?");
}