Skip to content

Commit

Permalink
chore(build/ios): use static framework
Browse files Browse the repository at this point in the history
  • Loading branch information
outadoc committed Oct 5, 2024
1 parent dcd0d57 commit 7c8839b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app-ios/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ let project = Project(
basedOnDependencyAnalysis: false
),
],
dependencies: []
dependencies: [],
settings: .settings(
base: ["OTHER_LDFLAGS": "$(inherited) -lsqlite3"]
)
),
]
)
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ kotlin {
iosTarget.binaries {
framework {
baseName = "JCShared"
isStatic = false
isStatic = true
}
}
}
Expand Down

0 comments on commit 7c8839b

Please sign in to comment.