Code issue . . . . . . . . . . . . . . . . . . . . . . . . .

package com.example.itsmine;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;

public class MainActivity extends AppCompatActivity {
val TAG=“myApp”
@Override
protected fun onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.d(TAG, "onCreate: ");
= }

@Override
protected void onStart() {
    Log.d(TAG, "onStart: ");
    super.onStart();
}
@Override
protected void onResume() {
    Log.d(TAG, "onResume: ");
    super.onResume();
}

@Override
protected void onPause() {
    Log.d(TAG, "onPause: ");
    super.onPause();
}

@Override
protected void onDestroy() {
    Log.d(TAG, "onDestroy: ");
    super.onDestroy();
}

}


can you tell me what is the mistake in this code

Please specify issue or problem you are facing in above code.

illegal start of expression @override

error: ‘;’ expected @Override these kind of error i am facing and one thing

whenever i type log.d its only print Log.d with empty brackets like this () no msg. option and no veriable option in it.

now it’s giving error in val the error is can’t find symbol val