Android Q適配(非SDK介面管控)

wp3355168發表於2019-04-19

介紹

developer.android.google.cn/distribute/…

  • Android P

    • Blacklist 無論targetVersion如何,使用這些api,系統將會丟擲錯誤
    • Greylist 如果targetVersion == 28 將會跟Blacklist一樣,如果不是則可以正常使用
    • Whitelist 可以正常使用
  • Android Q

    • greylist 本系統標記為不支援呼叫。但是無限制,可以正常使用
    • Blacklist 無論targetVersion如何,使用這些api,系統將會丟擲錯誤
    • greylist-max-o 受限制的灰名單。targetVersion <= 27 可以正常訪問
    • greylist-max-p 受限制的灰名單。targetVersion <= 28 可以正常訪問

變更

Android Q 更新了黑名單、黑灰名單的介面,增加了一些新的名字。 如在 Android P 中被限制的黑灰色名單:darkgrey list 現在叫做 greylist-max-o, 在 Android Q 中被限制的非SDK介面應該稱為 greylist-max-p

  • blacklist 無論targetVersion如何,使用這些api,系統將會丟擲錯誤

  • greylist 本系統標記為不支援呼叫。但是無限制,可以正常使用

  • greylist-max-o 受限制的灰名單,targetVersion <= 27 可以正常訪問,targetVersion > 27(Android P,9,Q)不能使用

  • greylist-max-p 受限制的灰名單,targetVersion <= 28 可以正常訪問,targetVersion > 28(Android Q)不能使用

check工具

把veridex-mac.zip下載下來進行下面操作進行check檢查

developer.android.google.cn/distribute/… android.googlesource.com/platform/pr…

Linux x64

Download veridex-linux.zip, unzip the file and run with:

./appcompat.sh --dex-file=test.apk

macOS

Download veridex-mac.zip, unzip the file and run with:

./appcompat.sh --dex-file=test.apk

相關文章