如何在 Android 11 范围存储中使用 .status 文件夹作为 WhatsApp 状态保护程序应用程序?

发布于 2025-01-09 09:48:45 字数 357 浏览 0 评论 0原文

大家好,我制作了一个 WhatsApp 状态保护程序。但在 android 11 中,Google 引入了范围存储,因此我无法在应用程序中获取用户的状态。为此,我使用了 MANAGE_EXTERNAL_STORAGE,但这样我无法在 Google Play 中发布该应用程序。我见过很少有应用程序使用某些权限来授予使用该 .status 文件夹的访问权限。怎么办呢?我已附上应用程序请求的权限的屏幕截图。我是初学者,所以请帮助我。

屏幕截图

Hey guys I had made a WhatsApp status saver app. But in android 11, Google introduced scoped storage so I'm not getting status of the user in the app. For that I have used MANAGE_EXTERNAL_STORAGE but with this I can't publish the app in Google play. I've seen few apps using some permission to grant access to use that .status folder. How to do that ? I have attached the screenshot of the permission that the app was asking. I am a beginner so please help me out.

Screenshot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦罢 2025-01-16 09:48:45

请求用户授予 WhatsApp 状态存储文件夹的权限。

private void checkWhatsAppPermission(){
    // Choose a directory using the system's file picker.
    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
    // Optionally, specify a URI for the directory that should be opened in
    // the system file picker when it loads.

    Uri wa_status_uri = Uri.parse("content://com.android.externalstorage.documents/tree/primary%3AAndroid%2Fmedia/document/primary%3AAndroid%2Fmedia%2Fcom.whatsapp%2FWhatsApp%2FMedia%2F.Statuses");
    intent.putExtra(DocumentsContract.EXTRA_INITIAL_URI, wa_status_uri);
    startActivityForResult(intent, 10001);
}

您可以在此处查看使用上述方法的工作示例。
https://play.google.com/store/apps/详细信息?id=com.larntech.whatsappstatussaver

Request the user to give permission to the WhatsApp status storage folder.

private void checkWhatsAppPermission(){
    // Choose a directory using the system's file picker.
    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
    // Optionally, specify a URI for the directory that should be opened in
    // the system file picker when it loads.

    Uri wa_status_uri = Uri.parse("content://com.android.externalstorage.documents/tree/primary%3AAndroid%2Fmedia/document/primary%3AAndroid%2Fmedia%2Fcom.whatsapp%2FWhatsApp%2FMedia%2F.Statuses");
    intent.putExtra(DocumentsContract.EXTRA_INITIAL_URI, wa_status_uri);
    startActivityForResult(intent, 10001);
}

You can check a working example using above method here.
https://play.google.com/store/apps/details?id=com.larntech.whatsappstatussaver

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文