Rohit Chaddha
Rohit Chaddha

Reputation: 1

.so file used in Eclipse

How do use same .so file in android Studio which I have been using in eclipse? Like Rgb change and filters effects so files. It would be a great help if u could provide me the solution.

Upvotes: 0

Views: 217

Answers (1)

user5248371
user5248371

Reputation:

Adding .so Library in Android Studio

  1. Create Folder "jniLibs" inside "src/main/"
  2. Put all your .so libraries inside "src/main/jniLibs" folder
  3. Folder structure looks like,
    |--app:
    |--|--src:
    |--|--|--main
    |--|--|--|--jniLibs
    |--|--|--|--|--armeabi
    |--|--|--|--|--|--.so Files
  4. No extra code requires just sync your project and run your application.

Upvotes: 1

Related Questions