AndroidStuido(android studio no usages found in project file, unresolved class 'mainactivity')

Glass·2023년 3월 29일
0

해결

목록 보기
3/5

생긴 문제

  • manifest 파일에서
    android:name=".MainActivity" 경로를 못 잡음
  <activity
    android:name=".MainActivity"
    android:exported="true">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
  • 파일경로를 못 잡아서 내부에 쓰이는 함수나 클래스 클릭시 사용되는 곳 으로 장소 이동이 불가

해결 방법

File -> Invalidate Caches -> Invalidate and Restart

텍스트

0개의 댓글