Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor Entire Project into .NET Standard #284

Merged
merged 6 commits into from
Feb 1, 2018
Merged

Refactor Entire Project into .NET Standard #284

merged 6 commits into from
Feb 1, 2018

Conversation

TheFanatr
Copy link
Contributor

This pull request is what was discussed and previewed on #274. Essentially, the entire project is refactored into one .NET Standard assembly to improve maintainability and clean everything up. The next step is to re-modularize.

@danibjor
Copy link

danibjor commented Jan 8, 2018

Awsome work!

Tried referencing the project form a Xamarin Forms (.Net Standards) project, Clean Master detail project, with added parse init - gives one error on Android and one on iOS. VS.NET 2017 Pro all updates on Win10 fall creators update.

Android

Severity	Code	Description	Project	File	Line	Suppression State
Error		Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Perhaps it doesn't exist in the Mono for Android profile?
File name: 'System.Windows.Forms.dll'
   at Java.Interop.Tools.Cecil.DirectoryAssemblyResolver.Resolve(AssemblyNameReference reference, ReaderParameters parameters) in /Users/builder/data/lanes/5749/d8c6e504/source/xamarin-android/external/Java.Interop/src/Java.Interop.Tools.Cecil/Java.Interop.Tools.Cecil/DirectoryAssemblyResolver.cs:line 229
   at Xamarin.Android.Tasks.ResolveAssemblies.AddAssemblyReferences(DirectoryAssemblyResolver resolver, ICollection`1 assemblies, AssemblyDefinition assembly, Boolean topLevel)
   at Xamarin.Android.Tasks.ResolveAssemblies.AddAssemblyReferences(DirectoryAssemblyResolver resolver, ICollection`1 assemblies, AssemblyDefinition assembly, Boolean topLevel)
   at Xamarin.Android.Tasks.ResolveAssemblies.Execute(DirectoryAssemblyResolver resolver)	App1.Android			

iOS

Severity	Code	Description	Project	File	Line	Suppression State
Error		Could not link assemblies. Reason: Object reference not set to an instance of an object	App1.iOS			

Tried building earlier today on VS.NET for Mac but got some Linker errors there. Not the same as on Windows.

EDIT: Parse-project alone compiles fine on VS2017 on both Mac and Windows

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Jan 9, 2018

@danibjor That's really weird; the whole reason I rewrote PCLStorage into StandardStorage is to get rid of all references to System.Windows.Forms. The project shouldn't require any sort of reference to it at all. I don't have access to a macOS device right now until tomorrow, so I would appreciate it if you could please post some more details such as when exactly it fails, and whether or not it tells you beforehand. When you reference the Parse project, and build, does it give you some kind of a warning message or just crash as soon as you try to launch the program? If you reference it, but don't initialize Parse, does it still crash? Thanks in advance. I will try to poke around on my side to see what could be causing the issues.

@TheFanatr
Copy link
Contributor Author

@danibjor Also, what version of the iOS and Android SDKs are you running? Look at the following document to see what the minimum versions are for each SDK when referencing .NET Standard.

https://github.com/dotnet/standard/blob/master/docs/versions.md

@danibjor
Copy link

danibjor commented Jan 9, 2018

If I remember correct (vs on win) It did not crash when I just referenced the parse library. The parse solution alone builds just fine on both Mac and Windows. Same when I include the parse project in my solution. Calling parse init makes the build/deploy fail (using iOS device, vs.net on win (parallels desktop), Iphone connected to paired Mac/build host). I’ll do some more research/poke around tomorrow - and post my findings.

@TheFanatr
Copy link
Contributor Author

@danibjor Thanks for offering your help. From what I can tell, this issue may be due to my reference of System.Deployment in StandardStorage. It is an external dependency I uploaded to NuGet that comes with .NET Framework, so maybe there's some hidden reference in there. I will try to remove it and see what happens.

@TheFanatr TheFanatr changed the title Entire Project Refactored into .NET Standard 2 Refactor Entire Project into .NET Standard Jan 9, 2018
@danibjor
Copy link

danibjor commented Jan 9, 2018

Edit: Also fetched the latest bits from your GitHub page before testing.

Tried again today.

Here is what I did so far to reproduce the errors.

Setup:
MacBookPro, Latest XCode, Latest MacOS, VS.NET 2017 all updates.
Parallels Desktop running Windows 10 Fall Creators Update (all patched/updated), VS.NET 2017, all updated. VS.NET iOS builds against build host on Mac.

File, new project, C#, Cross Platform, Cross plarform app (Xamarin Forms), Master/Detail app, Strategy: .NET Core

So far so good.

Now, I tried two methods to get this running. Adding the dll as reference, and adding the project to my solution. Both error out.

Only thing added to the default Xamarin solution is in App Init where I did a use a reference to Parse.

namespace Company.Product
{
	public partial class App : Application
	{

		public App ()
		{
			InitializeComponent();

			var parseConfig = new Parse.ParseClient.Configuration() {
				Server = "https://api.company.no/parse-instance/"
			};

			MainPage = new MainPage();	
		}

...

I get two errors. On on the Android project and one on the iOS project.

Android:

Severity	Code	Description	Project	File	Line	Suppression State
Error		Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Perhaps it doesn't exist in the Mono for Android profile?
File name: 'System.Windows.Forms.dll'
   at Java.Interop.Tools.Cecil.DirectoryAssemblyResolver.Resolve(AssemblyNameReference reference, ReaderParameters parameters) in /Users/builder/data/lanes/5749/d8c6e504/source/xamarin-android/external/Java.Interop/src/Java.Interop.Tools.Cecil/Java.Interop.Tools.Cecil/DirectoryAssemblyResolver.cs:line 229
   at Xamarin.Android.Tasks.ResolveAssemblies.AddAssemblyReferences(DirectoryAssemblyResolver resolver, ICollection`1 assemblies, AssemblyDefinition assembly, Boolean topLevel)
   at Xamarin.Android.Tasks.ResolveAssemblies.AddAssemblyReferences(DirectoryAssemblyResolver resolver, ICollection`1 assemblies, AssemblyDefinition assembly, Boolean topLevel)
   at Xamarin.Android.Tasks.ResolveAssemblies.Execute(DirectoryAssemblyResolver resolver)	App2.Android			

iOS:

Severity	Code	Description	Project	File	Line	Suppression State
Error		Could not link assemblies. Reason: Object reference not set to an instance of an object	App2.iOS			

System Info:

Microsoft Visual Studio Professional 2017 
Version 15.5.2
VisualStudio.15.Release/15.5.2+27130.2010
Microsoft .NET Framework
Version 4.7.02556

Installed Version: Professional

Visual Basic 2017   xxxxx-xxxxxx-xxxxxx-AA815
Microsoft Visual Basic 2017

Visual C# 2017   xxxxxx-xxxxxx-xxxxxx-AA815
Microsoft Visual C# 2017

Visual C++ 2017   xxxxxx-xxxxxx-xxxxxx-AA815
Microsoft Visual C++ 2017

Visual F# 4.1   xxxxxx-xxxxxx-xxxxxx-AA815
Microsoft Visual F# 4.1

Application Insights Tools for Visual Studio Package   8.10.01106.1
Application Insights Tools for Visual Studio

ASP.NET and Web Tools 2017   15.0.31125.0
ASP.NET and Web Tools 2017

ASP.NET Core Razor Language Services   1.0
Provides languages services for ASP.NET Core Razor.

ASP.NET Web Frameworks and Tools 2017   5.2.51007.0
For additional information, visit https://www.asp.net/

Azure App Service Tools v3.0.0   15.0.31106.0
Azure App Service Tools v3.0.0

Azure Data Lake Node   1.0
This package contains the Data Lake integration nodes for Server Explorer.

Azure Data Lake Tools for Visual Studio   2.2.9000.1
Microsoft Azure Data Lake Tools for Visual Studio

Azure Data Lake Tools for Visual Studio   2.2.9000.1
Microsoft Azure Data Lake Tools for Visual Studio

Common Azure Tools   1.10
Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.

Cookiecutter   3.0.17320.1
Provides tools for finding, instantiating and customizing templates in cookiecutter format.

Fabric.DiagnosticEvents   1.0
Fabric Diagnostic Events

JavaScript Language Service   2.0
JavaScript Language Service

JavaScript Project System   2.0
JavaScript Project System

JavaScript UWP Project System   2.0
JavaScript UWP Project System

Merq   1.1.17-rc (cba4571)
Command Bus, Event Stream and Async Manager for Visual Studio extensions.

Microsoft Azure HDInsight Azure Node   2.2.9000.1
HDInsight Node under Azure Node

Microsoft Azure Hive Query Language Service   2.2.9000.1
Language service for Hive query

Microsoft Azure Service Fabric Tools for Visual Studio   1.8
Microsoft Azure Service Fabric Tools for Visual Studio

Microsoft Azure Stream Analytics Language Service   2.2.9000.1
Language service for Azure Stream Analytics

Microsoft Azure Stream Analytics Node   1.0
Azure Stream Analytics Node under Azure Node

Microsoft Azure Tools   2.9
Microsoft Azure Tools for Microsoft Visual Studio 2017 - v2.9.51120.3

Microsoft Continuous Delivery Tools for Visual Studio   0.3
Simplifying the configuration of continuous build integration and continuous build delivery from within the Visual Studio IDE.

Microsoft JVM Debugger   1.0
Provides support for connecting the Visual Studio debugger to JDWP compatible Java Virtual Machines

Microsoft MI-Based Debugger   1.0
Provides support for connecting Visual Studio to MI compatible debuggers

Microsoft Visual C++ Wizards   1.0
Microsoft Visual C++ Wizards

Microsoft Visual Studio Tools for Containers   1.1
Develop, run, validate your ASP.NET Core applications in the target environment. F5 your application directly into a container with debugging, or CTRL + F5 to edit & refresh your app without having to rebuild the container.

Microsoft Visual Studio VC Package   1.0
Microsoft Visual Studio VC Package

Mono Debugging for Visual Studio   4.8.4-pre (3fe64e3)
Support for debugging Mono processes with Visual Studio.

Node.js Tools   1.4.11025.7
Adds support for developing and debugging Node.js apps in Visual Studio

NuGet Package Manager   4.5.0
NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/.

Office Developer Tools for Visual Studio 2017 ENU   15.0.27005.00
Microsoft Office Developer Tools for Visual Studio 2017 ENU

Python   3.0.17320.1
Provides IntelliSense, projects, templates, debugging, interactive windows, and other support for Python developers.

Python - Django support   3.0.17320.1
Provides templates and integration for the Django web framework.

Python - IronPython support   3.0.17320.1
Provides templates and integration for IronPython-based projects.

Python - Profiling support   3.0.17320.1
Profiling support for Python projects.

R Tools for Visual Studio   1.3.31108.1213
Provides project system, R Interactive window, plotting, and more for the R programming language.

SQL Server Data Tools   15.1.61710.120
Microsoft SQL Server Data Tools

ToolWindowHostedEditor   1.0
Hosting json editor into a tool window

TypeScript Tools   15.5.11025.1
TypeScript Tools for Microsoft Visual Studio

Visual C++ for Linux Development   1.0.8
Visual C++ for Linux Development

Visual Studio Code Debug Adapter Host Package   1.0
Interop layer for hosting Visual Studio Code debug adapters in Visual Studio

Visual Studio Tools for CMake   1.0
Visual Studio Tools for CMake

Visual Studio Tools for Universal Windows Apps   15.0.27128.01
The Visual Studio Tools for Universal Windows apps allow you to build a single universal app experience that can reach every device running Windows 10: phone, tablet, PC, and more. It includes the Microsoft Windows 10 Software Development Kit.

VisualStudio.Mac   1.0
Mac Extension for Visual Studio

WebJobs Tools v1.0.0   15.0.31106.0
WebJobs Tools v1.0.0

Workflow Manager Tools 1.0   1.0
This package contains the necessary Visual Studio integration components for Workflow Manager.

Xamarin   4.8.0.753 (6575bd113)
Visual Studio extension to enable development for Xamarin.iOS and Xamarin.Android.

Xamarin Designer   4.8.188 (c5813fa34)
Visual Studio extension to enable Xamarin Designer tools in Visual Studio.

Xamarin.Android SDK   8.1.0.25 (HEAD/d8c6e504f)
Xamarin.Android Reference Assemblies and MSBuild support.

Xamarin.iOS and Xamarin.Mac SDK   11.6.1.2 (6857dfc)
Xamarin.iOS and Xamarin.Mac Reference Assemblies and MSBuild support.

@TheFanatr
Copy link
Contributor Author

@danibjor Very strange. My theory is that the external assembly that I packaged with StandardStorage, which is referenced by Parse, tries to use System.Windows.Forms because it came from .NET Framework and assumes that Windows Forms is also installed. I will try to remove it and see what happens. I will push when I have completed.

@danibjor
Copy link

Peeking into the libraries referenced - and there sure is a reference to System.Windows.Forms

skjermbilde 2018-01-12 kl 22 06 09

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Jan 13, 2018

I noticed as well, and I actually fixed it on pretty much the same day; however, I was in the middle of properly reimplementing the task-based asynchronous pattern for the library, so I was not able to push the commit and publish the NuGet package as the code was incomplete. I still have not finished but I think I will just publish a package solely to fix the reference to windows forms, and then I will update everything with a new package that has all of the fixes and new functionality that I added.

@danibjor
Copy link

Tested removing the NuGet reference to StandardStorage. Downloading your GitHub repo for the StandardStorage project and added that to the solution - worked like a charm. Tested on iOS.

img_0801

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Jan 14, 2018

@danibjor Thank you for your help; I will try and get this resolved sometime tomorrow. If you could please test that version as well when you have time, it would be greatly appreciate. To reiterate, I have not finished yet, but will soon. Thanks.

…e-added support for AppVeyor through the use of OpenCover.
.appveyor.yml Outdated
build_script:
- msbuild /verbosity:quiet "Parse.sln"
test_script:
- .\Parse.Test\tools\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:dotnet.exe -register:user -targetargs:""C:\projects\parse-sdk-dotnet\Parse.Test\bin\debug\Parse.Test.dll" /noshadow" -filter:"" -output:parse_sdk_dotnet_coverage.xml -oldstyle
Copy link

@danibjor danibjor Jan 22, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

targetargs => "c:" would probably not work so good on mac?

.appveyor.yml Outdated
- .\Parse.Test\tools\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:dotnet.exe -register:user -targetargs:""C:\projects\parse-sdk-dotnet\Parse.Test\bin\debug\Parse.Test.dll" /noshadow" -filter:"" -output:parse_sdk_dotnet_coverage.xml -oldstyle
after_test:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here with c:

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's how the original was made.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, this is just configuration for AppVeyor. No one will be running it locally.

@montymxb
Copy link
Contributor

montymxb commented Jan 25, 2018

@TheFanatr In regards to lack of reporting I would take a look at a log from the existing structure and compare it to the latest for this PR.

Looking closely at the test section you can see a notable difference in the approach for running tests. The biggest one that sticks out to me is the choice between nunit-console.exe vs. dotnet.exe at the target. I'm not that familiar with why this was changed, I'm assuming it's related to the testing framework for .NET standard specifically? Either way there's helpful output indicating such things as:

No test is available in C:\projects\parse-sdk-dotnet\Parse\bin\Debug\netstandard2.0\Parse.dll. Make sure test project has a nuget reference of package "Microsoft.NET.Test.Sdk" and framework version settings are appropriate and try again.

and

No results, this could be for a number of reasons. The most common reasons are:
1) missing PDBs for the assemblies that match the filter please review the
output file and refer to the Usage guide (Usage.rtf) about filters.
2) the profiler may not be registered correctly, please refer to the Usage
guide and the -register switch.

I imagine once these are resolved we should be getting our reports again. You should probably run these commands directly in your local environment to inspect the behavior a bit more precisely, might help indicate why the reports are empty.

Beyond that looking good now that you have CI working 👍 . Next step is to smooth out code coverage and report generation, then we can go from there.

@TheFanatr
Copy link
Contributor Author

@montymxb I already saw all the reports and stuff, and have tested it locally. The problem is that if I use my local command arguments, it fails because it is unable to register the profiler as user for some reason. I have now tried both path32 and path64, and neither work. I will try to mess around with it some more when I have time. The reason I switched to VSTest is because I feel that it has better integration into Visual Studio but also because the API structure and naming scheme makes much more sense to me.

@TheFanatr
Copy link
Contributor Author

@montymxb I found the issue. I was missing some of the files needed for OpenCover to work properly. I will push a fix very soon.

@TheFanatr
Copy link
Contributor Author

image

@codecov
Copy link

codecov bot commented Jan 31, 2018

Codecov Report

Merging #284 into master will decrease coverage by 7.94%.
The diff coverage is 67.79%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #284      +/-   ##
==========================================
- Coverage   67.21%   59.26%   -7.95%     
==========================================
  Files         127       89      -38     
  Lines       10139     6258    -3881     
  Branches     1455        0    -1455     
==========================================
- Hits         6815     3709    -3106     
+ Misses       3127     2549     -578     
+ Partials      197        0     -197
Impacted Files Coverage Δ
...Internal/Controller/ParsePushChannelsController.cs 0% <0%> (ø)
...nternal/Config/Controller/ParseConfigController.cs 0% <0%> (ø)
Parse/Internal/DeviceInfo/DeviceInfoController.cs 0% <0%> (ø)
Parse/AssemblyLister.cs 0% <0%> (ø)
Parse/Internal/Controller/ParsePushController.cs 0% <0%> (ø)
.../Config/Controller/ParseCurrentConfigController.cs 0% <0%> (ø)
Parse/Internal/Encoding/NoObjectsEncoder.cs 100% <100%> (ø)
...ernal/Cloud/Controller/ParseCloudCodeController.cs 100% <100%> (ø)
Parse/Internal/File/State/FileState.cs 100% <100%> (ø)
Parse/Internal/Coder/ParsePushEncoder.cs 75% <75%> (ø)
... and 223 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ce87d7f...d54e798. Read the comment docs.

@TheFanatr
Copy link
Contributor Author

image

@TheFanatr
Copy link
Contributor Author

@danibjor Now that everything is configured, when you find a moment, could you please verify that the project is operational?

@TheFanatr
Copy link
Contributor Author

