Recent searches


No recent searches

Android Zendesk SDK doesn't support android:exported for Android 12



Android Zendesk SDK doesn't support android:exported for Android 12. For example

<activity
android:name="zendesk.messaging.MessagingActivity"
android:windowSoftInputMode="adjustResize" />

com.zendesk:support:5.0.6

0

4

4 comments

I think using 5.0.5 may working for you.

0


Nope. See Manifest from

com.zendesk:support:5.0.6

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.zendesk.sdk"
android:versionCode="53"
android:versionName="5.0.6" >

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="30" />

<application tools:ignore="UnusedAttribute" >
<activity
android:name="zendesk.support.request.RequestActivity"
android:windowSoftInputMode="adjustResize" />
<activity
android:name="zendesk.support.requestlist.RequestListActivity"
android:label="@string/request_list_activity_title" />

<receiver
android:name="zendesk.support.DeepLinkingBroadcastReceiver"
android:exported="false" >
<intent-filter>
<action android:name="zendesk.support" />
</intent-filter>
</receiver>

<provider
android:name="zendesk.support.SupportSdkStartupProvider"
android:authorities="${applicationId}.zendesk.support.SupportSdkStartupProvider"
android:enabled="true"
android:exported="false" />
</application>

</manifest>

and zendesk.messaging:5.2.3

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="zendesk.messaging"
android:versionCode="53"
android:versionName="5.2.3" >

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="30" />

<application android:supportsRtl="true" >
<activity
android:name="zendesk.messaging.MessagingActivity"
android:windowSoftInputMode="adjustResize" />
</application>

</manifest>

0


image avatar

Greg Katechis

Zendesk Developer Advocacy

Thanks for raising this issue! I've reached out to our SDK team to provide guidance, as this is out of my area of expertise. One clarifying question: was this previously working in Android 11? I'm assuming so, just want to be sure.

As soon as I hear back from that team, I'll drop an update here!

0


image avatar

Greg Katechis

Zendesk Developer Advocacy

One more question, could you let me know what the impact of this is on your app? Just want to make sure I have as much information as possible.

0


Please sign in to leave a comment.

Didn't find what you're looking for?

New post