spencercarli / react-native-splash-screen-demo

67 stars 39 forks source link

error: package android.support.v7.app does not exist #10

Open ghost opened 4 years ago

ghost commented 4 years ago

To resolve the error: Run the SplashActivity.java file as follows

package com.test2; // ← Make sure that is your package name

import android.content.Intent; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity;

public class SplashActivity extends AppCompatActivity {

      @Override
       protected void onCreate(Bundle savedInstanceState) {
               super.onCreate(savedInstanceState);

              Intent intent = new Intent(this, MainActivity.class);
              startActivity(intent);
              finish();
         }

}

rohit-dasamantharao commented 2 years ago

Thanks, it resolves the error w.r.t package android.support.v7.app