The next steps are:

  • Fix the NuSpec
  • Add Unit Test Result Uploading to AppVeyor

…ded NuGet package metadata to the Parse project because NuSpec file metadata declaration not supported for .NET Standard projects, added XML code documentation, and modified the AppVeyor configuration to upload the build-created NuGet package to the build console as an artifact.
@danibjor
Copy link

danibjor commented Feb 3, 2018

Tried the latest sources on the master branch.

Seems to be working fine on iOS so far - have done some CRUD-testing, but nothing heavy.

Android is a whole new story. Tested on Android 7.1 device, with File-new-project, Xamarin.Forms, deploy. Success. Add the Parse project as part of the solution and reference to it. Trying to deploy on the device and it fails. App installs, starts up and fails.

Android application is debugging.
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll [External]02-03 01:12:06.508 I/art     (21780): Late-enabling -Xcheck:jni

02-03 01:12:06.623 W/monodroid(21780): Creating public update directory: `/data/user/0/com.companyname.App1/files/.__override__`
02-03 01:12:06.623 W/monodroid(21780): Using override path: /data/user/0/com.companyname.App1/files/.__override__
02-03 01:12:06.623 W/monodroid(21780): Using override path: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__
02-03 01:12:06.623 W/monodroid(21780): Trying to load sgen from: /data/user/0/com.companyname.App1/files/.__override__/libmonosgen-2.0.so
02-03 01:12:06.623 W/monodroid(21780): Trying to load sgen from: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/libmonosgen-2.0.so
02-03 01:12:06.624 W/monodroid(21780): Trying to load sgen from: /storage/emulated/0/../legacy/Android/data/com.companyname.App1/files/.__override__/libmonosgen-2.0.so
02-03 01:12:06.624 W/monodroid(21780): Trying to load sgen from: /data/app/com.companyname.App1-1/lib/arm/libmonosgen-2.0.so
02-03 01:12:06.624 W/monodroid(21780): Trying to load sgen from: /data/user/0/com.companyname.App1/files/.__override__/links/libmonosgen-2.0.so
02-03 01:12:06.627 W/monodroid-debug(21780): Trying to initialize the debugger with options: --debugger-agent=transport=dt_socket,loglevel=0,address=127.0.0.1:29316,server=y,embedding=1
02-03 01:12:06.655 W/monodroid-debug(21780): Accepted stdout connection: 34
02-03 01:12:07.425 D/Mono    (21780): Image addref mscorlib[0x793bd780] -> mscorlib.dll[0xb4285900]: 2
02-03 01:12:07.426 D/Mono    (21780): Prepared to set up assembly 'mscorlib' (mscorlib.dll)Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll [External]

02-03 01:12:07.428 D/Mono    (21780): AOT: image 'mscorlib.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-mscorlib.dll.so" not found
02-03 01:12:07.429 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/mscorlib.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-mscorlib.dll.so" not found
02-03 01:12:07.429 D/Mono    (21780): Config attempting to parse: 'mscorlib.dll.config'.
02-03 01:12:07.429 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/mscorlib/mscorlib.config'.
02-03 01:12:07.463 D/Mono    (21780): Assembly mscorlib[0x793bd780] added to domain RootDomain, ref_count=1
02-03 01:12:07.520 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll'.
02-03 01:12:07.521 D/Mono    (21780): Image addref App1.Android[0x793bdae0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll[0x79421e00]: 2
02-03 01:12:07.521 D/Mono    (21780): Prepared to set up assembly 'App1.Android' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll)
02-03 01:12:07.521 D/Mono    (21780): Assembly App1.Android[0x793bdae0] added to domain RootDomain, ref_count=1
02-03 01:12:07.522 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-App1.Android.dll.so" not found
02-03 01:12:07.522 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/App1.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-App1.Android.dll.so" not found
02-03 01:12:07.523 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll'.
02-03 01:12:07.523 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.Android.dll.config'.Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll [External]

02-03 01:12:07.523 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/App1.Android/App1.Android.config'.
02-03 01:12:07.523 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll'.
02-03 01:12:07.524 D/Mono    (21780): Image addref App1[0x793bdc00] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll[0x79422300]: 2
02-03 01:12:07.524 D/Mono    (21780): Prepared to set up assembly 'App1' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll)
02-03 01:12:07.524 D/Mono    (21780): Assembly App1[0x793bdc00] added to domain RootDomain, ref_count=1
02-03 01:12:07.524 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-App1.dll.so" not found
02-03 01:12:07.525 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/App1.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-App1.dll.so" not found
02-03 01:12:07.525 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll'.
02-03 01:12:07.525 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/App1.dll.config'.
02-03 01:12:07.526 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/App1/App1.config'.
02-03 01:12:07.526 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll'.
Loaded assembly: /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll [External]02-03 01:12:07.526 D/Mono    (21780): Image addref FormsViewGroup[0x793bdd80] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll[0x79424100]: 2

02-03 01:12:07.526 D/Mono    (21780): Prepared to set up assembly 'FormsViewGroup' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll)
02-03 01:12:07.526 D/Mono    (21780): Assembly FormsViewGroup[0x793bdd80] added to domain RootDomain, ref_count=1
02-03 01:12:07.527 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-FormsViewGroup.dll.so" not found
02-03 01:12:07.528 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/FormsViewGroup.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-FormsViewGroup.dll.so" not found
02-03 01:12:07.528 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll'.
02-03 01:12:07.528 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/FormsViewGroup.dll.config'.
02-03 01:12:07.528 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/FormsViewGroup/FormsViewGroup.config'.
02-03 01:12:07.528 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll'.
02-03 01:12:07.529 D/Mono    (21780): Image addref Microsoft.DotNet.PlatformAbstractions[0x793bd840] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll[0x79424600]: 2
02-03 01:12:07.529 D/Mono    (21780): Prepared to set up assembly 'Microsoft.DotNet.PlatformAbstractions' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll)
02-03 01:12:07.529 D/Mono    (21780): Assembly Microsoft.DotNet.PlatformAbstractions[0x793bd840] added to domain RootDomain, ref_count=1
02-03 01:12:07.530 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Microsoft.DotNet.PlatformAbstractions.dll.so" not found
02-03 01:12:07.531 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Microsoft.DotNet.PlatformAbstractions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Microsoft.DotNet.PlatformAbstractions.dll.so" not found
02-03 01:12:07.531 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll'.
02-03 01:12:07.531 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.DotNet.PlatformAbstractions.dll.config'.
02-03 01:12:07.531 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.DotNet.PlatformAbstractions/Microsoft.DotNet.PlatformAbstractions.config'.
02-03 01:12:07.531 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll'.
02-03 01:12:07.532 D/Mono    (21780): Image addref Microsoft.Extensions.PlatformAbstractions[0x793bd7e0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll[0x79424b00]: 2
02-03 01:12:07.532 D/Mono    (21780): Prepared to set up assembly 'Microsoft.Extensions.PlatformAbstractions' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll)
02-03 01:12:07.532 D/Mono    (21780): Assembly Microsoft.Extensions.PlatformAbstractions[0x793bd7e0] added to domain RootDomain, ref_count=1
02-03 01:12:07.533 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Microsoft.Extensions.PlatformAbstractions.dll.so" not found
02-03 01:12:07.534 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Microsoft.Extensions.PlatformAbstractions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Microsoft.Extensions.PlatformAbstractions.dll.so" not found
02-03 01:12:07.534 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll'.
02-03 01:12:07.534 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Microsoft.Extensions.PlatformAbstractions.dll.config'.
02-03 01:12:07.534 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.Extensions.PlatformAbstractions/Microsoft.Extensions.PlatformAbstractions.config'.
Loaded assembly: Mono.Android.dll [External]02-03 01:12:07.534 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll'.

02-03 01:12:07.535 D/Mono    (21780): Image addref StandardStorage[0x793bdf00] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll[0x7943d000]: 2
02-03 01:12:07.535 D/Mono    (21780): Prepared to set up assembly 'StandardStorage' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll)
02-03 01:12:07.535 D/Mono    (21780): Assembly StandardStorage[0x793bdf00] added to domain RootDomain, ref_count=1
02-03 01:12:07.536 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-StandardStorage.dll.so" not found
02-03 01:12:07.536 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/StandardStorage.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-StandardStorage.dll.so" not found
02-03 01:12:07.536 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll'.
02-03 01:12:07.536 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/StandardStorage.dll.config'.
02-03 01:12:07.536 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/StandardStorage/StandardStorage.config'.
02-03 01:12:07.537 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll'.
02-03 01:12:07.537 D/Mono    (21780): Image addref Xamarin.Android.Support.Animated.Vector.Drawable[0x793bdb40] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll[0x7943d500]: 2
02-03 01:12:07.537 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Animated.Vector.Drawable' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll)
02-03 01:12:07.537 D/Mono    (21780): Assembly Xamarin.Android.Support.Animated.Vector.Drawable[0x793bdb40] added to domain RootDomain, ref_count=1
02-03 01:12:07.538 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Animated.Vector.Drawable.dll.so" not found
Loaded assembly: Java.Interop.dll [External]02-03 01:12:07.539 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Animated.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Animated.Vector.Drawable.dll.so" not found

