Closed 0MohamedHisham0 closed 1 year ago
I have exactly the same problem. did anyone manage to solve it?
@mariofraga84 @0MohamedHisham0 we will update soon
@0MohamedHisham0 @mariofraga84 you have to add eported:true for every activity in folio reader , I faced the problem lastly and fix it by rewriting every activity used in #folioreader in my project manifest then add to every activity exported:true . good luck.
solution
add in android:exported="true"
<activity android:name=".MainActivity" android:exported="true"
and add
<activity android:name="com.folioreader.ui.activity.SearchActivity" android:exported="true" tools:node="merge" />
This Worked for me
android:exported needs to be explicitly specified for element <activity#com.folioreader.ui.activity.SearchActivity>. Apps targeting Android 12 and higher are required to specify an explicit value for
android:exported
when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.