Has anyone managed to add `SQLCipher` ? Went throu...
# multiplatform
a
Has anyone managed to add
SQLCipher
? Went through example: https://github.com/touchlab-lab/KaMPKitSQLCipher . Project actually builds on Xcode and works properly, but now I am having problems with
publishToMavenLocal
. When I run
gradlew publishToMavenLocal
this error is getting thrown:
Copy code
Execution failed for task ':KME:cinteropSQLCipherIos'.
> Cannot perform cinterop processing for module SQLCipher: cannot determine headers location.
k
are you publishing your .klibs, or only your android artifacts?
a
Only Android artifacts. Found a dirty workaround by adding to settings.gradle:
Copy code
startParameter.excludedTaskNames += "cinteropSQLCipherIos"
k
if you're only publishing android artifacts then that task should not be run. it sounds like there's an issue in determining task dependencies
👌 1