Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit b4f33dc

Browse files
committed
Update sample
1 parent 59b8147 commit b4f33dc

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

src/SampleApp/MainActivity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void SetupBlurView()
7171
.SetHasFixedTransformationMatrix(true);
7272

7373
int initialProgress = (int)(radius * step);
74-
radiusSeekBar.SetProgress(initialProgress, true);
74+
radiusSeekBar.Progress = initialProgress;
7575

7676
radiusSeekBar.ProgressChanged += (sender, args) =>
7777
{

src/SampleApp/Properties/AndroidManifest.xml

100755100644
File mode changed.

src/SampleApp/SampleApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<AndroidUseLatestPlatformSdk>True</AndroidUseLatestPlatformSdk>
2020
<DevInstrumentationEnabled>True</DevInstrumentationEnabled>
2121
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
22-
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
22+
<TargetFrameworkVersion>v8.1</TargetFrameworkVersion>
2323
<NuGetPackageImportStamp>
2424
</NuGetPackageImportStamp>
2525
</PropertyGroup>
@@ -42,7 +42,7 @@
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
45-
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
45+
<EnableProguard>true</EnableProguard>
4646
</PropertyGroup>
4747
<ItemGroup>
4848
<Reference Include="Mono.Android" />

src/Xamarin.BlurView/Xamarin.BlurView.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<AssemblyName>Xamarin.BlurView</AssemblyName>
1515
<FileAlignment>512</FileAlignment>
1616
<AndroidUseLatestPlatformSdk>True</AndroidUseLatestPlatformSdk>
17-
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
17+
<TargetFrameworkVersion>v8.1</TargetFrameworkVersion>
1818
<NuGetPackageImportStamp>
1919
</NuGetPackageImportStamp>
2020
<PackOnBuild>true</PackOnBuild>
@@ -37,10 +37,8 @@
3737
<DefineConstants>DEBUG;TRACE</DefineConstants>
3838
<ErrorReport>prompt</ErrorReport>
3939
<WarningLevel>4</WarningLevel>
40-
<DocumentationFile>bin\Debug\Xamarin.BlurView.xml</DocumentationFile>
4140
</PropertyGroup>
4241
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43-
<DebugType>pdbonly</DebugType>
4442
<Optimize>true</Optimize>
4543
<OutputPath>bin\Release\</OutputPath>
4644
<DefineConstants>TRACE</DefineConstants>

0 commit comments

Comments
 (0)