Upcoming restrictions on the USE_FULL_SCREEN_INTENT permission might break the SDK

Description
The newest Android Meeting SDK still uses the ** USE_FULL_SCREEN_INTENT**. Regarding to Google, this permission will be denied from end of the year to all existing apps (which are not clock apps).

How does Zoom intent do handle that case?

Which Android Meeting SDK version?
v6.0.12.22275

Additional context
Message from Google attached:
You are receiving this email because you are using the USE_FULL_SCREEN_INTENT permission in your app and there are upcoming platform changes that you should be prepared for. To prevent ad spam and credential phishing, only apps that have calling or alarm functionalities will have the permission enabled by default. Otherwise, you must get user permission to use the USE_FULL_SCREEN_INTENT permission.

The use of full-screen intent notifications is intended to share high-priority messages that require the user’s immediate attention. All developers using this permission are required to complete the Play Console declaration starting from 31 May 2024, to indicate if your app has a permitted core functionality and qualifies for default enablement of the USE_FULL_SCREEN_INTENT permission. Starting on 31 October 2024, all apps that did not complete the declaration, or have not been approved for default enablement, will need to surface a prompt to users to grant permission on new installs on devices running Android 14 or above, and downgrade the app experience gracefully if permission is denied.

1 Like

@donte.zoom @chunsiong.zoom
Do you happen to have any idea about this upcoming permission policy change? Our app is facing similar issue as well and would like to know whether the SDK will be affected & what Zoom plans to do for this change. Thank you!

Hi, I would like to follow up with this issue to see if anyone has any insights about this upcoming policy change.

Hi, I would like to follow up to see if you have any updates regarding this upcoming permission restriction

Hi @yuyang.chen and @code_defender123
Thanks for reaching out to us. Allow me some time to get more information about this and I will get back to you with an update shortly
Cheers,
Elisa

1 Like

Hey @elisa.zoom ! any updates?

it is quite important for us to know your stand on that issue, since Google will enforce it soon.

Hi @code_defender123 @yuyang.chen ,

We’re removing this permission in our SDK in version 6.1.10 which will be released in August.
Thank you.

Elaine

That’s great, thank you!

1 Like

Hey @elaine.ku I will like to know about it since i’m unable to update app on play store .

Hi @elaine.ku Is there any news regarding this for version 6.1.10? Thanks

Hey @elaine.ku , @elisa.zoom ,

Do you have any news regarding the new SDK version?

Thanks

Hi @mmwlada @juan.cruz ,

The version 6.1.10 will be released at the end of August. We’ll publish the release note on Meeting SDK - Android Changelog when the version is released.
Thank you.

Elaine

2 Likes

we are still waiting since we cannot push app update in playstore

USE_FULL_SCREEN_INTENT still not removed in 6.1.10.23878

Hi @minyushov ,

After confirming with the team, they remove the permission in the incorrect file which cause the issue. We’ll remove it in 6.2.0 and double-check before we release it. Sorry for the inconvenience.
Thank you.

Elaine

Hey @elaine.ku, hope you are fine,

I tried to update Zoom SDK to 6.1.10 in my app. Still, unfortunately, Google rejected the update again for the same reason which is using USE_FULL_SCREEN_INTENT permission, and now we need to update our app ASAP, so can you please help me with any estimation about the new version 6.2.0 and when it will be released?

Thanks a lot in advance for your patience and cooperation

You could try adding this code to your AndroidManifest:

  <uses-permission
    android:name="android.permission.USE_FULL_SCREEN_INTENT"
    tools:node="remove" />

It should remove the permission from the merged manifest.

2 Likes

Thanks a lot @minyushov , I will try it