HERE Maps Android Integration, MISSING_LIBRARIES Error

前端 未结 3 1207
臣服心动
臣服心动 2021-01-18 20:35

I followed the steps https://developer.here.com/mobile-sdks/documentation/android/topics/app-simple-android-studio.html

but I am getting error as : Cannot initializ

3条回答
  •  天命终不由人
    2021-01-18 21:14

    This can happen also If you have another lib with JNI in project. In that case include following code under buildType in build.gradle:

            splits {
                abi {
                    enable true
                    reset()
                    include 'armeabi-v7a'
                    universalApk false
                }
            }
    

提交回复
热议问题