Native libraries (.so files) are not added to an android project

前端 未结 3 1340
失恋的感觉
失恋的感觉 2021-02-08 21:37

I\'m trying to use sqlitecipher library which requires using native libraries. Their tutorial is very simple but it doesn\'t work for me. Every time I get the following error:

3条回答
  •  南笙
    南笙 (楼主)
    2021-02-08 22:01

    As soon as the native libs are in /libs/armeabi/ all you have to do is to configure the android plugin properly. Something like this:

    
        com.jayway.maven.plugins.android.generation2
        android-maven-plugin
        
             ${project.basedir}/libs
             ...
        
        true
    
    

提交回复
热议问题