Hello folks,
I just installed visual Studio Community 2017 Xamarin and downloaded the Pikkart AR SDK.
i plan on doing an android app for 2D objects recognition. (Android 6.0 API23)
So, i followed the instructions here:
https://components.xamarin.com/gettingstarted/pikkartar/true
Modifying the Manifest was easy, but after that it says to add some code in the OnCreate method:
if (Build.Version.SdkInt < BuildVersionCode.M)
{
//you don’t have to do anything, just init your app
InitApp();
}
else
{
CheckPermissions(_permissionCode);
}
The probleme is that there is an errors everywhere:
- "Build.Version.SdkInt" doesnt exist
- InitApp(); wasnt there at all, instead i have: SetContentView(Resource.Layout.Main);
I'm new at Android/Xamarin/Pikkart, thats my very first time and i feel quite frustrated to not be able to get done the very first step of any android related things.
If anyone can give me a clue on how to actually get started on the code that really matters, so i can get some results.
My background: 10 years on visual studio 2008 for desktop software development
Thank you
Jeremy