box-android-sdk icon indicating copy to clipboard operation
box-android-sdk copied to clipboard

Android Api 30 package visibility changes

Open iyosifov opened this issue 4 years ago • 0 comments

The SDK seems to specially integrate with the android box app and checks whether it's installed. For this to work in apps targeting api 30 you need in the manifest:

<queries>
    <intent>
        <action android:name="com.box.android.action.AUTHENTICATE_VIA_BOX_APP" />
    </intent>
</queries>

If you add this to your android library manifest, it will be merged into the containing app.

https://developer.android.com/training/package-visibility

iyosifov avatar Jul 08 '21 16:07 iyosifov