Skip to content

Commit 6d9a459

Browse files
authored
Merge pull request #3 from LakshmiNatarajan21/XAMARIN-39158
XAMARIN-39158 Sample updated to latest nuget
2 parents 6e47c59 + 8dc3e74 commit 6d9a459

File tree

7 files changed

+75
-15
lines changed

7 files changed

+75
-15
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.SfListViewSample">
3-
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="27" />
4-
<application android:label="SfListViewSample.Android"></application>
5-
</manifest>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.SfListViewSample">
3+
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" />
4+
<application android:label="SfListViewSample.Android"></application>
5+
</manifest>

LoadMore_MVVM/SfListViewSample/SfListViewSample.Android/SfListViewSample.Android.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
1717
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
1818
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
19-
<TargetFrameworkVersion>v8.1</TargetFrameworkVersion>
19+
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
2020
<NuGetPackageImportStamp>
2121
</NuGetPackageImportStamp>
2222
</PropertyGroup>
@@ -49,9 +49,9 @@
4949
</ItemGroup>
5050
<ItemGroup>
5151
<PackageReference Include="Syncfusion.Xamarin.SfListView">
52-
<Version>17.1.0.53</Version>
52+
<Version>18.4.0.44</Version>
5353
</PackageReference>
54-
<PackageReference Include="Xamarin.Forms" Version="3.6.0.344457" />
54+
<PackageReference Include="Xamarin.Forms" Version="4.5.0.617" />
5555
</ItemGroup>
5656
<ItemGroup>
5757
<Compile Include="MainActivity.cs" />
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("SfListViewSample.UWP")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("SfListViewSample.UWP")]
13+
[assembly: AssemblyCopyright("Copyright © 2015")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Version information for an assembly consists of the following four values:
18+
//
19+
// Major Version
20+
// Minor Version
21+
// Build Number
22+
// Revision
23+
//
24+
// You can specify all the values or you can default the Build and Revision Numbers
25+
// by using the '*' as shown below:
26+
// [assembly: AssemblyVersion("1.0.*")]
27+
[assembly: AssemblyVersion("1.0.0.0")]
28+
[assembly: AssemblyFileVersion("1.0.0.0")]
29+
[assembly: ComVisible(false)]
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!--
2+
This file contains Runtime Directives used by .NET Native. The defaults here are suitable for most
3+
developers. However, you can modify these parameters to modify the behavior of the .NET Native
4+
optimizer.
5+
6+
Runtime Directives are documented at http://go.microsoft.com/fwlink/?LinkID=391919
7+
8+
To fully enable reflection for App1.MyClass and all of its public/private members
9+
<Type Name="App1.MyClass" Dynamic="Required All"/>
10+
11+
To enable dynamic creation of the specific instantiation of AppClass<T> over System.Int32
12+
<TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" />
13+
14+
Using the Namespace directive to apply reflection policy to all the types in a particular namespace
15+
<Namespace Name="DataClasses.ViewModels" Seralize="All" />
16+
-->
17+
18+
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
19+
<Application>
20+
<!--
21+
An Assembly element with Name="*Application*" applies to all assemblies in
22+
the application package. The asterisks are not wildcards.
23+
-->
24+
<Assembly Name="*Application*" Dynamic="Required All" />
25+
26+
27+
<!-- Add your application specific runtime directives here. -->
28+
29+
30+
</Application>
31+
</Directives>

LoadMore_MVVM/SfListViewSample/SfListViewSample.UWP/SfListViewSample.UWP.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<DefaultLanguage>en-US</DefaultLanguage>
1313
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
1414
<TargetPlatformVersion>10.0.17763.0</TargetPlatformVersion>
15-
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
15+
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
1616
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
1717
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
1818
<FileAlignment>512</FileAlignment>
@@ -144,9 +144,9 @@
144144
</ItemGroup>
145145
<ItemGroup>
146146
<PackageReference Include="Syncfusion.Xamarin.SfListView">
147-
<Version>17.1.0.53</Version>
147+
<Version>18.4.0.44</Version>
148148
</PackageReference>
149-
<PackageReference Include="Xamarin.Forms" Version="3.6.0.344457" />
149+
<PackageReference Include="Xamarin.Forms" Version="4.5.0.617" />
150150
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.0.6" />
151151
</ItemGroup>
152152
<ItemGroup>

LoadMore_MVVM/SfListViewSample/SfListViewSample.iOS/SfListViewSample.iOS.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@
148148
</ItemGroup>
149149
<ItemGroup>
150150
<PackageReference Include="Syncfusion.Xamarin.SfListView">
151-
<Version>17.1.0.53</Version>
151+
<Version>18.4.0.44</Version>
152152
</PackageReference>
153-
<PackageReference Include="Xamarin.Forms" Version="3.6.0.344457" />
153+
<PackageReference Include="Xamarin.Forms" Version="4.5.0.617" />
154154
</ItemGroup>
155155
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
156156
<ItemGroup>

LoadMore_MVVM/SfListViewSample/SfListViewSample/SfListViewSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
</ItemGroup>
6363

6464
<ItemGroup>
65-
<PackageReference Include="Syncfusion.Xamarin.SfListView" Version="17.1.0.53" />
66-
<PackageReference Include="Xamarin.Forms" Version="3.6.0.344457" />
65+
<PackageReference Include="Syncfusion.Xamarin.SfListView" Version="18.4.0.44" />
66+
<PackageReference Include="Xamarin.Forms" Version="4.5.0.617" />
6767
</ItemGroup>
6868

6969
<ItemGroup>

0 commit comments

Comments
 (0)