I have created a SplashActivity class under main package
package com.mypackage;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity; // not found this library
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent(this, MainActivity.class);
startActivity(intent);
finish();
}
}
The error show the v7 not exist when I compile this project. How can add it?
react-native version: 0.60.4.