본문 바로가기

프로그래밍 일반/안드로이드 심화

android.content.ActivityNotFoundException: Unable to find explicit activity class {com.techtown.testcrop/com.theartofdev.edmodo.cropper.CropImageActivity}; have you declared this activity in your AndroidManifest.xml?

Crop에서 에러뜨는 메시지이다.

xml에 메인엑티비티 외에도 Crop Activity를 추가시켜야 하는데 하지 않아서 생긴 오류이다.

<activity android:name="com.theartofdev.edmodo.cropper.CropImageActivity" android:theme="@style/Base.Theme.AppCompat"/> <!-- optional (needed if default theme has no action bar) -->

꼭 추가하자.