Android Crash 발생
•
RuntimeException: Unable to start activity ComponentInfo{…}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
◦
AndroidManifest.xml 의 application theme이 AppCompat으로 설정되지 않은 경우 발생합니다.
◦
버즈부스터는 안드로이드 하위 버전 지원을 위해 AppCompatActivity를 사용하고 있습니다. Application Theme이 설정되어있지 않은 경우 아래와 같이 설정해주세요.
<application
android:theme="Theme.AppCompat">
XML
복사
◦
App 전체에 theme을 설정할 수 없는 경우, 문제가 발생하는 activity를 아래와 같이 설정해주세요.
▪
BuzzBooster Android SDK에서 사용하는 activity의 property는 Android Studio의 “Merged Manifest”를 확인해주세요
<activity
android:name="com.buzzvil.booster.internal.feature.externalpoint.presentation.ExternalPointExchangeActivity"
android:exported="false"
android:screenOrientation="portrait"
android:theme="Theme.AppCompat" />
XML
복사