Skip to content

Commit

Permalink
Bump to latest API
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeLeithead committed Sep 3, 2024
1 parent ab43559 commit cde29fc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
6 changes: 5 additions & 1 deletion Source/LiLo.Lite.UITest/BasePage.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// <copyright file="BasePage.cs" company="InternetWideWorld.com">
// Copyright (c) George Leithead, InternetWideWorld.com
// </copyright>
// Ignore Spelling: oni

namespace LiLo.Lite.UITest
{
Expand Down Expand Up @@ -37,7 +38,10 @@ protected void AssertOnPage(TimeSpan? timeout = default)
string message = "Unable to verify on page: " + GetType().Name;
if (timeout == null)
{
Assert.IsNotEmpty(App.Query(Trait.Current), message);
if (App.Query(Trait.Current).Length == 0)
{
Assert.Fail(message);
}
}
else
{
Expand Down
6 changes: 3 additions & 3 deletions Source/LiLo.Lite.UITest/LiLo.Lite.UITest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
<PackageReference Include="Xamarin.Forms">
<Version>5.0.0.2662</Version>
</PackageReference>
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Xamarin.UITest" Version="4.3.7" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="Xamarin.UITest" Version="4.4.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="63" android:versionName="1.4" package="com.internetwideworld.lilo.lite" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="168" android:versionName="1.4" package="com.internetwideworld.lilo.lite" android:installLocation="auto">
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="33" />
<application android:label="LiLo.Lite" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" />
</manifest>
8 changes: 4 additions & 4 deletions Source/LiLo.Lite/LiLo.Lite.iOS/LiLo.Lite.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@
<Version>7.2.0.564</Version>
</PackageReference>
<PackageReference Include="Microsoft.AppCenter.Analytics">
<Version>4.5.3</Version>
<Version>5.0.5</Version>
</PackageReference>
<PackageReference Include="Microsoft.AppCenter.Crashes">
<Version>4.5.3</Version>
<Version>5.0.5</Version>
</PackageReference>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2515" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.3" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2662" />
<PackageReference Include="Xamarin.Essentials" Version="1.8.1" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion Source/LiLo.Lite/LiLo.Lite/LiLo.Lite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<LangVersion>9.0</LangVersion>
<Description>LiLo 'lite' is a light-weight version of LiLo. The mobile application is written using Xamarin.Forms and integrates with the Binance WebSockets service to provide live real-time cryptocurrency market information, and using a WebView to display charting information from TradingView.</Description>
<Copyright>2021 George Leithead, InternetWideWorld.com</Copyright>
<Copyright>2024 George Leithead, InternetWideWorld.com</Copyright>
<PackageProjectUrl>https://github.com/GeorgeLeithead/LiLo.Lite</PackageProjectUrl>
<RepositoryUrl>https://github.com/GeorgeLeithead/LiLo.Lite</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
Expand All @@ -19,6 +19,8 @@
<Version>1.4.0</Version>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AndroidUseLatestPlatformSdk>True</AndroidUseLatestPlatformSdk>
<Title>LiLo.Lite</Title>
<PackageReleaseNotes>Bump up to latest API version</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit cde29fc

Please sign in to comment.