Android Instant App with Native C++ Library not publishing to device/simulator running Android N

后端 未结 1 1590
死守一世寂寞
死守一世寂寞 2021-02-06 13:12

Is there a way to get an Android Instant App working with a native C++ library?

I\'m attempting to publish an Android Instant App to a device/simulator, but ran into pro

相关标签:
1条回答
  • 2021-02-06 13:21

    Does publishing a signed APK work?

    Android Studio 3.0 preview Generate Signed APK feature has a bug currently where the final zip doesn't include all feature apks. Use Gradle SigningConfig in each feature module's gradle file to sign your feature apks

    Does adding the C++ library to both APKs work?

    Not required. Adding to base feature apk should be enough

    The actual crash is known issue with NDK support for Android Instant Apps on Android M/N. The app works on Android O emulator

    0 讨论(0)
提交回复
热议问题