This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
Bump Xamarin.Essentials.Interfaces from 1.7.7 to 1.8.0 #360
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mobile | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Build_Android: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'microsoft' | |
java-version: '17' | |
- name: Setup .NET v6.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Install Boots | |
run : | | |
dotnet tool install --global boots --prerelease | |
boots --alpha Mono | |
boots --alpha Xamarin.Android | |
- name: Restore NuGet | |
run: | | |
nuget restore | |
- name: Remove `#error` From BackendConstants.cs | |
run: | | |
BackendConstants=`find . -name BackendConstants.cs` | |
echo BackendConstants: $BackendConstants | |
sed -i '' "s/#error/\/\/#error/g" "$BackendConstants" | |
- name: Remove `#error` From SignalRConstants.cs | |
run: | | |
SignalRConstants=`find . -name SignalRConstants.cs` | |
echo SignalRConstants: $SignalRConstants | |
sed -i '' "s/#error/\/\/#error/g" "$SignalRConstants" | |
- name: Build Android App | |
run: | | |
msbuild ./TextMood.Droid/TextMood.Droid.csproj /verbosity:normal /p:Configuration=Release |