Android Instant Apps - Can not “Run unverified software, run arbitrary native code”. Only Instant Apps runtime

后端 未结 3 1384
野趣味
野趣味 2021-01-18 04:51

Android Instant Apps documentation states in the restricted features section that it can not:

Run unverified software, run ar

相关标签:
3条回答
  • 2021-01-18 05:03

    You can use third-party libraries. What you can't do, for example, is download a binary from your server at runtime and run that.

    0 讨论(0)
  • 2021-01-18 05:09

    An unofficial answer from an official Google representative was that with Instant Apps, unlike normal apps, there is no technical way to run downloaded code, or load classes dynamically. For normal apps, the restriction is written in Play Store Developer Policy, and is enforced only on Play Store via standard security monitoring procedures.

    0 讨论(0)
  • 2021-01-18 05:20

    This statement:

    Prepare your app > Restricted features

    Run unverified software, run arbitrary native code, or load code dynamically other than the code provided by the Instant Apps runtime.

    Refers to APKs, libraries, or code that is sideloaded, not packaged within the original apk.

    unverified software

    • In other words, only the signed apk and its contents are allowed.

    arbitrary native code

    • Everything must run from your apk or be provided by the framework.

    load code dynamically

    • Such as use of DexClassLoader to retrieve stuff that’s not already packaged with the apk.
    0 讨论(0)
提交回复
热议问题