MultipleImageSelect icon indicating copy to clipboard operation
MultipleImageSelect copied to clipboard

Not working on android SDK 30 and above

Open wrteam-vimal opened this issue 3 years ago • 3 comments

In the latest version its not working at all its throws a

##android:exported needs to be explicitly specified for element <activity#com.darsh.multipleimageselect.activities.ImageSelectActivity>. 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.

wrteam-vimal avatar Jan 29 '22 04:01 wrteam-vimal

For those who are still stuck, add following lines to manifest file:

<activity android:name="com.darsh.multipleimageselect.activities.ImageSelectActivity" android:exported="false" />

ParitoshVaidya avatar Dec 09 '22 04:12 ParitoshVaidya

Still stuck adding exported tag is not working for me . Please help and provide a solution I got Manifest merger failed : android:exported needs to be explicitly specified for element <activity#com.darsh.multipleimageselect.activities.ImageSelectActivity>. 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.

and tag in manifest file is:

rupsi avatar Jun 05 '23 14:06 rupsi

<activity android:name="com.darsh.multipleimageselect.activities.AlbumSelectActivity"

        android:theme="@style/MultipleImageSelectTheme"
        android:exported="false">
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

rupsi avatar Jun 05 '23 14:06 rupsi