You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
宿主apk的activity是继承AppCompatActivity,在xml文件中: <application android:name=".App" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme">
报错
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xxxxx/androidx.pluginmgr.DynamicActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
宿主apk的activity是继承AppCompatActivity,在xml文件中:
<application android:name=".App" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme">
报错
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xxxxx/androidx.pluginmgr.DynamicActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
修改DynamicActivity中的android:theme或者让DynamicActivity继承AppCompatActivity均不可,请问有什么办法?
The text was updated successfully, but these errors were encountered: