Skip to content

Commit 533bbd6

Browse files
committed
Buy me a coffe image button v2.2.1
1 parent 46b1b51 commit 533bbd6

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

src/MiScaleExporter.MAUI/MiScaleExporter.MAUI.csproj

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,35 @@
4747
</PropertyGroup>
4848

4949
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-android|AnyCPU'">
50-
<ApplicationDisplayVersion>2.2.0</ApplicationDisplayVersion>
51-
<ApplicationVersion>29</ApplicationVersion>
50+
<ApplicationDisplayVersion>2.2.1</ApplicationDisplayVersion>
51+
<ApplicationVersion>30</ApplicationVersion>
5252
<AndroidUseAapt2>True</AndroidUseAapt2>
5353
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
5454
<AndroidPackageFormat>aab</AndroidPackageFormat>
5555
<UseNativeHttpHandler Condition="'$(UseNativeHttpHandler)' == ''">true</UseNativeHttpHandler>
5656
</PropertyGroup>
5757

5858
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-android|AnyCPU'">
59-
<ApplicationDisplayVersion>2.2.0</ApplicationDisplayVersion>
60-
<ApplicationVersion>29</ApplicationVersion>
59+
<ApplicationDisplayVersion>2.2.1</ApplicationDisplayVersion>
60+
<ApplicationVersion>30</ApplicationVersion>
6161
<AndroidPackageFormat>aab</AndroidPackageFormat>
6262
<AndroidUseAapt2>True</AndroidUseAapt2>
6363
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
6464
<UseNativeHttpHandler Condition="'$(UseNativeHttpHandler)' == ''">true</UseNativeHttpHandler>
6565
</PropertyGroup>
6666

67+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
68+
<AndroidPackageFormat>apk</AndroidPackageFormat>
69+
<AndroidUseAapt2>True</AndroidUseAapt2>
70+
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
71+
</PropertyGroup>
72+
73+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'">
74+
<AndroidUseAapt2>True</AndroidUseAapt2>
75+
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
76+
<AndroidPackageFormat>apk</AndroidPackageFormat>
77+
</PropertyGroup>
78+
6779
<ItemGroup>
6880
<!-- App Icon -->
6981
<MauiIcon Include="Resources\AppIcon\launcher_foreground.png" Color="#FFFFFF" />

src/MiScaleExporter.MAUI/Platforms/Android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="29" android:versionName="2.2.0" package="com.lukaszswiderski.MiScaleExporter" android:installLocation="preferExternal">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="30" android:versionName="2.2.1" package="com.lukaszswiderski.MiScaleExporter" android:installLocation="preferExternal">
33
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
44
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
55
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
8.25 KB
Loading

src/MiScaleExporter.MAUI/Views/AboutPage.xaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
Text="{x:Static localization:AppSnippets.OpenHelp}"
4646
TextColor="White" />
4747
<Label FontSize="Small" Text="{x:Static localization:AppSnippets.DoYouLikeAndWouldYouLikeToSupport}" />
48-
<Button
48+
<ImageButton
4949
Margin="0,10,0,0"
50-
BackgroundColor="{StaticResource Primary}"
5150
Command="{Binding OpenCoffeeCommand}"
52-
Text="{x:Static localization:AppSnippets.BuyMeACoffee}"
53-
TextColor="White" />
51+
Source="Images/buymeacoffe.png"
52+
HeightRequest="50"
53+
/>
5454
<Button
5555
Margin="0,10,0,0"
5656
BackgroundColor="{StaticResource Primary}"

0 commit comments

Comments
 (0)