英文:
which apps should have this flag enable "REQUIRE_SECURE_ENV"
问题
Google今天更新了其政策,要求在清单文件中添加新属性 "REQUIRE_SECURE_ENV",在他们的文档 这里 中提到。我不明白哪种类型的应用程序正在使用 "on-device Android container",以及如何知道我的应用程序(类别:实用工具)是否需要在清单中添加此属性。是否有人可以详细解释一下?谢谢。
英文:
Google has updated its policy today and require this new property in manifest file "REQUIRE_SECURE_ENV" mentioned in their document here. I don't understand which sort of application are using "on-device Android container" and how do I know whether my application(Category: Utility) is requiring this property in manifest or not?. Can anyone please elaborate about it. Thanks.
答案1
得分: 2
如果您的应用程序将第三方APK加载到其自己的应用程序空间中,并且这些应用程序由于您的应用程序拦截和可能代理调用而合理地执行,就像它们安装在正常的Android环境中一样,那么您的应用程序将被视为在设备上运行的Android容器应用程序。
一个常见的设备上Android容器技术示例是"Anbox"(Android in a Box)。Anbox允许您在基于Linux的系统上运行Android应用程序,例如在Ubuntu或其他Linux发行版上运行Android应用程序。它使用容器化技术,如LXC(Linux容器),来创建一个安全且隔离的环境,用于运行Android应用程序。
应用程序可以在其清单中添加此标志,以指示它们不希望在设备上的Android容器中运行。
英文:
If your app loads third-party APKs into its own app space, and those apps reasonably execute as if they are installed in a normal Android environment due to your app intercepting and potentially proxying calls, your app is considered an on-device Android container app.
One popular example of an on-device Android container technology is "Anbox" (Android in a Box). Anbox allows you to run Android applications on a Linux-based system, such as Android apps on Ubuntu or other Linux distributions. It uses containerization technology, such as LXC (Linux Containers), to create a secure and isolated environment for running Android applications.
Apps can add this flag to their manifest to indicate they don't want to be run in an On-device Android Container
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论