Paul Iluhin

Results 3 comments of Paul Iluhin

I don't understand how it works.. but.. add ``` commandLineArgs.add("--additional-include-directories=" + workingDir + "/src/main/Il2CppOutputProject/IL2CPP/external/bdwgc/include") commandLineArgs.add("--additional-include-directories=" + workingDir + "/src/main/Il2CppOutputProject/IL2CPP/libil2cpp/include") ``` to android\unityLibrary\build.gradle after ``` def commandLineArgs = [] commandLineArgs.add("--compile-cpp") commandLineArgs.add("--platform=Android")...

> Try this commandLineArgs ``` def commandLineArgs = [] commandLineArgs.add("--compile-cpp") commandLineArgs.add("--platform=Android") commandLineArgs.add("--architecture=" + architecture) commandLineArgs.add("--outputpath=" + workingDir + "/src/main/jniLibs/" + abi + "/libil2cpp.so") commandLineArgs.add("--libil2cpp-static") commandLineArgs.add("--baselib-directory=" + workingDir + "/src/main/jniStaticLibs/" +...

> could you share the full gradle file ``` // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN apply plugin: 'com.android.library' dependencies { implementation fileTree(dir: 'libs',...