kaushikgodhani / vocsy_epub_viewer

Apache License 2.0
29 stars 68 forks source link

There was a problem with compileSdkVersion 33 #6

Closed 0MohamedHisham0 closed 1 year ago

0MohamedHisham0 commented 2 years ago

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.

mariofraga84 commented 2 years ago

I have exactly the same problem. did anyone manage to solve it?

kaushikgodhani commented 2 years ago

@mariofraga84 @0MohamedHisham0 we will update soon

MohamadAbdUlaziz938 commented 2 years ago

@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.

mariofraga84 commented 1 year ago

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" />

0MohamedHisham0 commented 1 year ago

This Worked for me