Skip to content

Commit

Permalink
set macOS deployment target to 11.0, set iOS deployment target to 14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Piasy committed Feb 26, 2025
1 parent 8505425 commit 4bd5a91
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 707 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,16 +203,16 @@ Maven central portal credentials and signing configs are set in `~/.gradle/gradl

```bash
# on Windows: need manual release on website
.\script\publish_windows.bat
.\scripts\publish_windows.bat
# on Linux: need manual release on website
./script/publish_linux.sh
./scripts/publish_linux.sh
# on macOS: need manual release on website
./script/publish_others.sh
./scripts/publish_others.sh
```

#### iOS/macOS cocoapods

```bash
./build_apple.sh
./publish_apple_cocoapods.sh
./scripts/build_apple.sh
./scripts/publish_apple_cocoapods.sh
```
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Constants.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Consts {
const val releaseGroup = "com.piasy"
const val releaseName = "kmp-xlog"
const val releaseVersion = "1.3.2"
const val releaseVersion = "1.3.4"

val androidNS = "$releaseGroup.${releaseName.replace('-', '.')}"
}
16 changes: 11 additions & 5 deletions kmp-xlog/src/appleMain/frameworks/mars.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>mars.framework/mars</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
Expand All @@ -20,29 +22,33 @@
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>mars.framework/mars</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>mars.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>mars.framework/mars</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>mars.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>macos</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#ifndef Mars_verinfo_h
#define Mars_verinfo_h

#define MARS_REVISION "aa0a4099"
#define MARS_REVISION "ed515502"
#define MARS_PATH "piasy-kmp"
#define MARS_URL ""
#define MARS_BUILD_TIME "2023-06-10 10:04:14"
#define MARS_BUILD_TIME "2025-02-26 08:20:41"
#define MARS_TAG ""

#endif
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#ifndef Mars_verinfo_h
#define Mars_verinfo_h

#define MARS_REVISION "aa0a4099"
#define MARS_REVISION "ed515502"
#define MARS_PATH "piasy-kmp"
#define MARS_URL ""
#define MARS_BUILD_TIME "2023-06-10 10:04:14"
#define MARS_BUILD_TIME "2025-02-26 08:20:41"
#define MARS_TAG ""

#endif
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#ifndef Mars_verinfo_h
#define Mars_verinfo_h

#define MARS_REVISION "aa0a4099"
#define MARS_REVISION "ed515502"
#define MARS_PATH "piasy-kmp"
#define MARS_URL ""
#define MARS_BUILD_TIME "2023-06-10 10:08:12"
#define MARS_BUILD_TIME "2025-02-26 08:26:38"
#define MARS_TAG ""

#endif
Binary file not shown.
Loading

0 comments on commit 4bd5a91

Please sign in to comment.