Skip to content

Commit 4bd5a91

Browse files
committed
set macOS deployment target to 11.0, set iOS deployment target to 14.0
1 parent 8505425 commit 4bd5a91

File tree

15 files changed

+25
-707
lines changed

15 files changed

+25
-707
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -203,16 +203,16 @@ Maven central portal credentials and signing configs are set in `~/.gradle/gradl
203203

204204
```bash
205205
# on Windows: need manual release on website
206-
.\script\publish_windows.bat
206+
.\scripts\publish_windows.bat
207207
# on Linux: need manual release on website
208-
./script/publish_linux.sh
208+
./scripts/publish_linux.sh
209209
# on macOS: need manual release on website
210-
./script/publish_others.sh
210+
./scripts/publish_others.sh
211211
```
212212

213213
#### iOS/macOS cocoapods
214214

215215
```bash
216-
./build_apple.sh
217-
./publish_apple_cocoapods.sh
216+
./scripts/build_apple.sh
217+
./scripts/publish_apple_cocoapods.sh
218218
```

Diff for: buildSrc/src/main/kotlin/Constants.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
object Consts {
22
const val releaseGroup = "com.piasy"
33
const val releaseName = "kmp-xlog"
4-
const val releaseVersion = "1.3.2"
4+
const val releaseVersion = "1.3.4"
55

66
val androidNS = "$releaseGroup.${releaseName.replace('-', '.')}"
77
}

Diff for: kmp-xlog/src/appleMain/frameworks/mars.xcframework/Info.plist

+11-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8+
<key>BinaryPath</key>
9+
<string>mars.framework/mars</string>
810
<key>LibraryIdentifier</key>
911
<string>ios-arm64_x86_64-simulator</string>
1012
<key>LibraryPath</key>
@@ -20,29 +22,33 @@
2022
<string>simulator</string>
2123
</dict>
2224
<dict>
25+
<key>BinaryPath</key>
26+
<string>mars.framework/mars</string>
2327
<key>LibraryIdentifier</key>
24-
<string>macos-arm64_x86_64</string>
28+
<string>ios-arm64</string>
2529
<key>LibraryPath</key>
2630
<string>mars.framework</string>
2731
<key>SupportedArchitectures</key>
2832
<array>
2933
<string>arm64</string>
30-
<string>x86_64</string>
3134
</array>
3235
<key>SupportedPlatform</key>
33-
<string>macos</string>
36+
<string>ios</string>
3437
</dict>
3538
<dict>
39+
<key>BinaryPath</key>
40+
<string>mars.framework/mars</string>
3641
<key>LibraryIdentifier</key>
37-
<string>ios-arm64</string>
42+
<string>macos-arm64_x86_64</string>
3843
<key>LibraryPath</key>
3944
<string>mars.framework</string>
4045
<key>SupportedArchitectures</key>
4146
<array>
4247
<string>arm64</string>
48+
<string>x86_64</string>
4349
</array>
4450
<key>SupportedPlatform</key>
45-
<string>ios</string>
51+
<string>macos</string>
4652
</dict>
4753
</array>
4854
<key>CFBundlePackageType</key>

Diff for: kmp-xlog/src/appleMain/frameworks/mars.xcframework/ios-arm64/mars.framework/Headers/comm/verinfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#ifndef Mars_verinfo_h
33
#define Mars_verinfo_h
44

5-
#define MARS_REVISION "aa0a4099"
5+
#define MARS_REVISION "ed515502"
66
#define MARS_PATH "piasy-kmp"
77
#define MARS_URL ""
8-
#define MARS_BUILD_TIME "2023-06-10 10:04:14"
8+
#define MARS_BUILD_TIME "2025-02-26 08:20:41"
99
#define MARS_TAG ""
1010

1111
#endif
Binary file not shown.

Diff for: kmp-xlog/src/appleMain/frameworks/mars.xcframework/ios-arm64_x86_64-simulator/mars.framework/Headers/comm/verinfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#ifndef Mars_verinfo_h
33
#define Mars_verinfo_h
44

5-
#define MARS_REVISION "aa0a4099"
5+
#define MARS_REVISION "ed515502"
66
#define MARS_PATH "piasy-kmp"
77
#define MARS_URL ""
8-
#define MARS_BUILD_TIME "2023-06-10 10:04:14"
8+
#define MARS_BUILD_TIME "2025-02-26 08:20:41"
99
#define MARS_TAG ""
1010

1111
#endif

Diff for: kmp-xlog/src/appleMain/frameworks/mars.xcframework/macos-arm64_x86_64/mars.framework/Headers/comm/verinfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#ifndef Mars_verinfo_h
33
#define Mars_verinfo_h
44

5-
#define MARS_REVISION "aa0a4099"
5+
#define MARS_REVISION "ed515502"
66
#define MARS_PATH "piasy-kmp"
77
#define MARS_URL ""
8-
#define MARS_BUILD_TIME "2023-06-10 10:08:12"
8+
#define MARS_BUILD_TIME "2025-02-26 08:26:38"
99
#define MARS_TAG ""
1010

1111
#endif
Binary file not shown.

0 commit comments

Comments
 (0)