File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -165,13 +165,11 @@ if (Os.isFamily(Os.FAMILY_MAC)) {
165165 Os .isFamily(Os .FAMILY_MAC )
166166 }
167167 val iosTask = (kotlin.targets.getByName(" ios" ) as KotlinNativeTarget ).binaries.getFramework(" RELEASE" )
168- val iosArmv7Task = (kotlin.targets.getByName(" iosArmv7" ) as KotlinNativeTarget ).binaries.getFramework(" RELEASE" )
169168 dependsOn(iosTask.linkTask)
170- dependsOn(iosArmv7Task.linkTask)
171169 platform.set(" device" )
172170
173- inputFrameworks.setFrom(project.files(iosTask.outputFile, iosArmv7Task.outputFile ))
174- inputFrameworkDSYMs.setFrom(project.files(iosTask.outputFile.path+ " .dSYM" , iosArmv7Task.outputFile.path + " .dSYM " ))
171+ inputFrameworks.setFrom(project.files(iosTask.outputFile))
172+ inputFrameworkDSYMs.setFrom(project.files(iosTask.outputFile.path+ " .dSYM" ))
175173 }
176174
177175 val assembleXCFramework by tasks.registering {
You can’t perform that action at this time.
0 commit comments