yusuf3000
kotlin-platform-native
konan
ld: framework not found xxxxx
components.main{ dependencies{ cinterop('Framework'){ def productsDir = new File("Framework").absolutePath compilerOpts "-F${productsDir}" linkerOpts "-F${productsDir}" includeDirs "${productsDir}/Framework.framework/Headers" } } }
drew
extraOpts "-linker-options", "-F${productsDir}"
compilations.main
drofwarcs
language = Objective-C headers = AFURLSessionManager.h AFURLResponseSerialization.h AFHTTPSessionManager.h compilerOpts = -framework AFNetworking linkerOpts = -framework AFNetworking
components.main { def productsDir = new File("").absolutePath targets = ['ios_arm64', 'ios_x64'] outputKinds = [EXECUTABLE] allTargets { linkerOpts '-rpath', '@executable_path/Frameworks' linkerOpts "-F${productsDir}" } dependencies { cinterop('AFNetworking'){ packageName 'com.afnetworking' compilerOpts "-F${productsDir}" linkerOpts "-F${productsDir}" includeDirs{ allHeaders "${productsDir}/AFNetworking.framework/Headers" } } } }
A modern programming language that makes developers happier.