Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Estimated effort
Unintended behavior
View staffing
Description
Failed to generate cinterop for :composeApp:cinteropGoogle_Maps_iOS_UtilsIosArm64: Process 'command '/Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java'' finished with non-zero exit value 1
:composeApp:iosX64Test: cinterop file: /Users/vytenis/AndroidStudioProjects/Aplink-Mane/composeApp/build/classes/kotlin/iosX64/main/cinterop/composeApp-cinterop-Google_Maps_iOS_Utils.klib does not exist
my Build.gradle:
cocoapods {
summary = "Some description for the Shared Module"
homepage = "Link to the Shared Module homepage"
version = "1.0"
ios.deploymentTarget = "15.4"
podfile = project.file("../iosApp/Podfile")
framework {
baseName = "composeApp"
isStatic = true
}
pod("GoogleMaps"){
extraOpts += listOf("-compiler-option", "-fmodules")
}
pod("Google-Maps-iOS-Utils"){
extraOpts += listOf("-compiler-option", "-fmodules")
}
}
My PodFile:
source '
target 'iosApp' do
use_frameworks!
platform :ios, '15.4'
pod 'composeApp', :path => '../composeApp'
pod 'GoogleMaps', '9.0.0'
pod 'Google-Maps-iOS-Utils', '6.0.0'
end