반응형
안드로이드 스튜디오를 사용중 빌드를 하려니 빌드가 안되고 오류가 발생했습니다.
해당 오류 해결방법은 AndroidManifest.xml파일을 수정해주면 됩니다.
<acticity> 태그안에 아무것도 없는 상태인데 다음 구문을 넣어주면 됩니다.
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter>
반응형
'IT세상 > error&exception' 카테고리의 다른 글
안드로이드 스튜디오 - Error: This view is not constrained (0) | 2020.07.08 |
---|---|
안드로이드 스튜디오 - Error: Default interface methods are only supported starting with Android N (0) | 2020.07.04 |
안드로이드 스튜디오 - Error running 'app': Default Activity not found (0) | 2020.05.24 |
이클립스에러 - build failed : Unable to find a javac compiler (0) | 2019.09.05 |
톰캣에러-Exception loading sessions from persistent storage (0) | 2019.05.06 |