TakePhoto icon indicating copy to clipboard operation
TakePhoto copied to clipboard

Android12(SDK:31)不适配

Open skyaccross opened this issue 1 year ago • 1 comments

Android12(SDK:31) 要求 intent-filter 主动声明 android:exported 属性 4.1.0版本依赖的 com.darsh.multipleimageselect:multipleimageselect:1.0.5 这个包里面 有两个Activity 没有 设置该属性,导致无法打包。

skyaccross avatar Aug 09 '22 08:08 skyaccross

可以覆盖啊,哈哈,傻了吧! <activity android:name="com.darsh.multipleimageselect.activities.AlbumSelectActivity" android:configChanges="orientation|screenSize" android:label="@string/app_name" android:theme="@style/MultipleImageSelectTheme" android:exported="true">

    <activity
        android:name="com.darsh.multipleimageselect.activities.ImageSelectActivity"
        android:configChanges="orientation|screenSize"
        android:label="@string/app_name"
        android:theme="@style/MultipleImageSelectTheme"
        android:exported="true">
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

wyba avatar Oct 19 '22 11:10 wyba