안드로이드 스튜디오 첫화면 변경

조회수 315회

-안드로이드 스튜디오 첫화면 변경 코드를 하고 있는데 안스 첫 화면을 SubActivity로 하려고 하는데요 첫 화면으로 나오지도 않고

AAPT: error: unexpected element found in

이런 오류가 뜨는데 어떻게 해야하나요..?

<?xml version="1.0" encoding="utf-8"?>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Sharing">
    <activity
        android:name=".SubActivity"
        android:exported="true" />
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>



    <activity
        android:name=".MainActivity"
        android:exported="false">
    </activity>



</application>

답변을 하려면 로그인이 필요합니다.

프로그래머스 커뮤니티는 개발자들을 위한 Q&A 서비스입니다. 로그인해야 답변을 작성하실 수 있습니다.

(ಠ_ಠ)
(ಠ‿ಠ)