Skip to content

Commit 8c2d819

Browse files
committed
fix
1 parent 7d0106c commit 8c2d819

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

YChat-1.4.0.zip

11.6 KB
Binary file not shown.

YChat.xcframework/Info.plist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
<key>DebugSymbolsPath</key>
99
<string>dSYMs</string>
1010
<key>LibraryIdentifier</key>
11-
<string>ios-arm64</string>
11+
<string>macos-x86_64</string>
1212
<key>LibraryPath</key>
1313
<string>YChat.framework</string>
1414
<key>SupportedArchitectures</key>
1515
<array>
16-
<string>arm64</string>
16+
<string>x86_64</string>
1717
</array>
1818
<key>SupportedPlatform</key>
19-
<string>ios</string>
19+
<string>macos</string>
2020
</dict>
2121
<dict>
2222
<key>DebugSymbolsPath</key>
@@ -38,15 +38,15 @@
3838
<key>DebugSymbolsPath</key>
3939
<string>dSYMs</string>
4040
<key>LibraryIdentifier</key>
41-
<string>macos-x86_64</string>
41+
<string>ios-arm64</string>
4242
<key>LibraryPath</key>
4343
<string>YChat.framework</string>
4444
<key>SupportedArchitectures</key>
4545
<array>
46-
<string>x86_64</string>
46+
<string>arm64</string>
4747
</array>
4848
<key>SupportedPlatform</key>
49-
<string>macos</string>
49+
<string>ios</string>
5050
</dict>
5151
</array>
5252
<key>CFBundlePackageType</key>

ychat/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,13 @@ kotlin {
8888
iosArm64Test.dependsOn(this)
8989
iosSimulatorArm64Test.dependsOn(this)
9090
}
91+
val macosArm64Main by getting
92+
val macosX64Main by getting
93+
val macosMain by creating {
94+
dependsOn(commonMain)
95+
macosArm64Main.dependsOn(this)
96+
macosX64Main.dependsOn(this)
97+
}
9198
val jvmMain by getting
9299
val jvmTest by getting {
93100
dependencies {

0 commit comments

Comments
 (0)