여러 액티비티를 추가 후 애뮬레이터를 실행해보았을 때, 메인 액티비티에서 버튼을 눌러 다음 액티비티로 넘어갈 때 앱이 강제종료되며 위와 같은 에러메세지가 떴다.
<activity android:name=".[새로 추가한 액티비티명]"
android:exported="false"/>
전체적인 코드
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <application . . . <activity android:name=".[새로 추가한 액티비티명]" android:exported="false"/> <activity android:name=".MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </activity> </application> </manifest>