filestack-android icon indicating copy to clipboard operation
filestack-android copied to clipboard

Update AndroidManifest.xml for Android S

Open caraesten opened this issue 4 years ago • 2 comments

The latest version of Android requires all activities that use an intent-filter to specify whether or not they're exported (https://developer.android.com/about/versions/12/behavior-changes-12#exported).

Currently, anyone using filestack-android will have their build broken when compiling for S

caraesten avatar May 18 '21 23:05 caraesten

Hi!

I'm working on an application that is aiming for the version 32 of the android SDK, so the master branch breaks my build currently. Already tested the branch from this PR and now everything is working properly! So it would be great if this PR is merged. Is that possible?

@scana I noticed that you made the last release. Are you the maintainer of this project or can you point me to who is the current maintainer? Much appreciated 😄

shiik0 avatar May 06 '22 15:05 shiik0

@shiik0 hi! Sorry, I am no a longer maintainer of this project - not sure if anyone took over after I left.

I would suggest forking this repository on your own or contacting user support through https://www.filestack.com/.

As an alternative, you can re-declare this Activity in your main AndroidManifest.xml and the end result should be merged:

<activity
  android:name="com.filestack.android.FsActivity"
  android:exported="true"/>

scana avatar May 18 '22 14:05 scana