Not working on android SDK 30 and above
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.
For those who are still stuck, add following lines to manifest file:
<activity android:name="com.darsh.multipleimageselect.activities.ImageSelectActivity" android:exported="false" />
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:
<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>