관리 메뉴

웹개발자의 기지개

[안드로이드] The application could not be installed: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED 에러처리 본문

안드로이드

[안드로이드] The application could not be installed: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED 에러처리

http://portfolio.wonpaper.net 2023. 6. 24. 00:09

 

SDK API 31 이상의 빌드에서 이와 같은 오류 메세지를 볼 수 있다.

 

AndroidManifest.xml 화일안에 activity 에서 intent-filter 를 사용하는데, 여기서 

android:exported="true" 

으로 속성값을 변경해주도록 하자.

 

        <activity android:name=".SplashActivity" android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".MainActivity" android:configChanges="orientation|keyboardHidden|screenSize" android:exported="true">
        </activity>

 

참고 : https://hello-bryan.tistory.com/400

 

 

 

 

 

 

 

Comments