How To "link To Alternative Location (linked Folder)" In Android Studio Like In Eclipse?
I have Eclipse project with jni folder and in the jni folder I link a folder (named CDVS_evaluation_framework) with my native C++ classes. How to do the same in Android Studio with
Solution 1:
Unfortunatelly IntelliJ IDEA doesn't have feature of creating links.
I think that you need to add a content root to your module. Just right-click on your application and choose "Open Module Settings" option (or press F4 on your keyboard). After that in section Project Settings->Modules Click + Add Content Root and specify your JNI-stuff directory.
Other way is to modify build.gradle file to make it possible to find the root directory of your JNI code.
Post a Comment for "How To "link To Alternative Location (linked Folder)" In Android Studio Like In Eclipse?"