02-03 01:12:07.539 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll'.
02-03 01:12:07.539 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll.config'.
02-03 01:12:07.539 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Animated.Vector.Drawable/Xamarin.Android.Support.Animated.Vector.Drawable.config'.
02-03 01:12:07.540 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll'.
02-03 01:12:07.540 D/Mono    (21780): Image addref Xamarin.Android.Support.Annotations[0x793bdde0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll[0x7943da00]: 2
Loaded assembly: System.Runtime.dll [External]02-03 01:12:07.540 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Annotations' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll)

02-03 01:12:07.540 D/Mono    (21780): Assembly Xamarin.Android.Support.Annotations[0x793bdde0] added to domain RootDomain, ref_count=1
02-03 01:12:07.541 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Annotations.dll.so" not found
02-03 01:12:07.542 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Annotations.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Annotations.dll.so" not found
02-03 01:12:07.542 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll'.
02-03 01:12:07.542 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Annotations.dll.config'.
02-03 01:12:07.542 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Annotations/Xamarin.Android.Support.Annotations.config'.
02-03 01:12:07.543 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll'.
02-03 01:12:07.543 D/Mono    (21780): Image addref Xamarin.Android.Support.Compat[0x793bdf60] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll[0x7943df00]: 2
02-03 01:12:07.543 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Compat' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll)
02-03 01:12:07.543 D/Mono    (21780): Assembly Xamarin.Android.Support.Compat[0x793bdf60] added to domain RootDomain, ref_count=1Loaded assembly: System.Collections.Concurrent.dll [External]

02-03 01:12:07.544 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Compat.dll.so" not found
02-03 01:12:07.545 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Compat.dll.so" not found
02-03 01:12:07.545 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll'.
02-03 01:12:07.545 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Compat.dll.config'.
02-03 01:12:07.545 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Compat/Xamarin.Android.Support.Compat.config'.
02-03 01:12:07.546 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll'.
02-03 01:12:07.546 D/Mono    (21780): Image addref Xamarin.Android.Support.Core.UI[0x793bde40] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll[0x7943e400]: 2
02-03 01:12:07.546 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Core.UI' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll)
02-03 01:12:07.546 D/Mono    (21780): Assembly Xamarin.Android.Support.Core.UI[0x793bde40] added to domain RootDomain, ref_count=1
02-03 01:12:07.547 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Core.UI.dll.so" not foundLoaded assembly: System.Threading.dll [External]

02-03 01:12:07.548 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Core.UI.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Core.UI.dll.so" not found
02-03 01:12:07.548 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll'.
02-03 01:12:07.548 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.UI.dll.config'.
02-03 01:12:07.548 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Core.UI/Xamarin.Android.Support.Core.UI.config'.
02-03 01:12:07.548 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll'.Loaded assembly: System.Runtime.InteropServices.dll [External]

02-03 01:12:07.549 D/Mono    (21780): Image addref Xamarin.Android.Support.Core.Utils[0x793bdfc0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll[0x7943e900]: 2
02-03 01:12:07.549 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Core.Utils' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll)
02-03 01:12:07.549 D/Mono    (21780): Assembly Xamarin.Android.Support.Core.Utils[0x793bdfc0] added to domain RootDomain, ref_count=1
02-03 01:12:07.550 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Core.Utils.dll.so" not found
02-03 01:12:07.551 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Core.Utils.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Core.Utils.dll.so" not found
02-03 01:12:07.551 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll'.
02-03 01:12:07.551 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Core.Utils.dll.config'.
02-03 01:12:07.551 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Core.Utils/Xamarin.Android.Support.Core.Utils.config'.
02-03 01:12:07.551 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll'.
02-03 01:12:07.552 D/Mono    (21780): Image addref Xamarin.Android.Support.Design[0x793be020] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll[0x7943ee00]: 2
02-03 01:12:07.552 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Design' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll)
02-03 01:12:07.552 D/Mono    (21780): Assembly Xamarin.Android.Support.Design[0x793be020] added to domain RootDomain, ref_count=1
02-03 01:12:07.553 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Design.dll.so" not found
Loaded assembly: System.Reflection.dll [External]02-03 01:12:07.554 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Design.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Design.dll.so" not found

02-03 01:12:07.554 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll'.
02-03 01:12:07.554 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Design.dll.config'.
02-03 01:12:07.554 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Design/Xamarin.Android.Support.Design.config'.
02-03 01:12:07.554 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll'.
02-03 01:12:07.555 D/Mono    (21780): Image addref Xamarin.Android.Support.Fragment[0x793be080] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll[0x7943f300]: 2
02-03 01:12:07.555 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Fragment' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll)
02-03 01:12:07.555 D/Mono    (21780): Assembly Xamarin.Android.Support.Fragment[0x793be080] added to domain RootDomain, ref_count=1
02-03 01:12:07.556 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Fragment.dll.so" not found
02-03 01:12:07.556 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Fragment.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Fragment.dll.so" not found
02-03 01:12:07.556 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll'.Loaded assembly: System.Collections.dll [External]

02-03 01:12:07.557 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Fragment.dll.config'.
02-03 01:12:07.557 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Fragment/Xamarin.Android.Support.Fragment.config'.
02-03 01:12:07.557 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll'.
02-03 01:12:07.557 D/Mono    (21780): Image addref Xamarin.Android.Support.Media.Compat[0x793be0e0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll[0x7943f800]: 2
02-03 01:12:07.557 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Media.Compat' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll)
02-03 01:12:07.557 D/Mono    (21780): Assembly Xamarin.Android.Support.Media.Compat[0x793be0e0] added to domain RootDomain, ref_count=1
02-03 01:12:07.558 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Media.Compat.dll.so" not found
02-03 01:12:07.559 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Media.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Media.Compat.dll.so" not found
02-03 01:12:07.559 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll'.
02-03 01:12:07.559 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Media.Compat.dll.config'.
02-03 01:12:07.560 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Media.Compat/Xamarin.Android.Support.Media.Compat.config'.
02-03 01:12:07.560 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll'.
02-03 01:12:07.560 D/Mono    (21780): Image addref Xamarin.Android.Support.Transition[0x793be140] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll[0x7943fd00]: 2
02-03 01:12:07.560 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Transition' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll)
02-03 01:12:07.560 D/Mono    (21780): Assembly Xamarin.Android.Support.Transition[0x793be140] added to domain RootDomain, ref_count=1
02-03 01:12:07.561 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Transition.dll.so" not found
02-03 01:12:07.562 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Transition.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Transition.dll.so" not found
02-03 01:12:07.562 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll'.
02-03 01:12:07.562 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Transition.dll.config'.
02-03 01:12:07.562 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Transition/Xamarin.Android.Support.Transition.config'.
02-03 01:12:07.563 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll'.
02-03 01:12:07.563 D/Mono    (21780): Image addref Xamarin.Android.Support.v4[0x793be1a0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll[0x79440200]: 2
02-03 01:12:07.563 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.v4' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll)
02-03 01:12:07.563 D/Mono    (21780): Assembly Xamarin.Android.Support.v4[0x793be1a0] added to domain RootDomain, ref_count=1
02-03 01:12:07.564 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v4.dll.so" not found
02-03 01:12:07.565 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v4.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v4.dll.so" not found
02-03 01:12:07.565 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll'.
02-03 01:12:07.565 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v4.dll.config'.
02-03 01:12:07.565 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v4/Xamarin.Android.Support.v4.config'.
02-03 01:12:07.565 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll'.
02-03 01:12:07.566 D/Mono    (21780): Image addref Xamarin.Android.Support.v7.AppCompat[0x793be200] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll[0x79440700]: 2
02-03 01:12:07.566 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.v7.AppCompat' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll)
02-03 01:12:07.566 D/Mono    (21780): Assembly Xamarin.Android.Support.v7.AppCompat[0x793be200] added to domain RootDomain, ref_count=1
02-03 01:12:07.567 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.AppCompat.dll.so" not found
02-03 01:12:07.568 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.AppCompat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.AppCompat.dll.so" not found
02-03 01:12:07.568 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll'.
02-03 01:12:07.568 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll.config'.
02-03 01:12:07.568 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.AppCompat/Xamarin.Android.Support.v7.AppCompat.config'.
02-03 01:12:07.568 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll'.
02-03 01:12:07.569 D/Mono    (21780): Image addref Xamarin.Android.Support.v7.CardView[0x793be260] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll[0x79440c00]: 2
02-03 01:12:07.569 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.v7.CardView' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll)
02-03 01:12:07.569 D/Mono    (21780): Assembly Xamarin.Android.Support.v7.CardView[0x793be260] added to domain RootDomain, ref_count=1
02-03 01:12:07.570 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.CardView.dll.so" not found
02-03 01:12:07.570 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.CardView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.CardView.dll.so" not found
02-03 01:12:07.571 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll'.
02-03 01:12:07.571 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.CardView.dll.config'.
02-03 01:12:07.571 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.CardView/Xamarin.Android.Support.v7.CardView.config'.
02-03 01:12:07.571 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll'.
02-03 01:12:07.572 D/Mono    (21780): Image addref Xamarin.Android.Support.v7.MediaRouter[0x793be2c0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll[0x79441100]: 2
02-03 01:12:07.572 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.v7.MediaRouter' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll)
02-03 01:12:07.572 D/Mono    (21780): Assembly Xamarin.Android.Support.v7.MediaRouter[0x793be2c0] added to domain RootDomain, ref_count=1
02-03 01:12:07.573 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.MediaRouter.dll.so" not found
02-03 01:12:07.573 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.MediaRouter.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.MediaRouter.dll.so" not found
02-03 01:12:07.573 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll'.
02-03 01:12:07.573 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll.config'.
02-03 01:12:07.574 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.MediaRouter/Xamarin.Android.Support.v7.MediaRouter.config'.
02-03 01:12:07.574 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll'.
02-03 01:12:07.574 D/Mono    (21780): Image addref Xamarin.Android.Support.v7.Palette[0x793be320] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll[0x79441600]: 2
02-03 01:12:07.574 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.v7.Palette' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll)
02-03 01:12:07.574 D/Mono    (21780): Assembly Xamarin.Android.Support.v7.Palette[0x793be320] added to domain RootDomain, ref_count=1
02-03 01:12:07.575 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.Palette.dll.so" not found
02-03 01:12:07.576 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.Palette.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.Palette.dll.so" not found
02-03 01:12:07.576 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll'.
02-03 01:12:07.576 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.Palette.dll.config'.
02-03 01:12:07.576 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.Palette/Xamarin.Android.Support.v7.Palette.config'.
02-03 01:12:07.576 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll'.
02-03 01:12:07.577 D/Mono    (21780): Image addref Xamarin.Android.Support.v7.RecyclerView[0x793be380] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll[0x79441b00]: 2
02-03 01:12:07.577 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.v7.RecyclerView' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll)
02-03 01:12:07.577 D/Mono    (21780): Assembly Xamarin.Android.Support.v7.RecyclerView[0x793be380] added to domain RootDomain, ref_count=1
02-03 01:12:07.578 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.RecyclerView.dll.so" not found
02-03 01:12:07.579 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.RecyclerView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.v7.RecyclerView.dll.so" not found
02-03 01:12:07.579 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll'.
02-03 01:12:07.579 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll.config'.
02-03 01:12:07.579 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.RecyclerView/Xamarin.Android.Support.v7.RecyclerView.config'.
02-03 01:12:07.579 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll'.
02-03 01:12:07.580 D/Mono    (21780): Image addref Xamarin.Android.Support.Vector.Drawable[0x793be3e0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll[0xaeb8c000]: 2
02-03 01:12:07.580 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Android.Support.Vector.Drawable' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll)
02-03 01:12:07.580 D/Mono    (21780): Assembly Xamarin.Android.Support.Vector.Drawable[0x793be3e0] added to domain RootDomain, ref_count=1
02-03 01:12:07.581 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Vector.Drawable.dll.so" not found
02-03 01:12:07.582 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Android.Support.Vector.Drawable.dll.so" not found
02-03 01:12:07.582 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll'.
02-03 01:12:07.582 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll.config'.
02-03 01:12:07.582 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Vector.Drawable/Xamarin.Android.Support.Vector.Drawable.config'.
02-03 01:12:07.582 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll'.
02-03 01:12:07.583 D/Mono    (21780): Image addref Xamarin.Forms.Core[0x793be440] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll[0xaeb8c500]: 2
02-03 01:12:07.583 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Forms.Core' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll)
02-03 01:12:07.583 D/Mono    (21780): Assembly Xamarin.Forms.Core[0x793be440] added to domain RootDomain, ref_count=1
02-03 01:12:07.584 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Core.dll.so" not found
02-03 01:12:07.584 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Core.dll.so" not found
02-03 01:12:07.584 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll'.
02-03 01:12:07.584 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Core.dll.config'.
02-03 01:12:07.584 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Core/Xamarin.Forms.Core.config'.
02-03 01:12:07.585 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll'.
02-03 01:12:07.585 D/Mono    (21780): Image addref Xamarin.Forms.Platform.Android[0x793be4a0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll[0xaeb8ca00]: 2
02-03 01:12:07.585 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Forms.Platform.Android' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll)
02-03 01:12:07.585 D/Mono    (21780): Assembly Xamarin.Forms.Platform.Android[0x793be4a0] added to domain RootDomain, ref_count=1
02-03 01:12:07.586 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Platform.Android.dll.so" not found
02-03 01:12:07.587 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Platform.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Platform.Android.dll.so" not found
02-03 01:12:07.587 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll'.
02-03 01:12:07.587 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.Android.dll.config'.
02-03 01:12:07.587 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Platform.Android/Xamarin.Forms.Platform.Android.config'.
02-03 01:12:07.588 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll'.
02-03 01:12:07.588 D/Mono    (21780): Image addref Xamarin.Forms.Platform[0x793be500] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll[0xaeb8cf00]: 2
02-03 01:12:07.588 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Forms.Platform' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll)
02-03 01:12:07.588 D/Mono    (21780): Assembly Xamarin.Forms.Platform[0x793be500] added to domain RootDomain, ref_count=1
02-03 01:12:07.589 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Platform.dll.so" not found
02-03 01:12:07.590 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Platform.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Platform.dll.so" not found
02-03 01:12:07.590 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll'.
02-03 01:12:07.590 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Platform.dll.config'.
02-03 01:12:07.590 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Platform/Xamarin.Forms.Platform.config'.
02-03 01:12:07.590 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll'.
02-03 01:12:07.591 D/Mono    (21780): Image addref Xamarin.Forms.Xaml[0x793be560] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll[0xaeb8d400]: 2
02-03 01:12:07.591 D/Mono    (21780): Prepared to set up assembly 'Xamarin.Forms.Xaml' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll)
02-03 01:12:07.591 D/Mono    (21780): Assembly Xamarin.Forms.Xaml[0x793be560] added to domain RootDomain, ref_count=1
02-03 01:12:07.592 D/Mono    (21780): AOT: image '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Xaml.dll.so" not found
02-03 01:12:07.592 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Xaml.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Xamarin.Forms.Xaml.dll.so" not found
02-03 01:12:07.592 D/Mono    (21780): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll'.
02-03 01:12:07.592 D/Mono    (21780): Config attempting to parse: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/Xamarin.Forms.Xaml.dll.config'.
02-03 01:12:07.593 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Xaml/Xamarin.Forms.Xaml.config'.
02-03 01:12:07.593 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Permissions.dll'.
02-03 01:12:07.593 D/Mono    (21780): Image addref System.Security.Permissions[0x793be5c0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Permissions.dll[0xaeb8d900]: 2
02-03 01:12:07.593 D/Mono    (21780): Image for assembly 'System.Security.Permissions' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Permissions.dll) has ReferenceAssemblyAttribute, skipping
02-03 01:12:07.593 D/Mono    (21780): Unloading image /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Permissions.dll [0xaeb8d900].
02-03 01:12:07.594 D/Mono    (21780): Assembly Loader probing location: '/usr/local/lib/System.Security.Permissions.dll'.
02-03 01:12:08.021 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.AccessControl.dll'.
02-03 01:12:08.022 D/Mono    (21780): Image addref System.Security.AccessControl[0x793be5c0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.AccessControl.dll[0xaeb8d900]: 2
02-03 01:12:08.022 D/Mono    (21780): Image for assembly 'System.Security.AccessControl' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.AccessControl.dll) has ReferenceAssemblyAttribute, skipping
02-03 01:12:08.022 D/Mono    (21780): Unloading image /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.AccessControl.dll [0xaeb8d900].
02-03 01:12:08.022 D/Mono    (21780): Assembly Loader probing location: '/usr/local/lib/System.Security.AccessControl.dll'.
02-03 01:12:08.023 D/Mono    (21780): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Principal.Windows.dll'.
02-03 01:12:08.024 D/Mono    (21780): Image addref System.Security.Principal.Windows[0x793be5c0] -> /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Principal.Windows.dll[0xaeb8d900]: 2
02-03 01:12:08.024 D/Mono    (21780): Image for assembly 'System.Security.Principal.Windows' (/storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Principal.Windows.dll) has ReferenceAssemblyAttribute, skipping
02-03 01:12:08.024 D/Mono    (21780): Unloading image /storage/emulated/0/Android/data/com.companyname.App1/files/.__override__/System.Security.Principal.Windows.dll [0xaeb8d900].
02-03 01:12:08.024 D/Mono    (21780): Assembly Loader probing location: '/usr/local/lib/System.Security.Principal.Windows.dll'.
02-03 01:12:08.025 W/monodroid-gc(21780): GREF GC Threshold: 46080
02-03 01:12:08.025 D/Mono    (21780): Image addref Mono.Android[0x793be5c0] -> Mono.Android.dll[0xaeb8d900]: 2
02-03 01:12:08.026 D/Mono    (21780): Prepared to set up assembly 'Mono.Android' (Mono.Android.dll)
02-03 01:12:08.026 D/Mono    (21780): Assembly Mono.Android[0x793be5c0] added to domain RootDomain, ref_count=1
02-03 01:12:08.027 D/Mono    (21780): AOT: image 'Mono.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Mono.Android.dll.so" not found
02-03 01:12:08.028 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Mono.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Mono.Android.dll.so" not found
02-03 01:12:08.028 D/Mono    (21780): Config attempting to parse: 'Mono.Android.dll.config'.
02-03 01:12:08.028 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Mono.Android/Mono.Android.config'.
02-03 01:12:08.035 D/Mono    (21780): Assembly Ref addref Mono.Android[0x793be5c0] -> mscorlib[0x793bd780]: 2
02-03 01:12:08.036 D/Mono    (21780): Image addref Java.Interop[0x793be6e0] -> Java.Interop.dll[0xaeb8de00]: 2
02-03 01:12:08.036 D/Mono    (21780): Prepared to set up assembly 'Java.Interop' (Java.Interop.dll)
02-03 01:12:08.036 D/Mono    (21780): Assembly Java.Interop[0x793be6e0] added to domain RootDomain, ref_count=1
02-03 01:12:08.038 D/Mono    (21780): AOT: image 'Java.Interop.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Java.Interop.dll.so" not found
02-03 01:12:08.039 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/Java.Interop.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-Java.Interop.dll.so" not foundLoaded assembly: System.Linq.dll [External]

02-03 01:12:08.039 D/Mono    (21780): Config attempting to parse: 'Java.Interop.dll.config'.
02-03 01:12:08.039 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/Java.Interop/Java.Interop.config'.
02-03 01:12:08.039 D/Mono    (21780): Assembly Ref addref Mono.Android[0x793be5c0] -> Java.Interop[0x793be6e0]: 2
02-03 01:12:08.040 D/Mono    (21780): Image addref System.Runtime[0x793be620] -> System.Runtime.dll[0xaeb8e300]: 2
02-03 01:12:08.040 D/Mono    (21780): Prepared to set up assembly 'System.Runtime' (System.Runtime.dll)
02-03 01:12:08.040 D/Mono    (21780): Assembly System.Runtime[0x793be620] added to domain RootDomain, ref_count=1
02-03 01:12:08.042 D/Mono    (21780): AOT: image 'System.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Runtime.dll.so" not found
02-03 01:12:08.042 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Runtime.dll.so" not found
02-03 01:12:08.042 D/Mono    (21780): Config attempting to parse: 'System.Runtime.dll.config'.
02-03 01:12:08.042 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
02-03 01:12:08.042 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Runtime[0x793be620]: 2
02-03 01:12:08.043 D/Mono    (21780): Assembly Ref addref System.Runtime[0x793be620] -> mscorlib[0x793bd780]: 3
02-03 01:12:08.044 W/monodroid(21780): Calling into managed runtime init
02-03 01:12:08.134 D/Mono    (21780): Image addref System.Collections.Concurrent[0x793be740] -> System.Collections.Concurrent.dll[0xaeb8ed00]: 2
02-03 01:12:08.134 D/Mono    (21780): Prepared to set up assembly 'System.Collections.Concurrent' (System.Collections.Concurrent.dll)
02-03 01:12:08.134 D/Mono    (21780): Assembly System.Collections.Concurrent[0x793be740] added to domain RootDomain, ref_count=1
02-03 01:12:08.136 D/Mono    (21780): AOT: image 'System.Collections.Concurrent.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Collections.Concurrent.dll.so" not foundLoaded assembly: System.Core.dll [External]

02-03 01:12:08.137 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Collections.Concurrent.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Collections.Concurrent.dll.so" not found
02-03 01:12:08.137 D/Mono    (21780): Config attempting to parse: 'System.Collections.Concurrent.dll.config'.
02-03 01:12:08.137 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections.Concurrent/System.Collections.Concurrent.config'.
02-03 01:12:08.137 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Collections.Concurrent[0x793be740]: 2
02-03 01:12:08.137 D/Mono    (21780): Assembly Ref addref System.Collections.Concurrent[0x793be740] -> mscorlib[0x793bd780]: 4
02-03 01:12:08.196 D/Mono    (21780): Image addref System.Threading[0x793be8c0] -> System.Threading.dll[0xaeb8f700]: 2
02-03 01:12:08.196 D/Mono    (21780): Prepared to set up assembly 'System.Threading' (System.Threading.dll)
02-03 01:12:08.196 D/Mono    (21780): Assembly System.Threading[0x793be8c0] added to domain RootDomain, ref_count=1
02-03 01:12:08.197 D/Mono    (21780): AOT: image 'System.Threading.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Threading.dll.so" not found
02-03 01:12:08.198 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Threading.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Threading.dll.so" not found
02-03 01:12:08.198 D/Mono    (21780): Config attempting to parse: 'System.Threading.dll.config'.
02-03 01:12:08.198 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Threading/System.Threading.config'.
02-03 01:12:08.198 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Threading[0x793be8c0]: 2
02-03 01:12:08.198 D/Mono    (21780): Assembly Ref addref System.Threading[0x793be8c0] -> mscorlib[0x793bd780]: 5
02-03 01:12:08.220 D/Mono    (21780): Image addref System.Runtime.InteropServices[0x793be680] -> System.Runtime.InteropServices.dll[0xaeb8fc00]: 2
02-03 01:12:08.220 D/Mono    (21780): Prepared to set up assembly 'System.Runtime.InteropServices' (System.Runtime.InteropServices.dll)
02-03 01:12:08.220 D/Mono    (21780): Assembly System.Runtime.InteropServices[0x793be680] added to domain RootDomain, ref_count=1
02-03 01:12:08.222 D/Mono    (21780): AOT: image 'System.Runtime.InteropServices.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Runtime.InteropServices.dll.so" not found
02-03 01:12:08.222 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Runtime.InteropServices.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Runtime.InteropServices.dll.so" not found
02-03 01:12:08.222 D/Mono    (21780): Config attempting to parse: 'System.Runtime.InteropServices.dll.config'.
02-03 01:12:08.223 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.InteropServices/System.Runtime.InteropServices.config'.
02-03 01:12:08.223 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Runtime.InteropServices[0x793be680]: 2
02-03 01:12:08.223 D/Mono    (21780): Assembly Ref addref System.Runtime.InteropServices[0x793be680] -> mscorlib[0x793bd780]: 6
02-03 01:12:08.248 D/Mono    (21780): DllImport attempting to load: '__Internal'.Loaded assembly: System.Runtime.Extensions.dll [External]

02-03 01:12:08.250 D/Mono    (21780): DllImport loaded library '(null)'.
02-03 01:12:08.250 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.250 D/Mono    (21780): Searching for 'java_interop_jnienv_get_java_vm'.
02-03 01:12:08.250 D/Mono    (21780): Probing 'java_interop_jnienv_get_java_vm'.
02-03 01:12:08.250 D/Mono    (21780): Found as 'java_interop_jnienv_get_java_vm'.
02-03 01:12:08.269 D/Mono    (21780): DllImport attempting to load: '__Internal'.
02-03 01:12:08.269 D/Mono    (21780): DllImport loaded library '(null)'.
02-03 01:12:08.269 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.269 D/Mono    (21780): Searching for '_monodroid_gref_log_new'.
02-03 01:12:08.269 D/Mono    (21780): Probing '_monodroid_gref_log_new'.
02-03 01:12:08.269 D/Mono    (21780): Found as '_monodroid_gref_log_new'.
02-03 01:12:08.270 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.271 D/Mono    (21780): Searching for 'java_interop_jnienv_new_global_ref'.
02-03 01:12:08.271 D/Mono    (21780): Probing 'java_interop_jnienv_new_global_ref'.
02-03 01:12:08.271 D/Mono    (21780): Found as 'java_interop_jnienv_new_global_ref'.
02-03 01:12:08.271 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.271 D/Mono    (21780): Searching for '_monodroid_gref_get'.
02-03 01:12:08.271 D/Mono    (21780): Probing '_monodroid_gref_get'.
02-03 01:12:08.271 D/Mono    (21780): Found as '_monodroid_gref_get'.
02-03 01:12:08.288 D/Mono    (21780): Image addref System.Reflection[0x793beaa0] -> System.Reflection.dll[0xaeb90100]: 2
02-03 01:12:08.288 D/Mono    (21780): Prepared to set up assembly 'System.Reflection' (System.Reflection.dll)
02-03 01:12:08.289 D/Mono    (21780): Assembly System.Reflection[0x793beaa0] added to domain RootDomain, ref_count=1
02-03 01:12:08.290 D/Mono    (21780): AOT: image 'System.Reflection.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Reflection.dll.so" not found
02-03 01:12:08.291 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Reflection.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Reflection.dll.so" not found
02-03 01:12:08.291 D/Mono    (21780): Config attempting to parse: 'System.Reflection.dll.config'.
02-03 01:12:08.291 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection/System.Reflection.config'.
02-03 01:12:08.291 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Reflection[0x793beaa0]: 2
02-03 01:12:08.291 D/Mono    (21780): Assembly Ref addref System.Reflection[0x793beaa0] -> mscorlib[0x793bd780]: 7
02-03 01:12:08.314 D/Mono    (21780): Image addref System.Collections[0x793be980] -> System.Collections.dll[0xaeb90600]: 2
02-03 01:12:08.314 D/Mono    (21780): Prepared to set up assembly 'System.Collections' (System.Collections.dll)
02-03 01:12:08.314 D/Mono    (21780): Assembly System.Collections[0x793be980] added to domain RootDomain, ref_count=1
02-03 01:12:08.316 D/Mono    (21780): AOT: image 'System.Collections.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Collections.dll.so" not foundLoaded assembly: System.Reflection.Extensions.dll [External]

02-03 01:12:08.316 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Collections.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Collections.dll.so" not found
02-03 01:12:08.316 D/Mono    (21780): Config attempting to parse: 'System.Collections.dll.config'.
02-03 01:12:08.316 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections/System.Collections.config'.
02-03 01:12:08.316 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Collections[0x793be980]: 2
02-03 01:12:08.317 D/Mono    (21780): Assembly Ref addref System.Collections[0x793be980] -> mscorlib[0x793bd780]: 8
02-03 01:12:08.347 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.347 D/Mono    (21780): Searching for 'java_interop_jnienv_find_class'.
02-03 01:12:08.347 D/Mono    (21780): Probing 'java_interop_jnienv_find_class'.
02-03 01:12:08.347 D/Mono    (21780): Found as 'java_interop_jnienv_find_class'.
02-03 01:12:08.348 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.348 D/Mono    (21780): Searching for 'java_interop_jnienv_exception_clear'.
02-03 01:12:08.348 D/Mono    (21780): Probing 'java_interop_jnienv_exception_clear'.
02-03 01:12:08.348 D/Mono    (21780): Found as 'java_interop_jnienv_exception_clear'.
02-03 01:12:08.348 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.348 D/Mono    (21780): Searching for 'java_interop_jnienv_call_object_method_a'.
02-03 01:12:08.348 D/Mono    (21780): Probing 'java_interop_jnienv_call_object_method_a'.
02-03 01:12:08.348 D/Mono    (21780): Found as 'java_interop_jnienv_call_object_method_a'.
02-03 01:12:08.348 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.348 D/Mono    (21780): Searching for 'java_interop_jnienv_delete_local_ref'.
02-03 01:12:08.348 D/Mono    (21780): Probing 'java_interop_jnienv_delete_local_ref'.
02-03 01:12:08.348 D/Mono    (21780): Found as 'java_interop_jnienv_delete_local_ref'.
02-03 01:12:08.353 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.353 D/Mono    (21780): Searching for '_monodroid_lref_log_new'.
02-03 01:12:08.353 D/Mono    (21780): Probing '_monodroid_lref_log_new'.
02-03 01:12:08.353 D/Mono    (21780): Found as '_monodroid_lref_log_new'.
02-03 01:12:08.356 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.356 D/Mono    (21780): Searching for '_monodroid_lref_log_delete'.
02-03 01:12:08.356 D/Mono    (21780): Probing '_monodroid_lref_log_delete'.
02-03 01:12:08.356 D/Mono    (21780): Found as '_monodroid_lref_log_delete'.
02-03 01:12:08.358 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.358 D/Mono    (21780): Searching for 'java_interop_jnienv_get_method_id'.
02-03 01:12:08.358 D/Mono    (21780): Probing 'java_interop_jnienv_get_method_id'.
02-03 01:12:08.358 D/Mono    (21780): Found as 'java_interop_jnienv_get_method_id'.
02-03 01:12:08.361 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.361 D/Mono    (21780): Searching for '_monodroid_gref_log_delete'.
02-03 01:12:08.361 D/Mono    (21780): Probing '_monodroid_gref_log_delete'.
02-03 01:12:08.361 D/Mono    (21780): Found as '_monodroid_gref_log_delete'.
02-03 01:12:08.362 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.362 D/Mono    (21780): Searching for 'java_interop_jnienv_delete_global_ref'.
02-03 01:12:08.362 D/Mono    (21780): Probing 'java_interop_jnienv_delete_global_ref'.
02-03 01:12:08.362 D/Mono    (21780): Found as 'java_interop_jnienv_delete_global_ref'.
02-03 01:12:08.366 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.366 D/Mono    (21780): Searching for 'java_interop_jnienv_get_static_method_id'.
02-03 01:12:08.366 D/Mono    (21780): Probing 'java_interop_jnienv_get_static_method_id'.
02-03 01:12:08.366 D/Mono    (21780): Found as 'java_interop_jnienv_get_static_method_id'.
02-03 01:12:08.373 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.373 D/Mono    (21780): Searching for 'java_interop_jnienv_call_static_object_method_a'.
02-03 01:12:08.373 D/Mono    (21780): Probing 'java_interop_jnienv_call_static_object_method_a'.
02-03 01:12:08.373 D/Mono    (21780): Found as 'java_interop_jnienv_call_static_object_method_a'.
02-03 01:12:08.379 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.379 D/Mono    (21780): Searching for '_monodroid_get_identity_hash_code'.
02-03 01:12:08.379 D/Mono    (21780): Probing '_monodroid_get_identity_hash_code'.
02-03 01:12:08.379 D/Mono    (21780): Found as '_monodroid_get_identity_hash_code'.
02-03 01:12:08.401 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.401 D/Mono    (21780): Searching for 'java_interop_jnienv_get_object_class'.
02-03 01:12:08.401 D/Mono    (21780): Probing 'java_interop_jnienv_get_object_class'.
02-03 01:12:08.401 D/Mono    (21780): Found as 'java_interop_jnienv_get_object_class'.
02-03 01:12:08.402 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.402 D/Mono    (21780): Searching for 'java_interop_jnienv_call_object_method'.
02-03 01:12:08.402 D/Mono    (21780): Probing 'java_interop_jnienv_call_object_method'.
02-03 01:12:08.402 D/Mono    (21780): Found as 'java_interop_jnienv_call_object_method'.
02-03 01:12:08.404 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.404 D/Mono    (21780): Searching for 'java_interop_jnienv_get_string_length'.
02-03 01:12:08.404 D/Mono    (21780): Probing 'java_interop_jnienv_get_string_length'.
02-03 01:12:08.405 D/Mono    (21780): Found as 'java_interop_jnienv_get_string_length'.
02-03 01:12:08.405 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.405 D/Mono    (21780): Searching for 'java_interop_jnienv_get_string_chars'.
02-03 01:12:08.405 D/Mono    (21780): Probing 'java_interop_jnienv_get_string_chars'.
02-03 01:12:08.405 D/Mono    (21780): Found as 'java_interop_jnienv_get_string_chars'.
02-03 01:12:08.407 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.407 D/Mono    (21780): Searching for 'java_interop_jnienv_release_string_chars'.
02-03 01:12:08.407 D/Mono    (21780): Probing 'java_interop_jnienv_release_string_chars'.
02-03 01:12:08.407 D/Mono    (21780): Found as 'java_interop_jnienv_release_string_chars'.
02-03 01:12:08.411 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.411 D/Mono    (21780): Searching for 'monodroid_typemap_java_to_managed'.
02-03 01:12:08.411 D/Mono    (21780): Probing 'monodroid_typemap_java_to_managed'.
02-03 01:12:08.411 D/Mono    (21780): Found as 'monodroid_typemap_java_to_managed'.
02-03 01:12:08.440 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.440 D/Mono    (21780): Searching for 'java_interop_jnienv_get_superclass'.
02-03 01:12:08.440 D/Mono    (21780): Probing 'java_interop_jnienv_get_superclass'.
02-03 01:12:08.440 D/Mono    (21780): Found as 'java_interop_jnienv_get_superclass'.
02-03 01:12:08.478 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.478 D/Mono    (21780): Searching for 'java_interop_jnienv_is_instance_of'.
02-03 01:12:08.478 D/Mono    (21780): Probing 'java_interop_jnienv_is_instance_of'.
02-03 01:12:08.478 D/Mono    (21780): Found as 'java_interop_jnienv_is_instance_of'.
02-03 01:12:08.481 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.481 D/Mono    (21780): Searching for '_monodroid_gref_log'.
02-03 01:12:08.481 D/Mono    (21780): Probing '_monodroid_gref_log'.
02-03 01:12:08.481 D/Mono    (21780): Found as '_monodroid_gref_log'.
02-03 01:12:08.514 D/Mono    (21780): Image addref System.Linq[0x793beec0] -> System.Linq.dll[0xadd36a00]: 2
02-03 01:12:08.514 D/Mono    (21780): Prepared to set up assembly 'System.Linq' (System.Linq.dll)
02-03 01:12:08.514 D/Mono    (21780): Assembly System.Linq[0x793beec0] added to domain RootDomain, ref_count=1
02-03 01:12:08.515 D/Mono    (21780): AOT: image 'System.Linq.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Linq.dll.so" not found
02-03 01:12:08.516 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Linq.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Linq.dll.so" not found
02-03 01:12:08.516 D/Mono    (21780): Config attempting to parse: 'System.Linq.dll.config'.
02-03 01:12:08.516 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq/System.Linq.config'.
02-03 01:12:08.516 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Linq[0x793beec0]: 2
02-03 01:12:08.517 D/Mono    (21780): Image addref System.Core[0x793bee60] -> System.Core.dll[0xadd36000]: 2
02-03 01:12:08.517 D/Mono    (21780): Prepared to set up assembly 'System.Core' (System.Core.dll)
02-03 01:12:08.517 D/Mono    (21780): Assembly System.Core[0x793bee60] added to domain RootDomain, ref_count=1
02-03 01:12:08.518 D/Mono    (21780): AOT: image 'System.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Core.dll.so" not found
02-03 01:12:08.519 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Core.dll.so" not found
02-03 01:12:08.519 D/Mono    (21780): Config attempting to parse: 'System.Core.dll.config'.
02-03 01:12:08.519 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Core/System.Core.config'.
02-03 01:12:08.519 D/Mono    (21780): Assembly Ref addref System.Linq[0x793beec0] -> System.Core[0x793bee60]: 2
02-03 01:12:08.520 D/Mono    (21780): Assembly Ref addref System.Core[0x793bee60] -> mscorlib[0x793bd780]: 9
02-03 01:12:08.649 D/Mono    (21780): Image addref System.Runtime.Extensions[0x793bed40] -> System.Runtime.Extensions.dll[0xadd36500]: 2
02-03 01:12:08.650 D/Mono    (21780): Prepared to set up assembly 'System.Runtime.Extensions' (System.Runtime.Extensions.dll)
02-03 01:12:08.650 D/Mono    (21780): Assembly System.Runtime.Extensions[0x793bed40] added to domain RootDomain, ref_count=1
02-03 01:12:08.662 D/Mono    (21780): AOT: image 'System.Runtime.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Runtime.Extensions.dll.so" not found
02-03 01:12:08.668 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Runtime.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Runtime.Extensions.dll.so" not found
02-03 01:12:08.668 D/Mono    (21780): Config attempting to parse: 'System.Runtime.Extensions.dll.config'.
02-03 01:12:08.669 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.Extensions/System.Runtime.Extensions.config'.
02-03 01:12:08.669 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Runtime.Extensions[0x793bed40]: 2
02-03 01:12:08.669 D/Mono    (21780): Assembly Ref addref System.Runtime.Extensions[0x793bed40] -> mscorlib[0x793bd780]: 10
02-03 01:12:08.698 D/Mono    (21780): Image addref System.Reflection.Extensions[0x793bef20] -> System.Reflection.Extensions.dll[0xadd37400]: 2
02-03 01:12:08.698 D/Mono    (21780): Prepared to set up assembly 'System.Reflection.Extensions' (System.Reflection.Extensions.dll)
02-03 01:12:08.698 D/Mono    (21780): Assembly System.Reflection.Extensions[0x793bef20] added to domain RootDomain, ref_count=1
02-03 01:12:08.703 D/Mono    (21780): AOT: image 'System.Reflection.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Reflection.Extensions.dll.so" not found
02-03 01:12:08.704 D/Mono    (21780): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Reflection.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App1-1/lib/arm/libaot-System.Reflection.Extensions.dll.so" not found
02-03 01:12:08.704 D/Mono    (21780): Config attempting to parse: 'System.Reflection.Extensions.dll.config'.
02-03 01:12:08.704 D/Mono    (21780): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection.Extensions/System.Reflection.Extensions.config'.
02-03 01:12:08.704 D/Mono    (21780): Assembly Ref addref Java.Interop[0x793be6e0] -> System.Reflection.Extensions[0x793bef20]: 2
02-03 01:12:08.704 D/Mono    (21780): Assembly Ref addref System.Reflection.Extensions[0x793bef20] -> mscorlib[0x793bd780]: 11
02-03 01:12:08.754 D/Mono    (21780): Assembly Ref addref Mono.Android[0x793be5c0] -> System.Core[0x793bee60]: 3
02-03 01:12:08.756 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.756 D/Mono    (21780): Searching for 'monodroid_typemap_managed_to_java'.
02-03 01:12:08.756 D/Mono    (21780): Probing 'monodroid_typemap_managed_to_java'.
02-03 01:12:08.756 D/Mono    (21780): Found as 'monodroid_typemap_managed_to_java'.
02-03 01:12:08.795 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.795 D/Mono    (21780): Searching for 'java_interop_jnienv_alloc_object'.
02-03 01:12:08.795 D/Mono    (21780): Probing 'java_interop_jnienv_alloc_object'.
02-03 01:12:08.796 D/Mono    (21780): Found as 'java_interop_jnienv_alloc_object'.
02-03 01:12:08.988 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.988 D/Mono    (21780): Searching for 'java_interop_jnienv_register_natives'.
02-03 01:12:08.988 D/Mono    (21780): Probing 'java_interop_jnienv_register_natives'.
02-03 01:12:08.988 D/Mono    (21780): Found as 'java_interop_jnienv_register_natives'.
02-03 01:12:08.993 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.993 D/Mono    (21780): Searching for 'java_interop_jnienv_call_nonvirtual_void_method_a'.
02-03 01:12:08.993 D/Mono    (21780): Probing 'java_interop_jnienv_call_nonvirtual_void_method_a'.
02-03 01:12:08.993 D/Mono    (21780): Found as 'java_interop_jnienv_call_nonvirtual_void_method_a'.
02-03 01:12:08.998 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:08.998 D/Mono    (21780): Searching for '_monodroid_gc_wait_for_bridge_processing'.
02-03 01:12:08.998 D/Mono    (21780): Probing '_monodroid_gc_wait_for_bridge_processing'.
02-03 01:12:08.998 D/Mono    (21780): Found as '_monodroid_gc_wait_for_bridge_processing'.
02-03 01:12:09.004 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:09.004 D/Mono    (21780): Searching for 'java_interop_jnienv_is_same_object'.
02-03 01:12:09.004 D/Mono    (21780): Probing 'java_interop_jnienv_is_same_object'.
02-03 01:12:09.004 D/Mono    (21780): Found as 'java_interop_jnienv_is_same_object'.
02-03 01:12:09.007 D/Mono    (21780): DllImport searching in: '__Internal' ('(null)').
02-03 01:12:09.007 D/Mono    (21780): Searching for 'java_interop_jnienv_call_static_void_method_a'.
02-03 01:12:09.007 D/Mono    (21780): Probing 'java_interop_jnienv_call_static_void_method_a'.
02-03 01:12:09.007 D/Mono    (21780): Found as 'java_interop_jnienv_call_static_void_method_a'.
02-03 01:12:09.008 D/Mono    (21780): Assembly Ref addref FormsViewGroup[0x793bdd80] -> mscorlib[0x793bd780]: 12
02-03 01:12:09.008 D/Mono    (21780): Assembly Ref addref FormsViewGroup[0x793bdd80] -> Mono.Android[0x793be5c0]: 2
02-03 01:12:09.010 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Animated.Vector.Drawable[0x793bdb40] -> mscorlib[0x793bd780]: 13
02-03 01:12:09.010 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Animated.Vector.Drawable[0x793bdb40] -> Mono.Android[0x793be5c0]: 3
02-03 01:12:09.011 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Annotations[0x793bdde0] -> mscorlib[0x793bd780]: 14
02-03 01:12:09.011 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Annotations[0x793bdde0] -> Mono.Android[0x793be5c0]: 4
02-03 01:12:09.012 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Compat[0x793bdf60] -> mscorlib[0x793bd780]: 15
02-03 01:12:09.013 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Compat[0x793bdf60] -> Mono.Android[0x793be5c0]: 5
02-03 01:12:09.014 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Core.UI[0x793bde40] -> mscorlib[0x793bd780]: 16
02-03 01:12:09.014 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Core.UI[0x793bde40] -> Mono.Android[0x793be5c0]: 6
02-03 01:12:09.015 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Core.Utils[0x793bdfc0] -> mscorlib[0x793bd780]: 17
02-03 01:12:09.015 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Core.Utils[0x793bdfc0] -> Mono.Android[0x793be5c0]: 7
02-03 01:12:09.016 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Design[0x793be020] -> mscorlib[0x793bd780]: 18
02-03 01:12:09.016 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Design[0x793be020] -> Mono.Android[0x793be5c0]: 8
02-03 01:12:09.017 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Fragment[0x793be080] -> mscorlib[0x793bd780]: 19
02-03 01:12:09.017 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Fragment[0x793be080] -> Mono.Android[0x793be5c0]: 9
02-03 01:12:09.018 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Media.Compat[0x793be0e0] -> mscorlib[0x793bd780]: 20
02-03 01:12:09.018 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Media.Compat[0x793be0e0] -> Mono.Android[0x793be5c0]: 10
02-03 01:12:09.020 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Transition[0x793be140] -> mscorlib[0x793bd780]: 21
02-03 01:12:09.020 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Transition[0x793be140] -> Mono.Android[0x793be5c0]: 11
02-03 01:12:09.021 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v4[0x793be1a0] -> mscorlib[0x793bd780]: 22
02-03 01:12:09.021 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v4[0x793be1a0] -> Mono.Android[0x793be5c0]: 12
02-03 01:12:09.023 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0x793be200] -> mscorlib[0x793bd780]: 23
02-03 01:12:09.023 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0x793be200] -> Mono.Android[0x793be5c0]: 13
02-03 01:12:09.024 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.CardView[0x793be260] -> mscorlib[0x793bd780]: 24
02-03 01:12:09.025 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.CardView[0x793be260] -> Mono.Android[0x793be5c0]: 14
02-03 01:12:09.026 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.MediaRouter[0x793be2c0] -> mscorlib[0x793bd780]: 25
02-03 01:12:09.026 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.MediaRouter[0x793be2c0] -> Mono.Android[0x793be5c0]: 15
02-03 01:12:09.027 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.Palette[0x793be320] -> mscorlib[0x793bd780]: 26
02-03 01:12:09.027 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.Palette[0x793be320] -> Mono.Android[0x793be5c0]: 16
02-03 01:12:09.027 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.RecyclerView[0x793be380] -> mscorlib[0x793bd780]: 27
02-03 01:12:09.028 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.v7.RecyclerView[0x793be380] -> Mono.Android[0x793be5c0]: 17
02-03 01:12:09.029 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Vector.Drawable[0x793be3e0] -> mscorlib[0x793bd780]: 28
02-03 01:12:09.029 D/Mono    (21780): Assembly Ref addref Xamarin.Android.Support.Vector.Drawable[0x793be3e0] -> Mono.Android[0x793be5c0]: 18
02-03 01:12:09.030 D/Mono    (21780): Assembly Loader probing location: 'System.Security.Permissions'.
02-03 01:12:09.030 F/monodroid-assembly(21780): Could not load assembly 'System.Security.Permissions' during startup registration.
02-03 01:12:09.030 F/monodroid-assembly(21780): This might be due to an invalid debug installation.
02-03 01:12:09.030 F/monodroid-assembly(21780): A common cause is to 'adb install' the app directly instead of doing from the IDE.

@TheFanatr
Copy link
Contributor Author

@danibjor That is super weird. System.Security.Permissions is supposed to be a cross-platform-compatible package as far as I can tell. I will look into it. It is used in StandardStorage, but should not cause problems. The only suspicious part is that there is that the package has a dependency on System.Security.AccessControl, which depends on different things for each platform; it is possible that Xamarin Android requires the specific dependencies of the Android version of AccessControl instead of the .NETStandard one. If you just try referencing StandardStorage from an Android app, does it still not run?

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Feb 3, 2018

As far as I can tell, this is due to the shared Mono runtime feature. A linker process reads through the app source and dependencies and gets rid of anything it thinks shouldn't be needed, then packages the leftover together, and puts all libraries and the app on top; it si possible that this process is removing that dependency erroneously. This has happened before with other projects according to my brief research. Try going to Android Options in the project settings on Visual Studio 2017 and uncheck Use Shared Runtime. Does that work? Either way, I want to make it so that it just works OOB, but we can use that for now, if needed.

@TheFanatr
Copy link
Contributor Author

Also, what version of the Xamarin Android SDK are you using? .NET Standard 2.0 supports a minimum version of 8.0.

@danibjor
Copy link

danibjor commented Feb 3, 2018

@TheFanatr Tried a new Blank Android project:
Device is running Android 7.1, project targets Android 8.

Adding just a reference to the nuget package, StandardStorage (v0.11) deploys fine.

Adding the Parse project to the solution and adding a reference to my Android project, do not build. Complains about missing Microsoft.Extensions.PlatformAstractions in the Android project. Adding that nuget-package does not solve the prolem:

Severity	Code	Description	Project	File	Line	Suppression State
Error		Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly 'Microsoft.DotNet.PlatformAbstractions, Version=2.0.4.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. Perhaps it doesn't exist in the Mono for Android profile?
File name: 'Microsoft.DotNet.PlatformAbstractions.dll'
   at Java.Interop.Tools.Cecil.DirectoryAssemblyResolver.Resolve(AssemblyNameReference reference, ReaderParameters parameters) in /Users/builder/data/lanes/5749/75f8c683/source/xamarin-android/external/Java.Interop/src/Java.Interop.Tools.Cecil/Java.Interop.Tools.Cecil/DirectoryAssemblyResolver.cs:line 229
   at Xamarin.Android.Tasks.ResolveAssemblies.AddAssemblyReferences(DirectoryAssemblyResolver resolver, ICollection`1 assemblies, AssemblyDefinition assembly, Boolean topLevel)
   at Xamarin.Android.Tasks.ResolveAssemblies.Execute(DirectoryAssemblyResolver resolver)	AndroidTest			

This is really wierd, as it compiles fine when you add it to a mixed project wich targets both Android and iOS. thus, crash when it deploys and tries to start the App.

The computer/dev env is up to date as of yesterday.

@danibjor
Copy link

danibjor commented Feb 3, 2018

Sidenote: When you do a file-new-project, with an Android only project, the highest .NET version you can choose is 4.6.1. No option to choose dotnet core.

@TheFanatr
Copy link
Contributor Author

According to the compatibility table, .NET Standard 2.0 supports .NET Framework 4.6.1 as long as the Core 2.0 SDK is installed with it, and considering that it lists Xamarin Android 8.0 as supported, it should automatically add the .NET Core SDK. When creating new Xamarin projects, there is a template that lets you choose between using a PCL as the shared project or a .NET Standard Library as one instead. Could you please make sure that you are choosing the right one? Otherwise, what happens when you reference the Microsoft.Extensions.PlatformAbstractions package from within the app? Does it actually compile? This is a very odd problem. I am working to get a Xamarin Android testing environment up and running so that I can try to dig around with this myself.

@TheFanatr
Copy link
Contributor Author

Also, about .NET Framework 4.6.1 being the highest one you can target, you can install more targets here: https://www.microsoft.com/net/download/windows
Is it possible that you do not have the latest supported .NET Core for Xamarin Android to work properly? Either way, it is still very weird that iOS works, but Android does not.

@danibjor
Copy link

danibjor commented Feb 3, 2018

The error message above was from when I had the package added. Did not compile.

I do not get the option to choose Dotnet core when I start a new android project.

With the Xamarin forms project (iOS, Android, Win UWP), I choose dotnet core.

@danibjor
Copy link

danibjor commented Feb 4, 2018

core was up to date (v2.1.4). Updated .NET to .NET Framework 4.7.1 (latest release) - New test project with just Android. Same result.

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Feb 4, 2018

An extension ate my project files. This could take a while to clean up. When I get everything working again, I will try to get an Android app running and report back.

@danibjor
Copy link

danibjor commented Feb 4, 2018

Tried to build a test project on VS for Mac.

After manually adding some Nuget packages (that is complained about was missing):

  • StandardStorage
  • Microsoft.Extensions.PlatformAbstractions
  • Microsoft.Dotnet.PlatformAbstractions

Tested some basic CRUD on iOS: looking good so far
Tested the same on Android, when i Fetch data, this is whats thrown

[Choreographer] Skipped 7336 frames!  The application may be doing too much work on its main thread.
Thread started: <Thread Pool> #10
Thread started: <Thread Pool> #11
Thread started: <Thread Pool> #12
Thread started: <Thread Pool> #13
Thread started: <Thread Pool> #14
Thread started: <Thread Pool> #15
Thread started: <Thread Pool> #16
System.AggregateException: One or more errors occurred. ---> System.EntryPointNotFoundException: GetModuleFileName
  at (wrapper managed-to-native) StandardStorage.StorageUtilities:GetModuleFileName (System.Runtime.InteropServices.HandleRef,System.Text.StringBuilder,int)
  at StandardStorage.StorageUtilities.GetModuleFileNameLongPath (System.Runtime.InteropServices.HandleRef hModule) [0x00042] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.get_ExecutablePath () [0x00021] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.GetAppFileVersionInfo () [0x00046] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.get_CompanyName () [0x00042] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.GetAppSpecificStoragePathFromBasePath (System.String basePath) [0x00000] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.FileSystem.get_LocalStorage () [0x00007] in <492e9128255c4fa2885761586862f4f3>:0 
  at Parse.Common.Internal.StorageController+<>c.<.ctor>b__5_1 (System.Threading.Tasks.Task _) [0x00001] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Storage/Portable/StorageController.cs:147 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
   --- End of inner exception stack trace ---
  at System.Threading.Tasks.Task.ThrowIfExceptional (System.Boolean includeTaskCanceledExceptions) [0x00011] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Wait (System.Int32 millisecondsTimeout, System.Threading.CancellationToken cancellationToken) [0x00043] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Wait () [0x00000] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.ParseUser.get_CurrentUser () [0x00007] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Public/ParseUser.cs:406 
  at Parse.ParseQuery`1[T].FindAsync (System.Threading.CancellationToken cancellationToken) [0x00008] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Public/ParseQuery.cs:517 
  at Parse.ParseQuery`1[T].FindAsync () [0x00000] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Public/ParseQuery.cs:507 
  at test.CloudDataStore+<GetItemsAsync>d__2.MoveNext () [0x0003c] in /Users/daniel/Projects/test/test/Services/CloudDataStore.cs:30 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x0003e] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00028] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00008] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Runtime.CompilerServices.TaskAwaiter`1[TResult].GetResult () [0x00000] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at test.ItemsViewModel+<ExecuteLoadItemsCommand>d__9.MoveNext () [0x00061] in /Users/daniel/Projects/test/test/ViewModels/ItemsViewModel.cs:39 
---> (Inner Exception #0) System.EntryPointNotFoundException: GetModuleFileName
  at (wrapper managed-to-native) StandardStorage.StorageUtilities:GetModuleFileName (System.Runtime.InteropServices.HandleRef,System.Text.StringBuilder,int)
  at StandardStorage.StorageUtilities.GetModuleFileNameLongPath (System.Runtime.InteropServices.HandleRef hModule) [0x00042] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.get_ExecutablePath () [0x00021] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.GetAppFileVersionInfo () [0x00046] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.get_CompanyName () [0x00042] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.StorageUtilities.GetAppSpecificStoragePathFromBasePath (System.String basePath) [0x00000] in <492e9128255c4fa2885761586862f4f3>:0 
  at StandardStorage.FileSystem.get_LocalStorage () [0x00007] in <492e9128255c4fa2885761586862f4f3>:0 
  at Parse.Common.Internal.StorageController+<>c.<.ctor>b__5_1 (System.Threading.Tasks.Task _) [0x00001] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Storage/Portable/StorageController.cs:147 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at Parse.Common.Internal.InternalExtensions+<>c__DisplayClass7_0`1[TResult].<OnSuccess>b__0 (System.Threading.Tasks.Task t) [0x0002b] in /Users/daniel/Desktop/Parse-SDK-dotNET/Parse/Internal/Utilities/InternalExtensions.cs:85 
  at System.Threading.Tasks.ContinuationResultTaskFromTask`1[TResult].InnerInvoke () [0x00024] in <657aa8fea4454dc898a9e5f379c58734>:0 
  at System.Threading.Tasks.Task.Execute () [0x00010] in <657aa8fea4454dc898a9e5f379c58734>:0 <---

[Choreographer] Skipped 202 frames!  The application may be doing too much work on its main thread.
Thread finished: <Thread Pool> #9
Thread started: <Thread Pool> #17
Thread finished: <Thread Pool> #11
Thread finished: <Thread Pool> #15
Thread finished: <Thread Pool> #14
Thread finished: <Thread Pool> #13

@TheFanatr
Copy link
Contributor Author

Oh, I think I know why that is happening. I will try to fix it soon.

@TheFanatr
Copy link
Contributor Author

There's this extension that I was using called "EditorConfig Language Service" and it crashed Visual Studio about 10 times in a row, so I had to get rid of it, but now any project I call "Parse" will fail to open. I may have to reinstall Visual Studio. As soon as I can successfully open the project, I will start to tackle some of the issues.

@TheFanatr
Copy link
Contributor Author

Update: I think that I found the source of the problem, and have used a workaround. I was in the middle of reformatting the source code and removing redundant interfaces, so the upcoming commit will include breaking changes but hopefully a fix as well.

@danibjor
Copy link

danibjor commented Feb 5, 2018

@TheFanatr Just give me a hint if you want me to test out something. I'm more than happy to spend time to get this SDK up and running with the latest bits of Xamarin.

@TheFanatr
Copy link
Contributor Author

@danibjor Thanks. I was busy for the past day or so, but plan on getting back into fixing this up. Right now, I am in the probably nearing final stages of cleaning up redundant code, but I have to backtrack a little bit because I didn't realize that Moq really only works with interfaces, unless everything is virtual, which is not an option.

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Feb 7, 2018

Update: I have to redo everything. I should have ran the unit tests while I was making the changes; I'll know for next time.

@TheFanatr
Copy link
Contributor Author

@montymxb In my investigation into how it would be possible to eliminate redundant interfaces within the codebase, I noticed that Moq, which is used in 87 of the unit tests, requires interfaces or at least classes with virtual members where mocked implementation is needed in order to actually set up the mocked objects. Knowing this, the only pheasible way I found that would allow for the removal of redundant interfaces without paying for a library like Typemock, is using Microsoft Fakes (https://docs.microsoft.com/en-us/visualstudio/test/isolating-code-under-test-with-microsoft-fakes). I think that, before anything else, I will try to convert all testing to the Microsoft Fakes system, in order to allow simplification of the codebase and easier development. Then, I will try to add more tests. Does this sound ok?

@TheFanatr
Copy link
Contributor Author

I am also aware that the members that need to be mocked could be made virtual without much cost; however, it would also allow users to override those classes with their own implementations, and I don't think that is very safe potentially.

@TheFanatr
Copy link
Contributor Author

@danibjor Could you please try the version that is currently in the repository? It may be working now that I have changed a few things.

@danibjor
Copy link

danibjor commented Feb 9, 2018

@TheFanatr In this repo? or your fork?

@TheFanatr
Copy link
Contributor Author

Fork

@danibjor
Copy link

danibjor commented Feb 9, 2018

iOS, OK.

Output when I try to deploy on an Android device

Android application is debugging.
Loaded assembly: App5.Android.dll
Loaded assembly: App5.dll
Loaded assembly: FormsViewGroup.dll [External]
Loaded assembly: Microsoft.Extensions.PlatformAbstractions.dll [External]
Loaded assembly: StandardStorage.dll [External]
Loaded assembly: Xamarin.Android.Support.Animated.Vector.Drawable.dll [External]
Loaded assembly: Xamarin.Android.Support.Annotations.dll [External]
Loaded assembly: Xamarin.Android.Support.Compat.dll [External]
Loaded assembly: Xamarin.Android.Support.Core.UI.dll [External]
Loaded assembly: Xamarin.Android.Support.Core.Utils.dll [External]
Loaded assembly: Xamarin.Android.Support.Design.dll [External]
Loaded assembly: Xamarin.Android.Support.Fragment.dll [External]
02-09 11:13:26.978 I/art     (24554): Late-enabling -Xcheck:jni
02-09 11:13:27.097 W/monodroid(24554): Creating public update directory: `/data/user/0/com.companyname.App5/files/.__override__`
02-09 11:13:27.097 W/monodroid(24554): Using override path: /data/user/0/com.companyname.App5/files/.__override__
02-09 11:13:27.097 W/monodroid(24554): Trying to load sgen from: /data/user/0/com.companyname.App5/files/.__override__/libmonosgen-2.0.so
02-09 11:13:27.097 W/monodroid(24554): Trying to load sgen from: /storage/emulated/0/Android/data/com.companyname.App5/files/.__override__/libmonosgen-2.0.so
02-09 11:13:27.097 W/monodroid(24554): Trying to load sgen from: /storage/emulated/0/../legacy/Android/data/com.companyname.App5/files/.__override__/libmonosgen-2.0.so
02-09 11:13:27.097 W/monodroid(24554): Trying to load sgen from: /data/app/com.companyname.App5-1/lib/arm/libmonosgen-2.0.so
02-09 11:13:27.100 W/monodroid-debug(24554): Trying to initialize the debugger with options: --debugger-agent=transport=dt_socket,loglevel=0,address=127.0.0.1:29222,server=y,embedding=1
Loaded assembly: Xamarin.Android.Support.Media.Compat.dll [External]02-09 11:13:27.127 W/monodroid-debug(24554): Accepted stdout connection: 34

02-09 11:13:27.887 D/Mono    (24554): Image addref mscorlib[0x7943d780] -> mscorlib.dll[0x794a6400]: 2
02-09 11:13:27.887 D/Mono    (24554): Prepared to set up assembly 'mscorlib' (mscorlib.dll)
02-09 11:13:27.889 D/Mono    (24554): AOT: image 'mscorlib.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-mscorlib.dll.so" not found
02-09 11:13:27.889 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/mscorlib.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-mscorlib.dll.so" not found
02-09 11:13:27.892 D/Mono    (24554): Config attempting to parse: 'mscorlib.dll.config'.
02-09 11:13:27.893 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/mscorlib/mscorlib.config'.
02-09 11:13:27.925 D/Mono    (24554): Assembly mscorlib[0x7943d780] added to domain RootDomain, ref_count=1
02-09 11:13:28.028 D/Mono    (24554): Image addref App5.Android[0x7943d840] -> App5.Android.dll[0x794a7300]: 2
02-09 11:13:28.029 D/Mono    (24554): Prepared to set up assembly 'App5.Android' (App5.Android.dll)
02-09 11:13:28.029 D/Mono    (24554): Assembly App5.Android[0x7943d840] added to domain RootDomain, ref_count=1
02-09 11:13:28.030 D/Mono    (24554): AOT: image 'App5.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-App5.Android.dll.so" not found
02-09 11:13:28.031 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/App5.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-App5.Android.dll.so" not found
02-09 11:13:28.031 D/Mono    (24554): Config attempting to parse: 'App5.Android.dll.config'.Loaded assembly: Xamarin.Android.Support.Transition.dll [External]

02-09 11:13:28.031 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/App5.Android/App5.Android.config'.
02-09 11:13:28.031 D/Mono    (24554): Image addref App5[0x7943d7e0] -> App5.dll[0x794a7800]: 2
02-09 11:13:28.031 D/Mono    (24554): Prepared to set up assembly 'App5' (App5.dll)
02-09 11:13:28.031 D/Mono    (24554): Assembly App5[0x7943d7e0] added to domain RootDomain, ref_count=1
02-09 11:13:28.033 D/Mono    (24554): AOT: image 'App5.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-App5.dll.so" not found
02-09 11:13:28.033 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/App5.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-App5.dll.so" not found
02-09 11:13:28.033 D/Mono    (24554): Config attempting to parse: 'App5.dll.config'.
02-09 11:13:28.033 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/App5/App5.config'.
02-09 11:13:28.034 D/Mono    (24554): Image addref FormsViewGroup[0x7943d8a0] -> FormsViewGroup.dll[0x794a9600]: 2
02-09 11:13:28.034 D/Mono    (24554): Prepared to set up assembly 'FormsViewGroup' (FormsViewGroup.dll)
02-09 11:13:28.034 D/Mono    (24554): Assembly FormsViewGroup[0x7943d8a0] added to domain RootDomain, ref_count=1
02-09 11:13:28.035 D/Mono    (24554): AOT: image 'FormsViewGroup.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-FormsViewGroup.dll.so" not found
02-09 11:13:28.036 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/FormsViewGroup.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-FormsViewGroup.dll.so" not found
02-09 11:13:28.036 D/Mono    (24554): Config attempting to parse: 'FormsViewGroup.dll.config'.
02-09 11:13:28.036 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/FormsViewGroup/FormsViewGroup.config'.
02-09 11:13:28.037 D/Mono    (24554): Image addref Microsoft.Extensions.PlatformAbstractions[0x7943d900] -> Microsoft.Extensions.PlatformAbstractions.dll[0x794a9b00]: 2
02-09 11:13:28.037 D/Mono    (24554): Prepared to set up assembly 'Microsoft.Extensions.PlatformAbstractions' (Microsoft.Extensions.PlatformAbstractions.dll)Loaded assembly: Xamarin.Android.Support.v4.dll [External]

02-09 11:13:28.037 D/Mono    (24554): Assembly Microsoft.Extensions.PlatformAbstractions[0x7943d900] added to domain RootDomain, ref_count=1
02-09 11:13:28.038 D/Mono    (24554): AOT: image 'Microsoft.Extensions.PlatformAbstractions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Microsoft.Extensions.PlatformAbstractions.dll.so" not found
02-09 11:13:28.039 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Microsoft.Extensions.PlatformAbstractions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Microsoft.Extensions.PlatformAbstractions.dll.so" not found
02-09 11:13:28.039 D/Mono    (24554): Config attempting to parse: 'Microsoft.Extensions.PlatformAbstractions.dll.config'.
02-09 11:13:28.039 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.Extensions.PlatformAbstractions/Microsoft.Extensions.PlatformAbstractions.config'.
02-09 11:13:28.039 D/Mono    (24554): Image addref StandardStorage[0x7943d960] -> StandardStorage.dll[0xaf1ca000]: 2
Loaded assembly: Xamarin.Android.Support.v7.AppCompat.dll [External]02-09 11:13:28.039 D/Mono    (24554): Prepared to set up assembly 'StandardStorage' (StandardStorage.dll)

02-09 11:13:28.039 D/Mono    (24554): Assembly StandardStorage[0x7943d960] added to domain RootDomain, ref_count=1
02-09 11:13:28.040 D/Mono    (24554): AOT: image 'StandardStorage.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-StandardStorage.dll.so" not found
02-09 11:13:28.041 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/StandardStorage.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-StandardStorage.dll.so" not found
02-09 11:13:28.041 D/Mono    (24554): Config attempting to parse: 'StandardStorage.dll.config'.
02-09 11:13:28.041 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/StandardStorage/StandardStorage.config'.
02-09 11:13:28.042 D/Mono    (24554): Image addref Xamarin.Android.Support.Animated.Vector.Drawable[0x7943d9c0] -> Xamarin.Android.Support.Animated.Vector.Drawable.dll[0xaf1ca500]: 2
02-09 11:13:28.042 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Animated.Vector.Drawable' (Xamarin.Android.Support.Animated.Vector.Drawable.dll)
02-09 11:13:28.042 D/Mono    (24554): Assembly Xamarin.Android.Support.Animated.Vector.Drawable[0x7943d9c0] added to domain RootDomain, ref_count=1
02-09 11:13:28.043 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Animated.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Animated.Vector.Drawable.dll.so" not found
02-09 11:13:28.044 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Animated.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Animated.Vector.Drawable.dll.so" not found
02-09 11:13:28.044 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Animated.Vector.Drawable.dll.config'.
02-09 11:13:28.044 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Animated.Vector.Drawable/Xamarin.Android.Support.Animated.Vector.Drawable.config'.
02-09 11:13:28.044 D/Mono    (24554): Image addref Xamarin.Android.Support.Annotations[0x7943dba0] -> Xamarin.Android.Support.Annotations.dll[0xaf1caa00]: 2
02-09 11:13:28.044 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Annotations' (Xamarin.Android.Support.Annotations.dll)
02-09 11:13:28.044 D/Mono    (24554): Assembly Xamarin.Android.Support.Annotations[0x7943dba0] added to domain RootDomain, ref_count=1
Loaded assembly: Xamarin.Android.Support.v7.CardView.dll [External]
02-09 11:13:28.046 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Annotations.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Annotations.dll.so" not found
02-09 11:13:28.047 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Annotations.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Annotations.dll.so" not found
02-09 11:13:28.047 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Annotations.dll.config'.
02-09 11:13:28.047 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Annotations/Xamarin.Android.Support.Annotations.config'.
02-09 11:13:28.047 D/Mono    (24554): Image addref Xamarin.Android.Support.Compat[0x7943dc00] -> Xamarin.Android.Support.Compat.dll[0xaf1caf00]: 2
Loaded assembly: Xamarin.Android.Support.v7.MediaRouter.dll [External]02-09 11:13:28.047 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Compat' (Xamarin.Android.Support.Compat.dll)

02-09 11:13:28.047 D/Mono    (24554): Assembly Xamarin.Android.Support.Compat[0x7943dc00] added to domain RootDomain, ref_count=1
02-09 11:13:28.049 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Compat.dll.so" not found
02-09 11:13:28.050 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Compat.dll.so" not foundLoaded assembly: Xamarin.Android.Support.v7.Palette.dll [External]

02-09 11:13:28.050 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Compat.dll.config'.
02-09 11:13:28.050 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Compat/Xamarin.Android.Support.Compat.config'.
02-09 11:13:28.050 D/Mono    (24554): Image addref Xamarin.Android.Support.Core.UI[0x7943dc60] -> Xamarin.Android.Support.Core.UI.dll[0xaf1cb400]: 2
02-09 11:13:28.050 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Core.UI' (Xamarin.Android.Support.Core.UI.dll)
02-09 11:13:28.050 D/Mono    (24554): Assembly Xamarin.Android.Support.Core.UI[0x7943dc60] added to domain RootDomain, ref_count=1
Loaded assembly: Xamarin.Android.Support.v7.RecyclerView.dll [External]
02-09 11:13:28.051 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Core.UI.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Core.UI.dll.so" not found
02-09 11:13:28.052 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Core.UI.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Core.UI.dll.so" not found
Loaded assembly: Xamarin.Android.Support.Vector.Drawable.dll [External]02-09 11:13:28.052 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Core.UI.dll.config'.

02-09 11:13:28.052 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Core.UI/Xamarin.Android.Support.Core.UI.config'.
02-09 11:13:28.053 D/Mono    (24554): Image addref Xamarin.Android.Support.Core.Utils[0x7943dcc0] -> Xamarin.Android.Support.Core.Utils.dll[0xaf1cb900]: 2Loaded assembly: Xamarin.Forms.Core.dll [External]

02-09 11:13:28.053 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Core.Utils' (Xamarin.Android.Support.Core.Utils.dll)
Loaded assembly: Xamarin.Forms.Platform.Android.dll [External]02-09 11:13:28.053 D/Mono    (24554): Assembly Xamarin.Android.Support.Core.Utils[0x7943dcc0] added to domain RootDomain, ref_count=1

02-09 11:13:28.054 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Core.Utils.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Core.Utils.dll.so" not found
02-09 11:13:28.055 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Core.Utils.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Core.Utils.dll.so" not found
02-09 11:13:28.055 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Core.Utils.dll.config'.Loaded assembly: Xamarin.Forms.Platform.dll [External]

02-09 11:13:28.055 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Core.Utils/Xamarin.Android.Support.Core.Utils.config'.
02-09 11:13:28.055 D/Mono    (24554): Image addref Xamarin.Android.Support.Design[0x7943dd20] -> Xamarin.Android.Support.Design.dll[0xaf1cbe00]: 2
02-09 11:13:28.055 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Design' (Xamarin.Android.Support.Design.dll)
02-09 11:13:28.055 D/Mono    (24554): Assembly Xamarin.Android.Support.Design[0x7943dd20] added to domain RootDomain, ref_count=1
02-09 11:13:28.057 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Design.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Design.dll.so" not found
02-09 11:13:28.057 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Design.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Design.dll.so" not found
02-09 11:13:28.057 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Design.dll.config'.
02-09 11:13:28.058 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Design/Xamarin.Android.Support.Design.config'.
02-09 11:13:28.058 D/Mono    (24554): Image addref Xamarin.Android.Support.Fragment[0x7943dd80] -> Xamarin.Android.Support.Fragment.dll[0xaf1cc300]: 2
02-09 11:13:28.058 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Fragment' (Xamarin.Android.Support.Fragment.dll)
02-09 11:13:28.058 D/Mono    (24554): Assembly Xamarin.Android.Support.Fragment[0x7943dd80] added to domain RootDomain, ref_count=1
02-09 11:13:28.059 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Fragment.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Fragment.dll.so" not found
02-09 11:13:28.060 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Fragment.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Fragment.dll.so" not found
02-09 11:13:28.060 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Fragment.dll.config'.
02-09 11:13:28.060 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Fragment/Xamarin.Android.Support.Fragment.config'.Loaded assembly: Xamarin.Forms.Xaml.dll [External]

02-09 11:13:28.061 D/Mono    (24554): Image addref Xamarin.Android.Support.Media.Compat[0x7943dde0] -> Xamarin.Android.Support.Media.Compat.dll[0xaf1cc800]: 2
02-09 11:13:28.061 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Media.Compat' (Xamarin.Android.Support.Media.Compat.dll)
02-09 11:13:28.061 D/Mono    (24554): Assembly Xamarin.Android.Support.Media.Compat[0x7943dde0] added to domain RootDomain, ref_count=1
02-09 11:13:28.062 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Media.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Media.Compat.dll.so" not found
02-09 11:13:28.063 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Media.Compat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Media.Compat.dll.so" not found
02-09 11:13:28.063 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Media.Compat.dll.config'.
02-09 11:13:28.063 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Media.Compat/Xamarin.Android.Support.Media.Compat.config'.
02-09 11:13:28.063 D/Mono    (24554): Image addref Xamarin.Android.Support.Transition[0x7943de40] -> Xamarin.Android.Support.Transition.dll[0xaf1ccd00]: 2
02-09 11:13:28.063 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Transition' (Xamarin.Android.Support.Transition.dll)
02-09 11:13:28.063 D/Mono    (24554): Assembly Xamarin.Android.Support.Transition[0x7943de40] added to domain RootDomain, ref_count=1
02-09 11:13:28.065 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Transition.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Transition.dll.so" not found
02-09 11:13:28.066 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Transition.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Transition.dll.so" not found
02-09 11:13:28.066 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Transition.dll.config'.
Loaded assembly: Parse.dll02-09 11:13:28.066 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Transition/Xamarin.Android.Support.Transition.config'.

02-09 11:13:28.066 D/Mono    (24554): Image addref Xamarin.Android.Support.v4[0x7943dea0] -> Xamarin.Android.Support.v4.dll[0xaf1cd200]: 2
02-09 11:13:28.066 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.v4' (Xamarin.Android.Support.v4.dll)
02-09 11:13:28.066 D/Mono    (24554): Assembly Xamarin.Android.Support.v4[0x7943dea0] added to domain RootDomain, ref_count=1
02-09 11:13:28.067 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.v4.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v4.dll.so" not found
02-09 11:13:28.068 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v4.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v4.dll.so" not found
02-09 11:13:28.069 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.v4.dll.config'.
02-09 11:13:28.069 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v4/Xamarin.Android.Support.v4.config'.
02-09 11:13:28.069 D/Mono    (24554): Image addref Xamarin.Android.Support.v7.AppCompat[0x7943df00] -> Xamarin.Android.Support.v7.AppCompat.dll[0xaf1cd700]: 2
02-09 11:13:28.069 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.v7.AppCompat' (Xamarin.Android.Support.v7.AppCompat.dll)
02-09 11:13:28.069 D/Mono    (24554): Assembly Xamarin.Android.Support.v7.AppCompat[0x7943df00] added to domain RootDomain, ref_count=1
02-09 11:13:28.070 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.v7.AppCompat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.AppCompat.dll.so" not found
02-09 11:13:28.071 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.AppCompat.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.AppCompat.dll.so" not found
02-09 11:13:28.071 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.v7.AppCompat.dll.config'.
02-09 11:13:28.071 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.AppCompat/Xamarin.Android.Support.v7.AppCompat.config'.
02-09 11:13:28.072 D/Mono    (24554): Image addref Xamarin.Android.Support.v7.CardView[0x7943df60] -> Xamarin.Android.Support.v7.CardView.dll[0xaf1cdc00]: 2
02-09 11:13:28.072 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.v7.CardView' (Xamarin.Android.Support.v7.CardView.dll)
02-09 11:13:28.072 D/Mono    (24554): Assembly Xamarin.Android.Support.v7.CardView[0x7943df60] added to domain RootDomain, ref_count=1
02-09 11:13:28.073 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.v7.CardView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.CardView.dll.so" not found
02-09 11:13:28.074 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.CardView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.CardView.dll.so" not found
02-09 11:13:28.074 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.v7.CardView.dll.config'.
02-09 11:13:28.074 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.CardView/Xamarin.Android.Support.v7.CardView.config'.
02-09 11:13:28.074 D/Mono    (24554): Image addref Xamarin.Android.Support.v7.MediaRouter[0x7943dfc0] -> Xamarin.Android.Support.v7.MediaRouter.dll[0xaf1ce100]: 2
02-09 11:13:28.074 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.v7.MediaRouter' (Xamarin.Android.Support.v7.MediaRouter.dll)
02-09 11:13:28.074 D/Mono    (24554): Assembly Xamarin.Android.Support.v7.MediaRouter[0x7943dfc0] added to domain RootDomain, ref_count=1
02-09 11:13:28.076 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.v7.MediaRouter.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.MediaRouter.dll.so" not found
02-09 11:13:28.076 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.MediaRouter.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.MediaRouter.dll.so" not found
02-09 11:13:28.076 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.v7.MediaRouter.dll.config'.
02-09 11:13:28.076 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.MediaRouter/Xamarin.Android.Support.v7.MediaRouter.config'.
02-09 11:13:28.077 D/Mono    (24554): Image addref Xamarin.Android.Support.v7.Palette[0x7943e020] -> Xamarin.Android.Support.v7.Palette.dll[0xaf1ce600]: 2
02-09 11:13:28.077 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.v7.Palette' (Xamarin.Android.Support.v7.Palette.dll)
02-09 11:13:28.077 D/Mono    (24554): Assembly Xamarin.Android.Support.v7.Palette[0x7943e020] added to domain RootDomain, ref_count=1
02-09 11:13:28.078 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.v7.Palette.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.Palette.dll.so" not found
02-09 11:13:28.079 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.Palette.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.Palette.dll.so" not found
02-09 11:13:28.079 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.v7.Palette.dll.config'.
02-09 11:13:28.079 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.Palette/Xamarin.Android.Support.v7.Palette.config'.
02-09 11:13:28.079 D/Mono    (24554): Image addref Xamarin.Android.Support.v7.RecyclerView[0x7943e080] -> Xamarin.Android.Support.v7.RecyclerView.dll[0xaf1ceb00]: 2
02-09 11:13:28.079 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.v7.RecyclerView' (Xamarin.Android.Support.v7.RecyclerView.dll)
02-09 11:13:28.079 D/Mono    (24554): Assembly Xamarin.Android.Support.v7.RecyclerView[0x7943e080] added to domain RootDomain, ref_count=1
02-09 11:13:28.081 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.v7.RecyclerView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.RecyclerView.dll.so" not found
02-09 11:13:28.082 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.v7.RecyclerView.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.v7.RecyclerView.dll.so" not found
02-09 11:13:28.082 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.v7.RecyclerView.dll.config'.
02-09 11:13:28.082 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.RecyclerView/Xamarin.Android.Support.v7.RecyclerView.config'.
02-09 11:13:28.083 D/Mono    (24554): Image addref Xamarin.Android.Support.Vector.Drawable[0x7943e0e0] -> Xamarin.Android.Support.Vector.Drawable.dll[0xaf1d4000]: 2
02-09 11:13:28.083 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Android.Support.Vector.Drawable' (Xamarin.Android.Support.Vector.Drawable.dll)
02-09 11:13:28.083 D/Mono    (24554): Assembly Xamarin.Android.Support.Vector.Drawable[0x7943e0e0] added to domain RootDomain, ref_count=1
02-09 11:13:28.084 D/Mono    (24554): AOT: image 'Xamarin.Android.Support.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Vector.Drawable.dll.so" not found
02-09 11:13:28.085 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Android.Support.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Android.Support.Vector.Drawable.dll.so" not found
02-09 11:13:28.085 D/Mono    (24554): Config attempting to parse: 'Xamarin.Android.Support.Vector.Drawable.dll.config'.
02-09 11:13:28.085 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Vector.Drawable/Xamarin.Android.Support.Vector.Drawable.config'.Loaded assembly: Mono.Android.dll [External]

02-09 11:13:28.086 D/Mono    (24554): Image addref Xamarin.Forms.Core[0x7943e140] -> Xamarin.Forms.Core.dll[0xaf1d4500]: 2
02-09 11:13:28.086 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Forms.Core' (Xamarin.Forms.Core.dll)
02-09 11:13:28.086 D/Mono    (24554): Assembly Xamarin.Forms.Core[0x7943e140] added to domain RootDomain, ref_count=1
02-09 11:13:28.087 D/Mono    (24554): AOT: image 'Xamarin.Forms.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Core.dll.so" not found
02-09 11:13:28.088 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Core.dll.so" not found
02-09 11:13:28.089 D/Mono    (24554): Config attempting to parse: 'Xamarin.Forms.Core.dll.config'.
02-09 11:13:28.089 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Core/Xamarin.Forms.Core.config'.
02-09 11:13:28.089 D/Mono    (24554): Image addref Xamarin.Forms.Platform.Android[0x7943e1a0] -> Xamarin.Forms.Platform.Android.dll[0xaf1d4a00]: 2
02-09 11:13:28.089 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Forms.Platform.Android' (Xamarin.Forms.Platform.Android.dll)
02-09 11:13:28.089 D/Mono    (24554): Assembly Xamarin.Forms.Platform.Android[0x7943e1a0] added to domain RootDomain, ref_count=1
02-09 11:13:28.091 D/Mono    (24554): AOT: image 'Xamarin.Forms.Platform.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Platform.Android.dll.so" not found
02-09 11:13:28.091 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Platform.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Platform.Android.dll.so" not found
02-09 11:13:28.092 D/Mono    (24554): Config attempting to parse: 'Xamarin.Forms.Platform.Android.dll.config'.
02-09 11:13:28.092 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Platform.Android/Xamarin.Forms.Platform.Android.config'.
02-09 11:13:28.092 D/Mono    (24554): Image addref Xamarin.Forms.Platform[0x7943e200] -> Xamarin.Forms.Platform.dll[0xaf1d4f00]: 2
02-09 11:13:28.092 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Forms.Platform' (Xamarin.Forms.Platform.dll)
02-09 11:13:28.092 D/Mono    (24554): Assembly Xamarin.Forms.Platform[0x7943e200] added to domain RootDomain, ref_count=1Loaded assembly: Java.Interop.dll [External]

02-09 11:13:28.094 D/Mono    (24554): AOT: image 'Xamarin.Forms.Platform.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Platform.dll.so" not found
02-09 11:13:28.094 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Platform.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Platform.dll.so" not found
02-09 11:13:28.094 D/Mono    (24554): Config attempting to parse: 'Xamarin.Forms.Platform.dll.config'.
02-09 11:13:28.095 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Platform/Xamarin.Forms.Platform.config'.
02-09 11:13:28.095 D/Mono    (24554): Image addref Xamarin.Forms.Xaml[0x7943e260] -> Xamarin.Forms.Xaml.dll[0xaf1d5400]: 2
02-09 11:13:28.095 D/Mono    (24554): Prepared to set up assembly 'Xamarin.Forms.Xaml' (Xamarin.Forms.Xaml.dll)
02-09 11:13:28.095 D/Mono    (24554): Assembly Xamarin.Forms.Xaml[0x7943e260] added to domain RootDomain, ref_count=1
02-09 11:13:28.096 D/Mono    (24554): AOT: image 'Xamarin.Forms.Xaml.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Xaml.dll.so" not found
02-09 11:13:28.097 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Xamarin.Forms.Xaml.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Xamarin.Forms.Xaml.dll.so" not found
02-09 11:13:28.097 D/Mono    (24554): Config attempting to parse: 'Xamarin.Forms.Xaml.dll.config'.
Loaded assembly: System.Runtime.dll [External]
02-09 11:13:28.097 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Xaml/Xamarin.Forms.Xaml.config'.
02-09 11:13:28.098 D/Mono    (24554): Image addref Parse[0x7943e2c0] -> Parse.dll[0xaf1d5900]: 2
02-09 11:13:28.098 D/Mono    (24554): Prepared to set up assembly 'Parse' (Parse.dll)
02-09 11:13:28.098 D/Mono    (24554): Assembly Parse[0x7943e2c0] added to domain RootDomain, ref_count=1
02-09 11:13:28.099 D/Mono    (24554): AOT: image 'Parse.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Parse.dll.so" not found
02-09 11:13:28.100 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Parse.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Parse.dll.so" not found
02-09 11:13:28.100 D/Mono    (24554): Config attempting to parse: 'Parse.dll.config'.
02-09 11:13:28.100 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Parse/Parse.config'.
02-09 11:13:28.101 D/Mono    (24554): Image addref System.Security.Permissions[0x7943e320] -> System.Security.Permissions.dll[0xaf1d6300]: 2
02-09 11:13:28.101 D/Mono    (24554): Image for assembly 'System.Security.Permissions' (System.Security.Permissions.dll) has ReferenceAssemblyAttribute, skipping
02-09 11:13:28.101 D/Mono    (24554): Assembly Loader probing location: '/usr/local/lib/System.Security.Permissions.dll'.
02-09 11:13:28.660 D/Mono    (24554): Image addref System.Security.AccessControl[0x7943e320] -> System.Security.AccessControl.dll[0xaf1d6800]: 2
02-09 11:13:28.660 D/Mono    (24554): Image for assembly 'System.Security.AccessControl' (System.Security.AccessControl.dll) has ReferenceAssemblyAttribute, skipping
02-09 11:13:28.660 D/Mono    (24554): Assembly Loader probing location: '/usr/local/lib/System.Security.AccessControl.dll'.
02-09 11:13:28.661 D/Mono    (24554): Image addref System.Security.Principal.Windows[0x7943e320] -> System.Security.Principal.Windows.dll[0xaf1d6d00]: 2
02-09 11:13:28.661 D/Mono    (24554): Image for assembly 'System.Security.Principal.Windows' (System.Security.Principal.Windows.dll) has ReferenceAssemblyAttribute, skipping
02-09 11:13:28.661 D/Mono    (24554): Assembly Loader probing location: '/usr/local/lib/System.Security.Principal.Windows.dll'.
02-09 11:13:28.662 W/monodroid-gc(24554): GREF GC Threshold: 46080
02-09 11:13:28.662 D/Mono    (24554): Image addref Mono.Android[0x7943e320] -> Mono.Android.dll[0xaf1d7200]: 2
02-09 11:13:28.662 D/Mono    (24554): Prepared to set up assembly 'Mono.Android' (Mono.Android.dll)
02-09 11:13:28.663 D/Mono    (24554): Assembly Mono.Android[0x7943e320] added to domain RootDomain, ref_count=1
02-09 11:13:28.665 D/Mono    (24554): AOT: image 'Mono.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Mono.Android.dll.so" not found
02-09 11:13:28.666 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Mono.Android.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Mono.Android.dll.so" not found
02-09 11:13:28.694 D/Mono    (24554): Config attempting to parse: 'Mono.Android.dll.config'.
02-09 11:13:28.694 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Mono.Android/Mono.Android.config'.
02-09 11:13:28.700 D/Mono    (24554): Assembly Ref addref Mono.Android[0x7943e320] -> mscorlib[0x7943d780]: 2
Loaded assembly: System.Collections.Concurrent.dll [External]02-09 11:13:28.701 D/Mono    (24554): Image addref Java.Interop[0x7943e440] -> Java.Interop.dll[0xaf1d7c00]: 2

02-09 11:13:28.701 D/Mono    (24554): Prepared to set up assembly 'Java.Interop' (Java.Interop.dll)
02-09 11:13:28.701 D/Mono    (24554): Assembly Java.Interop[0x7943e440] added to domain RootDomain, ref_count=1
02-09 11:13:28.703 D/Mono    (24554): AOT: image 'Java.Interop.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Java.Interop.dll.so" not found
02-09 11:13:28.703 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/Java.Interop.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-Java.Interop.dll.so" not found
02-09 11:13:28.703 D/Mono    (24554): Config attempting to parse: 'Java.Interop.dll.config'.
02-09 11:13:28.703 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/Java.Interop/Java.Interop.config'.
02-09 11:13:28.703 D/Mono    (24554): Assembly Ref addref Mono.Android[0x7943e320] -> Java.Interop[0x7943e440]: 2
02-09 11:13:28.704 D/Mono    (24554): Image addref System.Runtime[0x7943e380] -> System.Runtime.dll[0xaf1d8100]: 2
02-09 11:13:28.704 D/Mono    (24554): Prepared to set up assembly 'System.Runtime' (System.Runtime.dll)
02-09 11:13:28.704 D/Mono    (24554): Assembly System.Runtime[0x7943e380] added to domain RootDomain, ref_count=1
02-09 11:13:28.705 D/Mono    (24554): AOT: image 'System.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Runtime.dll.so" not found
02-09 11:13:28.706 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Runtime.dll.so" not found
02-09 11:13:28.706 D/Mono    (24554): Config attempting to parse: 'System.Runtime.dll.config'.
02-09 11:13:28.706 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
02-09 11:13:28.706 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Runtime[0x7943e380]: 2
02-09 11:13:28.707 D/Mono    (24554): Assembly Ref addref System.Runtime[0x7943e380] -> mscorlib[0x7943d780]: 3
02-09 11:13:28.708 W/monodroid(24554): Calling into managed runtime init
02-09 11:13:28.808 D/Mono    (24554): Image addref System.Collections.Concurrent[0x7943e4a0] -> System.Collections.Concurrent.dll[0xaf1d8b00]: 2
02-09 11:13:28.808 D/Mono    (24554): Prepared to set up assembly 'System.Collections.Concurrent' (System.Collections.Concurrent.dll)
02-09 11:13:28.808 D/Mono    (24554): Assembly System.Collections.Concurrent[0x7943e4a0] added to domain RootDomain, ref_count=1
02-09 11:13:28.809 D/Mono    (24554): AOT: image 'System.Collections.Concurrent.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Collections.Concurrent.dll.so" not found
02-09 11:13:28.810 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Collections.Concurrent.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Collections.Concurrent.dll.so" not found
02-09 11:13:28.810 D/Mono    (24554): Config attempting to parse: 'System.Collections.Concurrent.dll.config'.
02-09 11:13:28.810 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections.Concurrent/System.Collections.Concurrent.config'.
02-09 11:13:28.810 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Collections.Concurrent[0x7943e4a0]: 2
02-09 11:13:28.810 D/Mono    (24554): Assembly Ref addref System.Collections.Concurrent[0x7943e4a0] -> mscorlib[0x7943d780]: 4
02-09 11:13:28.867 D/Mono    (24554): Image addref System.Threading[0x7943e500] -> System.Threading.dll[0xae019500]: 2
02-09 11:13:28.868 D/Mono    (24554): Prepared to set up assembly 'System.Threading' (System.Threading.dll)
02-09 11:13:28.868 D/Mono    (24554): Assembly System.Threading[0x7943e500] added to domain RootDomain, ref_count=1
02-09 11:13:28.870 D/Mono    (24554): AOT: image 'System.Threading.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Threading.dll.so" not found
02-09 11:13:28.870 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Threading.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Threading.dll.so" not found
02-09 11:13:28.870 D/Mono    (24554): Config attempting to parse: 'System.Threading.dll.config'.
02-09 11:13:28.871 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Threading/System.Threading.config'.
02-09 11:13:28.871 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Threading[0x7943e500]: 2
02-09 11:13:28.871 D/Mono    (24554): Assembly Ref addref System.Threading[0x7943e500] -> mscorlib[0x7943d780]: 5
Loaded assembly: System.Threading.dll [External]
02-09 11:13:28.908 D/Mono    (24554): Image addref System.Runtime.InteropServices[0x7943e3e0] -> System.Runtime.InteropServices.dll[0xae019a00]: 2
02-09 11:13:28.908 D/Mono    (24554): Prepared to set up assembly 'System.Runtime.InteropServices' (System.Runtime.InteropServices.dll)
02-09 11:13:28.908 D/Mono    (24554): Assembly System.Runtime.InteropServices[0x7943e3e0] added to domain RootDomain, ref_count=1
02-09 11:13:28.910 D/Mono    (24554): AOT: image 'System.Runtime.InteropServices.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Runtime.InteropServices.dll.so" not found
02-09 11:13:28.911 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Runtime.InteropServices.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Runtime.InteropServices.dll.so" not found
02-09 11:13:28.911 D/Mono    (24554): Config attempting to parse: 'System.Runtime.InteropServices.dll.config'.
02-09 11:13:28.911 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.InteropServices/System.Runtime.InteropServices.config'.
02-09 11:13:28.911 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Runtime.InteropServices[0x7943e3e0]: 2
02-09 11:13:28.911 D/Mono    (24554): Assembly Ref addref System.Runtime.InteropServices[0x7943e3e0] -> mscorlib[0x7943d780]: 6
Loaded assembly: System.Runtime.InteropServices.dll [External]
02-09 11:13:28.943 D/Mono    (24554): DllImport attempting to load: '__Internal'.
02-09 11:13:28.944 D/Mono    (24554): DllImport loaded library '(null)'.
02-09 11:13:28.944 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:28.944 D/Mono    (24554): Searching for 'java_interop_jnienv_get_java_vm'.
02-09 11:13:28.944 D/Mono    (24554): Probing 'java_interop_jnienv_get_java_vm'.
02-09 11:13:28.944 D/Mono    (24554): Found as 'java_interop_jnienv_get_java_vm'.
02-09 11:13:28.963 D/Mono    (24554): DllImport attempting to load: '__Internal'.
02-09 11:13:28.963 D/Mono    (24554): DllImport loaded library '(null)'.
02-09 11:13:28.963 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:28.963 D/Mono    (24554): Searching for '_monodroid_gref_log_new'.
02-09 11:13:28.963 D/Mono    (24554): Probing '_monodroid_gref_log_new'.
02-09 11:13:28.964 D/Mono    (24554): Found as '_monodroid_gref_log_new'.
02-09 11:13:28.966 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:28.966 D/Mono    (24554): Searching for 'java_interop_jnienv_new_global_ref'.
02-09 11:13:28.966 D/Mono    (24554): Probing 'java_interop_jnienv_new_global_ref'.
02-09 11:13:28.966 D/Mono    (24554): Found as 'java_interop_jnienv_new_global_ref'.
02-09 11:13:28.967 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:28.967 D/Mono    (24554): Searching for '_monodroid_gref_get'.
02-09 11:13:28.967 D/Mono    (24554): Probing '_monodroid_gref_get'.
02-09 11:13:28.967 D/Mono    (24554): Found as '_monodroid_gref_get'.
02-09 11:13:28.986 D/Mono    (24554): Image addref System.Reflection[0x7943e620] -> System.Reflection.dll[0xae019f00]: 2
02-09 11:13:28.986 D/Mono    (24554): Prepared to set up assembly 'System.Reflection' (System.Reflection.dll)
02-09 11:13:28.986 D/Mono    (24554): Assembly System.Reflection[0x7943e620] added to domain RootDomain, ref_count=1
02-09 11:13:28.988 D/Mono    (24554): AOT: image 'System.Reflection.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Reflection.dll.so" not found
02-09 11:13:28.989 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Reflection.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Reflection.dll.so" not found
02-09 11:13:28.989 D/Mono    (24554): Config attempting to parse: 'System.Reflection.dll.config'.
02-09 11:13:28.989 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection/System.Reflection.config'.
02-09 11:13:28.989 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Reflection[0x7943e620]: 2
02-09 11:13:28.989 D/Mono    (24554): Assembly Ref addref System.Reflection[0x7943e620] -> mscorlib[0x7943d780]: 7
Loaded assembly: System.Reflection.dll [External]
02-09 11:13:29.009 D/Mono    (24554): Image addref System.Collections[0x7943e560] -> System.Collections.dll[0xae01a400]: 2
02-09 11:13:29.009 D/Mono    (24554): Prepared to set up assembly 'System.Collections' (System.Collections.dll)
02-09 11:13:29.009 D/Mono    (24554): Assembly System.Collections[0x7943e560] added to domain RootDomain, ref_count=1
02-09 11:13:29.011 D/Mono    (24554): AOT: image 'System.Collections.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Collections.dll.so" not found
02-09 11:13:29.011 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Collections.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Collections.dll.so" not found
02-09 11:13:29.012 D/Mono    (24554): Config attempting to parse: 'System.Collections.dll.config'.
02-09 11:13:29.012 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections/System.Collections.config'.
02-09 11:13:29.012 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Collections[0x7943e560]: 2
02-09 11:13:29.012 D/Mono    (24554): Assembly Ref addref System.Collections[0x7943e560] -> mscorlib[0x7943d780]: 8
Loaded assembly: System.Collections.dll [External]
02-09 11:13:29.057 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.057 D/Mono    (24554): Searching for 'java_interop_jnienv_find_class'.
02-09 11:13:29.057 D/Mono    (24554): Probing 'java_interop_jnienv_find_class'.
02-09 11:13:29.057 D/Mono    (24554): Found as 'java_interop_jnienv_find_class'.
02-09 11:13:29.057 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.057 D/Mono    (24554): Searching for 'java_interop_jnienv_exception_clear'.
02-09 11:13:29.057 D/Mono    (24554): Probing 'java_interop_jnienv_exception_clear'.
02-09 11:13:29.057 D/Mono    (24554): Found as 'java_interop_jnienv_exception_clear'.
02-09 11:13:29.058 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.058 D/Mono    (24554): Searching for 'java_interop_jnienv_call_object_method_a'.
02-09 11:13:29.058 D/Mono    (24554): Probing 'java_interop_jnienv_call_object_method_a'.
02-09 11:13:29.058 D/Mono    (24554): Found as 'java_interop_jnienv_call_object_method_a'.
02-09 11:13:29.058 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.058 D/Mono    (24554): Searching for 'java_interop_jnienv_delete_local_ref'.
02-09 11:13:29.058 D/Mono    (24554): Probing 'java_interop_jnienv_delete_local_ref'.
02-09 11:13:29.058 D/Mono    (24554): Found as 'java_interop_jnienv_delete_local_ref'.
02-09 11:13:29.063 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.063 D/Mono    (24554): Searching for '_monodroid_lref_log_new'.
02-09 11:13:29.063 D/Mono    (24554): Probing '_monodroid_lref_log_new'.
02-09 11:13:29.063 D/Mono    (24554): Found as '_monodroid_lref_log_new'.
02-09 11:13:29.067 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.067 D/Mono    (24554): Searching for '_monodroid_lref_log_delete'.
02-09 11:13:29.067 D/Mono    (24554): Probing '_monodroid_lref_log_delete'.
02-09 11:13:29.067 D/Mono    (24554): Found as '_monodroid_lref_log_delete'.
02-09 11:13:29.069 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.069 D/Mono    (24554): Searching for 'java_interop_jnienv_get_method_id'.
02-09 11:13:29.069 D/Mono    (24554): Probing 'java_interop_jnienv_get_method_id'.
02-09 11:13:29.070 D/Mono    (24554): Found as 'java_interop_jnienv_get_method_id'.
02-09 11:13:29.072 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.072 D/Mono    (24554): Searching for '_monodroid_gref_log_delete'.
02-09 11:13:29.072 D/Mono    (24554): Probing '_monodroid_gref_log_delete'.
02-09 11:13:29.072 D/Mono    (24554): Found as '_monodroid_gref_log_delete'.
02-09 11:13:29.073 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.073 D/Mono    (24554): Searching for 'java_interop_jnienv_delete_global_ref'.
02-09 11:13:29.073 D/Mono    (24554): Probing 'java_interop_jnienv_delete_global_ref'.
02-09 11:13:29.073 D/Mono    (24554): Found as 'java_interop_jnienv_delete_global_ref'.
02-09 11:13:29.078 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.078 D/Mono    (24554): Searching for 'java_interop_jnienv_get_static_method_id'.
02-09 11:13:29.078 D/Mono    (24554): Probing 'java_interop_jnienv_get_static_method_id'.
02-09 11:13:29.078 D/Mono    (24554): Found as 'java_interop_jnienv_get_static_method_id'.
02-09 11:13:29.085 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.086 D/Mono    (24554): Searching for 'java_interop_jnienv_call_static_object_method_a'.
02-09 11:13:29.086 D/Mono    (24554): Probing 'java_interop_jnienv_call_static_object_method_a'.
02-09 11:13:29.086 D/Mono    (24554): Found as 'java_interop_jnienv_call_static_object_method_a'.
02-09 11:13:29.092 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').Loaded assembly: System.Linq.dll [External]

02-09 11:13:29.092 D/Mono    (24554): Searching for '_monodroid_get_identity_hash_code'.
02-09 11:13:29.092 D/Mono    (24554): Probing '_monodroid_get_identity_hash_code'.
02-09 11:13:29.093 D/Mono    (24554): Found as '_monodroid_get_identity_hash_code'.
02-09 11:13:29.114 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.114 D/Mono    (24554): Searching for 'java_interop_jnienv_get_object_class'.
02-09 11:13:29.114 D/Mono    (24554): Probing 'java_interop_jnienv_get_object_class'.
02-09 11:13:29.114 D/Mono    (24554): Found as 'java_interop_jnienv_get_object_class'.
02-09 11:13:29.116 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.116 D/Mono    (24554): Searching for 'java_interop_jnienv_call_object_method'.
02-09 11:13:29.116 D/Mono    (24554): Probing 'java_interop_jnienv_call_object_method'.
02-09 11:13:29.116 D/Mono    (24554): Found as 'java_interop_jnienv_call_object_method'.
02-09 11:13:29.118 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.118 D/Mono    (24554): Searching for 'java_interop_jnienv_get_string_length'.
02-09 11:13:29.118 D/Mono    (24554): Probing 'java_interop_jnienv_get_string_length'.
Loaded assembly: System.Core.dll [External]02-09 11:13:29.118 D/Mono    (24554): Found as 'java_interop_jnienv_get_string_length'.

02-09 11:13:29.118 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.118 D/Mono    (24554): Searching for 'java_interop_jnienv_get_string_chars'.
02-09 11:13:29.118 D/Mono    (24554): Probing 'java_interop_jnienv_get_string_chars'.
02-09 11:13:29.118 D/Mono    (24554): Found as 'java_interop_jnienv_get_string_chars'.
02-09 11:13:29.121 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.121 D/Mono    (24554): Searching for 'java_interop_jnienv_release_string_chars'.
02-09 11:13:29.121 D/Mono    (24554): Probing 'java_interop_jnienv_release_string_chars'.
02-09 11:13:29.121 D/Mono    (24554): Found as 'java_interop_jnienv_release_string_chars'.
02-09 11:13:29.124 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.125 D/Mono    (24554): Searching for 'monodroid_typemap_java_to_managed'.
02-09 11:13:29.125 D/Mono    (24554): Probing 'monodroid_typemap_java_to_managed'.Loaded assembly: System.Runtime.Extensions.dll [External]

02-09 11:13:29.125 D/Mono    (24554): Found as 'monodroid_typemap_java_to_managed'.
02-09 11:13:29.154 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.154 D/Mono    (24554): Searching for 'java_interop_jnienv_get_superclass'.
02-09 11:13:29.154 D/Mono    (24554): Probing 'java_interop_jnienv_get_superclass'.
02-09 11:13:29.154 D/Mono    (24554): Found as 'java_interop_jnienv_get_superclass'.
02-09 11:13:29.193 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.193 D/Mono    (24554): Searching for 'java_interop_jnienv_is_instance_of'.
02-09 11:13:29.193 D/Mono    (24554): Probing 'java_interop_jnienv_is_instance_of'.
02-09 11:13:29.193 D/Mono    (24554): Found as 'java_interop_jnienv_is_instance_of'.
02-09 11:13:29.195 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.195 D/Mono    (24554): Searching for '_monodroid_gref_log'.
02-09 11:13:29.195 D/Mono    (24554): Probing '_monodroid_gref_log'.
02-09 11:13:29.195 D/Mono    (24554): Found as '_monodroid_gref_log'.
02-09 11:13:29.223 D/Mono    (24554): Image addref System.Linq[0x7943ebc0] -> System.Linq.dll[0xae01a900]: 2
02-09 11:13:29.224 D/Mono    (24554): Prepared to set up assembly 'System.Linq' (System.Linq.dll)
02-09 11:13:29.224 D/Mono    (24554): Assembly System.Linq[0x7943ebc0] added to domain RootDomain, ref_count=1
02-09 11:13:29.225 D/Mono    (24554): AOT: image 'System.Linq.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Linq.dll.so" not found
02-09 11:13:29.226 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Linq.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Linq.dll.so" not found
02-09 11:13:29.226 D/Mono    (24554): Config attempting to parse: 'System.Linq.dll.config'.
02-09 11:13:29.226 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq/System.Linq.config'.
02-09 11:13:29.226 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Linq[0x7943ebc0]: 2
02-09 11:13:29.227 D/Mono    (24554): Image addref System.Core[0x7943eb60] -> System.Core.dll[0xae01ae00]: 2
Loaded assembly: System.Reflection.Extensions.dll [External]02-09 11:13:29.227 D/Mono    (24554): Prepared to set up assembly 'System.Core' (System.Core.dll)

02-09 11:13:29.227 D/Mono    (24554): Assembly System.Core[0x7943eb60] added to domain RootDomain, ref_count=1
02-09 11:13:29.228 D/Mono    (24554): AOT: image 'System.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Core.dll.so" not found
02-09 11:13:29.229 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Core.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Core.dll.so" not found
02-09 11:13:29.230 D/Mono    (24554): Config attempting to parse: 'System.Core.dll.config'.
02-09 11:13:29.230 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Core/System.Core.config'.
02-09 11:13:29.230 D/Mono    (24554): Assembly Ref addref System.Linq[0x7943ebc0] -> System.Core[0x7943eb60]: 2
02-09 11:13:29.231 D/Mono    (24554): Assembly Ref addref System.Core[0x7943eb60] -> mscorlib[0x7943d780]: 9
02-09 11:13:29.284 D/Mono    (24554): Image addref System.Runtime.Extensions[0x7943e9e0] -> System.Runtime.Extensions.dll[0xae01b800]: 2
02-09 11:13:29.284 D/Mono    (24554): Prepared to set up assembly 'System.Runtime.Extensions' (System.Runtime.Extensions.dll)
02-09 11:13:29.284 D/Mono    (24554): Assembly System.Runtime.Extensions[0x7943e9e0] added to domain RootDomain, ref_count=1
02-09 11:13:29.286 D/Mono    (24554): AOT: image 'System.Runtime.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Runtime.Extensions.dll.so" not found
02-09 11:13:29.287 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Runtime.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Runtime.Extensions.dll.so" not found
02-09 11:13:29.287 D/Mono    (24554): Config attempting to parse: 'System.Runtime.Extensions.dll.config'.
02-09 11:13:29.287 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.Extensions/System.Runtime.Extensions.config'.
02-09 11:13:29.287 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Runtime.Extensions[0x7943e9e0]: 2
02-09 11:13:29.287 D/Mono    (24554): Assembly Ref addref System.Runtime.Extensions[0x7943e9e0] -> mscorlib[0x7943d780]: 10
02-09 11:13:29.316 D/Mono    (24554): Image addref System.Reflection.Extensions[0x7943ece0] -> System.Reflection.Extensions.dll[0xae01c200]: 2
02-09 11:13:29.316 D/Mono    (24554): Prepared to set up assembly 'System.Reflection.Extensions' (System.Reflection.Extensions.dll)
02-09 11:13:29.316 D/Mono    (24554): Assembly System.Reflection.Extensions[0x7943ece0] added to domain RootDomain, ref_count=1
02-09 11:13:29.317 D/Mono    (24554): AOT: image 'System.Reflection.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Reflection.Extensions.dll.so" not found
02-09 11:13:29.318 D/Mono    (24554): AOT: image '/usr/local/lib/mono/aot-cache/arm/System.Reflection.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.companyname.App5-1/lib/arm/libaot-System.Reflection.Extensions.dll.so" not found
02-09 11:13:29.318 D/Mono    (24554): Config attempting to parse: 'System.Reflection.Extensions.dll.config'.
02-09 11:13:29.318 D/Mono    (24554): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection.Extensions/System.Reflection.Extensions.config'.
02-09 11:13:29.318 D/Mono    (24554): Assembly Ref addref Java.Interop[0x7943e440] -> System.Reflection.Extensions[0x7943ece0]: 2
02-09 11:13:29.318 D/Mono    (24554): Assembly Ref addref System.Reflection.Extensions[0x7943ece0] -> mscorlib[0x7943d780]: 11
02-09 11:13:29.364 D/Mono    (24554): Assembly Ref addref Mono.Android[0x7943e320] -> System.Core[0x7943eb60]: 3
02-09 11:13:29.365 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.365 D/Mono    (24554): Searching for 'monodroid_typemap_managed_to_java'.
02-09 11:13:29.365 D/Mono    (24554): Probing 'monodroid_typemap_managed_to_java'.
02-09 11:13:29.366 D/Mono    (24554): Found as 'monodroid_typemap_managed_to_java'.
02-09 11:13:29.396 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.396 D/Mono    (24554): Searching for 'java_interop_jnienv_alloc_object'.
02-09 11:13:29.396 D/Mono    (24554): Probing 'java_interop_jnienv_alloc_object'.
02-09 11:13:29.396 D/Mono    (24554): Found as 'java_interop_jnienv_alloc_object'.
02-09 11:13:29.589 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.589 D/Mono    (24554): Searching for 'java_interop_jnienv_register_natives'.
02-09 11:13:29.589 D/Mono    (24554): Probing 'java_interop_jnienv_register_natives'.
02-09 11:13:29.589 D/Mono    (24554): Found as 'java_interop_jnienv_register_natives'.
02-09 11:13:29.593 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.594 D/Mono    (24554): Searching for 'java_interop_jnienv_call_nonvirtual_void_method_a'.
02-09 11:13:29.594 D/Mono    (24554): Probing 'java_interop_jnienv_call_nonvirtual_void_method_a'.
02-09 11:13:29.594 D/Mono    (24554): Found as 'java_interop_jnienv_call_nonvirtual_void_method_a'.
02-09 11:13:29.597 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.597 D/Mono    (24554): Searching for '_monodroid_gc_wait_for_bridge_processing'.
02-09 11:13:29.597 D/Mono    (24554): Probing '_monodroid_gc_wait_for_bridge_processing'.
02-09 11:13:29.597 D/Mono    (24554): Found as '_monodroid_gc_wait_for_bridge_processing'.
02-09 11:13:29.603 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.603 D/Mono    (24554): Searching for 'java_interop_jnienv_is_same_object'.
02-09 11:13:29.603 D/Mono    (24554): Probing 'java_interop_jnienv_is_same_object'.
02-09 11:13:29.603 D/Mono    (24554): Found as 'java_interop_jnienv_is_same_object'.
02-09 11:13:29.605 D/Mono    (24554): DllImport searching in: '__Internal' ('(null)').
02-09 11:13:29.606 D/Mono    (24554): Searching for 'java_interop_jnienv_call_static_void_method_a'.
02-09 11:13:29.606 D/Mono    (24554): Probing 'java_interop_jnienv_call_static_void_method_a'.
02-09 11:13:29.606 D/Mono    (24554): Found as 'java_interop_jnienv_call_static_void_method_a'.
02-09 11:13:29.607 D/Mono    (24554): Assembly Ref addref FormsViewGroup[0x7943d8a0] -> mscorlib[0x7943d780]: 12
02-09 11:13:29.607 D/Mono    (24554): Assembly Ref addref FormsViewGroup[0x7943d8a0] -> Mono.Android[0x7943e320]: 2
02-09 11:13:29.608 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Animated.Vector.Drawable[0x7943d9c0] -> mscorlib[0x7943d780]: 13
02-09 11:13:29.608 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Animated.Vector.Drawable[0x7943d9c0] -> Mono.Android[0x7943e320]: 3
02-09 11:13:29.609 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Annotations[0x7943dba0] -> mscorlib[0x7943d780]: 14
02-09 11:13:29.609 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Annotations[0x7943dba0] -> Mono.Android[0x7943e320]: 4
02-09 11:13:29.610 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Compat[0x7943dc00] -> mscorlib[0x7943d780]: 15
02-09 11:13:29.610 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Compat[0x7943dc00] -> Mono.Android[0x7943e320]: 5
02-09 11:13:29.612 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Core.UI[0x7943dc60] -> mscorlib[0x7943d780]: 16
02-09 11:13:29.612 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Core.UI[0x7943dc60] -> Mono.Android[0x7943e320]: 6
02-09 11:13:29.613 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Core.Utils[0x7943dcc0] -> mscorlib[0x7943d780]: 17
02-09 11:13:29.613 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Core.Utils[0x7943dcc0] -> Mono.Android[0x7943e320]: 7
02-09 11:13:29.614 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Design[0x7943dd20] -> mscorlib[0x7943d780]: 18
02-09 11:13:29.614 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Design[0x7943dd20] -> Mono.Android[0x7943e320]: 8
02-09 11:13:29.615 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Fragment[0x7943dd80] -> mscorlib[0x7943d780]: 19
02-09 11:13:29.616 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Fragment[0x7943dd80] -> Mono.Android[0x7943e320]: 9
02-09 11:13:29.616 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Media.Compat[0x7943dde0] -> mscorlib[0x7943d780]: 20
02-09 11:13:29.616 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Media.Compat[0x7943dde0] -> Mono.Android[0x7943e320]: 10
02-09 11:13:29.617 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Transition[0x7943de40] -> mscorlib[0x7943d780]: 21
02-09 11:13:29.618 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Transition[0x7943de40] -> Mono.Android[0x7943e320]: 11
02-09 11:13:29.619 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v4[0x7943dea0] -> mscorlib[0x7943d780]: 22
02-09 11:13:29.619 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v4[0x7943dea0] -> Mono.Android[0x7943e320]: 12
02-09 11:13:29.620 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0x7943df00] -> mscorlib[0x7943d780]: 23
02-09 11:13:29.620 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0x7943df00] -> Mono.Android[0x7943e320]: 13
02-09 11:13:29.621 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.CardView[0x7943df60] -> mscorlib[0x7943d780]: 24
02-09 11:13:29.621 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.CardView[0x7943df60] -> Mono.Android[0x7943e320]: 14
02-09 11:13:29.622 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.MediaRouter[0x7943dfc0] -> mscorlib[0x7943d780]: 25
02-09 11:13:29.622 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.MediaRouter[0x7943dfc0] -> Mono.Android[0x7943e320]: 15
02-09 11:13:29.623 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.Palette[0x7943e020] -> mscorlib[0x7943d780]: 26
02-09 11:13:29.623 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.Palette[0x7943e020] -> Mono.Android[0x7943e320]: 16
02-09 11:13:29.624 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.RecyclerView[0x7943e080] -> mscorlib[0x7943d780]: 27
02-09 11:13:29.624 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.v7.RecyclerView[0x7943e080] -> Mono.Android[0x7943e320]: 17
02-09 11:13:29.626 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Vector.Drawable[0x7943e0e0] -> mscorlib[0x7943d780]: 28
02-09 11:13:29.626 D/Mono    (24554): Assembly Ref addref Xamarin.Android.Support.Vector.Drawable[0x7943e0e0] -> Mono.Android[0x7943e320]: 18
02-09 11:13:29.627 D/Mono    (24554): Assembly Loader probing location: 'System.Security.Permissions'.
02-09 11:13:29.627 F/monodroid-assembly(24554): Could not load assembly 'System.Security.Permissions' during startup registration.
02-09 11:13:29.627 F/monodroid-assembly(24554): This might be due to an invalid debug installation.
02-09 11:13:29.627 F/monodroid-assembly(24554): A common cause is to 'adb install' the app directly instead of doing from the IDE.

@montymxb
Copy link
Contributor

@TheFanatr that sounds good to me, in regards to using msft fakes. Also wanted to note that we have access to the nuget package. When we're ready for an alpha we can set that up auto-package deployment as the final step of any release.

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Feb 18, 2018

So, after much testing, I have conluded that without using paid frameworks, it is impossible to fake non-virtual members. Microsoft Fakes only ships with paid versions of Visual Studio, and all the other options only have free trials. However, there is one option, though I don't know if it is worth it. In order to remove clutter, I could make it so that the interfaces only get compiled when everything is compiled with debug; we would be able to keep the current testing methodology, but remove the complication for end users. Until I recieve a response, I will be moving ahead with creating more unit tests and fixing ParsePush as well as Android support.

@montymxb
Copy link
Contributor

Hmmm, if we can't work with msfakes reliable let's try and stay away from that then. It may require more work but in the meantime work on the unit tests and other components would make sense.

@TheFanatr
Copy link
Contributor Author

TheFanatr commented Feb 28, 2018

Is there a general API spec? I am having trouble deciding how certain things with ParsePush should be implemented; is there a specification that should apply to every API? It was implemented slightly different on each of the platforms, and getting a generalized version is proving difficult because I don't know what is needed and what isn't.

@montymxb
Copy link
Contributor

montymxb commented Feb 28, 2018 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants