티스토리 뷰
Stack Overflow에 자주 검색, 등록되는 문제들과 제가 개발 중 찾아 본 문제들 중에서 나중에도 찾아 볼 것 같은 문제들을 정리하고 있습니다.
Stack Overflow에서 가장 먼저 확인하게 되는 가장 높은 점수를 받은 Solution과 현 시점에 도움이 될 수 있는 가장 최근에 업데이트(최소 점수 확보)된 Solution을 각각 정리하였습니다.
아래 word cloud를 통해 이번 포스팅의 주요 키워드를 미리 확인하세요.
"Default Activity Not Found" on Android Studio upgrade
Android Studio 업그레이드 후 "Default Activity Not Found"
문제 내용
I upgraded IntelliJ IDEA from 12.0.4 to 12.10.
IntelliJ IDEA를 12.0.4에서 12.10으로 업그레이드했습니다.
Now all the modules in my Android project give the error:
Android 프로젝트의 모든 모듈에서 다음 오류가 발생합니다.
Error: Default Activity Not Found
오류: 디폴트 액티비티를 찾을 수 없습니다.
I reverted back to 12.0.4 and it everything works again.
12.0.4로 되돌렸는데 모든 것이 다시 작동합니다.
Any ideas? I think it might be an issue with a missing plugin. Since the plugin is not installed, it is not able to find the default activity. Another thing could have been a local configuration, but I doubt it. I deleted the configuration folder to verify and that didn't change anything.
아이디어 있어요? 플러그인이 누락된 문제일 수도 있습니다. 플러그인이 설치되어 있지 않기 때문에 디폴트 액티비티를 찾을 수 없습니다. 또 다른 것은 로컬 구성일 수도 있지만, 저는 그것이 의심스럽습니다. 확인하기 위해 구성 폴더를 삭제했지만 아무것도 변경되지 않았습니다.
높은 점수를 받은 Solution
If you see that error occur after upgrading versions of IntelliJ IDEA or Android Studio, or after generating a new APK file, you may need to refresh the IDE's cache.
IntelliJ IDEA 또는 Android Studio 버전을 업그레이드하거나 새 APK 파일을 생성한 후 오류가 발생하는 경우 IDE의 캐시를 새로 고쳐야 할 수 있습니다.
Menu File → Invalidate Caches and restart...
메뉴 파일 → 캐시를 무효화하고 다시 시작...
가장 최근 달린 Solution
This occurred to me after my PC restarted unexpectedly. Strangely, I had made no changes and still got this error.
PC가 예기치 않게 다시 시작된 후 이런 일이 발생했습니다. 이상하게도 변경하지 않았는데도 여전히 이 오류가 발생했습니다.
None of the above helped me. What solved my problem, was this.
위의 어떤 것도 저를 도와주지 않았습니다. 제 문제를 해결한 것은 이것입니다.
Step 1:
1단계:
Step 2:
2단계:
Step 3:
3단계:
If this doesn't solve the problem give other tries.
이것으로 문제가 해결되지 않으면 다른 시도를 해보세요.
Try 1:
시도 1:
Menu File → Invalidate Caches / Restart...
메뉴 파일 → 캐시 비활성화 / 다시 시작...
Try 2:
시도 2:
Check whether the following two lines,
다음 두 줄이 있는지 확인합니다.
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
are in your launcher activity declaration in file manifest.xml.
런처 액티비티가 manifest.xml에 선언되어야 합니다.
<activity
android:name="com.your.package.name.YourActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Try 3:
시도 3:
그림과 같이 클릭합니다. 실행 / 디버그 구성이 열립니다.
If this doesn't help either:
이 방법으로도 도움이 되지 않는 경우:
Try 4:
시도 4:
- Menu File → Export to ZIP.
메뉴 파일 → ZIP으로 내보냅니다.
and
그리고.
- Import it as a new project.
새 프로젝트로 가져옵니다.
출처 : https://stackoverflow.com/questions/15825081/default-activity-not-found-on-android-studio-upgrade
'개발 > 안드로이드' 카테고리의 다른 글
비디오 태그를 포함한 HTML5 웹뷰로 로드하기 (0) | 2022.12.23 |
---|---|
안드로이드에서 인텐트를 사용하여 전화하기 (0) | 2022.12.23 |
'IllegalStateException: Can not perform this action after onSaveInstanceState with ViewPager' 오류 수정하기 (0) | 2022.12.22 |
에뮬레이터에서 SocketException 발생시 해결 방법 (0) | 2022.12.22 |
'This Activity already has an action bar supplied by the window decor' 에러 수정하기 (0) | 2022.12.22 |