Skip to content

Commit 12885d4

Browse files
author
David Crow
committed
Fix ci
1 parent 50aac70 commit 12885d4

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

MauiSample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ tasks.register("restore", Exec) {
1212
tasks.register("buildSample", Exec) {
1313
dependsOn restore
1414

15-
commandLine "dotnet", "build", "-c", "Release", "--no-dependencies", "-f", "net8.0-android", "MauiSample.csproj"
15+
commandLine "dotnet", "build", "-c", "Release", "--no-dependencies", "-f", "net10.0-android", "MauiSample.csproj"
1616
}

MauiSample/run-ios.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ cd "$PROJECT_DIR"
146146
147147
# Clean previous builds to ensure fresh build
148148
echo "🧹 Cleaning previous builds..."
149-
dotnet clean MauiSample.csproj -f net9.0-ios -v quiet
149+
dotnet clean MauiSample.csproj -f net10.0-ios -v quiet
150150
151151
# Build the app
152-
dotnet build MauiSample.csproj -f net9.0-ios \
152+
dotnet build MauiSample.csproj -f net10.0-ios \
153153
-p:RuntimeIdentifier=iossimulator-arm64 \
154154
-p:ValidateXcodeVersion=false \
155155
-p:CodesignEntitlements="" \
@@ -168,7 +168,7 @@ echo "🗑️ Uninstalling existing app..."
168168
xcrun simctl uninstall "$DEVICE_ID" com.urbanairship.richpush 2>/dev/null || true
169169
170170
echo "📱 Installing app to simulator (Device: $DEVICE_ID)..."
171-
xcrun simctl install "$DEVICE_ID" "$PROJECT_DIR/bin/Debug/net9.0-ios/iossimulator-arm64/MauiSample.app"
171+
xcrun simctl install "$DEVICE_ID" "$PROJECT_DIR/bin/Debug/net10.0-ios/iossimulator-arm64/MauiSample.app"
172172
173173
echo "🚀 Launching app..."
174174

docs/mainpage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# Airship .NET
22

33
The Airship .NET SDK exposes a common subset of functionality between
4-
the iOS and Android SDKs. This library is built against .NET 8.0, and can be used
4+
the iOS and Android SDKs. This library is built against .NET 10.0, and can be used
55
within shared codebases (e.g., a MAUI app).
66

77
## Compatibility
88

99
The Airship .NET SDK targets the following platforms:
10-
- `net8.0`
11-
- `net8.0-android`
12-
- `net8.0-ios`
10+
- `net10.0`
11+
- `net10.0-android`
12+
- `net10.0-ios`
1313

1414
The Airship .NET SDK is compatible with:
1515
- Android 5.0 (API 21) or higher.
16-
- iOS 14 or higher, using the latest supported release of Xcode.
16+
- iOS 16 or higher, using the latest supported release of Xcode.
1717

1818
## Resources
1919
- [Getting started guide](https://docs.airship.com/platform/mobile/setup/sdk/maui/)

0 commit comments

Comments
 (0)