To fix this, you simply need to add this line into the AndroidManifest.xml under Assets/Plugins/Android, setting the targetSDKversion to a value lower than 23 (e.g. set it to 21 or 22):

<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="22" />

This will make it work on any device (including those on Android 6.0, as well as the ones on older versions, down to the minSDKVersion you have set)

相关文章:

  • 2021-06-15
  • 2022-12-23
  • 2021-06-21
  • 2021-08-06
  • 2022-01-09
  • 2022-12-23
  • 2021-12-24
猜你喜欢
  • 2021-04-01
  • 2021-12-16
  • 2021-12-24
  • 2021-06-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
相关资源
相似解决方案