Android Instant App With Native C++ Library Not Publishing To Device/simulator Running Android N
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 problems with m
Solution 1:
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
Post a Comment for "Android Instant App With Native C++ Library Not Publishing To Device/simulator Running Android N"