Git Product home page Git Product logo

xamarin-android's Introduction

.NET Android banner

.NET Android

.NET Android provides open-source bindings of the Android SDK and tooling for use with .NET managed languages such as C#. This ships as an optional .NET workload for .NET 6+ that can be updated independently from .NET in order to respond to external dependency updates like new Android platform and tooling.

While .NET Android is an essential part of MAUI, it is still fully supported to be used independently for native Android development using .NET.

This repository is also home to the classic Xamarin.Android product.

Support

.NET Android is now part of .NET 6+ and follows the same support lifecycle as the MAUI Support Lifecycle.

Support for classic Xamarin.Android will end on May 1, 2024 as per the Xamarin Support Policy:

Xamarin support will end on May 1, 2024 for all classic Xamarin SDKs. Android 13 will be the final version classic Xamarin.Android will target.

Downloads

Current

.NET Android ships as a workload through the dotnet workload system in .NET 6+. See the workload documentation for installation commands.

Classic Xamarin.Android installers are available here:

Platform Link
Commercial Xamarin.Android 13.2.2 (d17-8) for Windows+Visual Studio 2022 Download
Commercial Xamarin.Android 13.2.2 (d17-8) for VSMac 2022 Download

Previous Releases are also available for download.

Contributing

If you are interested in fixing issues and contributing directly to the code base, please see the following:

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

Feedback

Discord

License

Copyright (c) .NET Foundation Contributors. All rights reserved. Licensed under the MIT License.

xamarin-android's People

Contributors

akoeplinger avatar alexischr avatar atsushieno avatar brendanzagaeski avatar csigs avatar dellis1972 avatar dependabot[bot] avatar directhex avatar dotnet-maestro[bot] avatar eerhardt avatar garuma avatar grendello avatar gugavaro avatar jonathanpeppers avatar jondouglas avatar jonpryor avatar jpobst avatar kant2002 avatar kzu avatar lewurm avatar luhenry avatar mandel-macaque avatar mjbond-msft avatar moljac avatar pjcollins avatar radekdoulik avatar simonrozsival avatar thaystg avatar vs-mobiletools-engineering-service2 avatar xmcclure avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

xamarin-android's Issues

Merge LinkAssemblies and StripEmbeddedLibraries tasks

An idea: it might be possible to improve build time by implementing striping the embedded libraries as linker step. We already load all the assemblies in the linker, so we might just strip them at the same time as well.

Expected Behavior

Strip embedded libraries in the linker. Possibly faster build times.

Actual Behavior

Stripping of embedded libraries is done as a separate target/task.

Cannot change TimePicker format

Steps to Reproduce

  1. Turn the "Use 24-hour format" device setting off on your test device
  2. Create a TimePicker
  3. Change the format sometime later on (e.g. when the user clicks a button)

Expected Behavior

TimePicker displays time in new format

Actual Behavior

TimePicker still displays time in original format

Version Information

Xamarin.Forms 2.5.0.91635

Proposed Fix

I can see the problem in Xamarin.Forms.Platform.Android.TimePickerRenderer. The format is cached in OnElementChanged then never gets updated. Presumably, the format just needs to be refreshed in OnElementPropertyChanged if FormatProperty has changed.

ResolveAssemblies task wrongly uses reference assemblies

Steps to Reproduce

  1. Get and Build repro https://github.com/marcominerva/XamarinAndroidIssue

If you instead the build log you will see that

Using "ResolveAssemblies" task from assembly "/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Build.Tasks.dll".

has few ...ref/netstandard2.0/... references which is wrong as they should never be used as an input to linker or any post compilation processing

This issue is possibly related to #1154

Expected Behavior

No error during execution.

Actual Behavior

[Mono] Assembly Loader probing location: 'System.Memory'.
[monodroid-assembly] Could not load assembly 'System.Memory' during startup registration.

Version Information

Xamarin.Android
Version: 8.1.0.25 (Visual Studio Community)
Android SDK: /Users/marek/Library/Developer/Xamarin/android-sdk-macosx
Supported Android versions:
6.0 (API level 23)
7.1 (API level 25)

SDK Tools Version: 25.2.5
SDK Platform Tools Version: 25.0.5
SDK Build Tools Version: 25.0.3

Log File

/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets(1500,2): warning : Ignoring /Users/marek/.nuget/packages/system.buffers/4.4.0/ref/netstandard2.0 as it is a Reference Assembly
/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets(1500,2): warning : Ignoring /Users/marek/.nuget/packages/system.memory/4.4.0-preview2-25405-01/ref/netstandard2.0 as it is a Reference Assembly
/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets(1500,2): warning : Ignoring /Users/marek/.nuget/packages/system.runtime.compilerservices.unsafe/4.4.0/ref/netstandard2.0 as it is a Reference Assembly

VS bug #585873

Add the linker analyzer tool to XA

Expected Behavior

Make the linkeranalyzer.exe and a helper script available in the XA installation.

Actual Behavior

linkeranalyzer.exe is not installed.

Setting Target Version to "Use Compile" Does not set targetSdkVersion in Manifest

Steps to Reproduce

  1. In VS or VS for Mac set Target SDK Version to "Use Compile" this is the default
  2. Look at current manifest (does not contain: targetSdkVersion)
  3. Compile application
  4. Look at output of AndroidManifest.xml that is generated in obj/android, still does not contain targetSdkVersion

Expected Behavior

The Value should be set correct for the targetSdkVersion in the AndroidManifest.xml. So if I compile against 25, it should show android:targetSdkVersion="25".

Failure to do this has some not so great side effects. Material design doesn't display correct, permissions don't work correctly, and a lot more.

Actual Behavior

Nothing is set in the AndroidManifest.xml

Encountering new path escaping issues when using multidex/proguard on Windows

I'm encountering new path escaping issues on Windows due when using proguard and/or multidex in certain projects. I see a recent and seemingly related change in this area in this commit 2c2d47c.

Steps to Reproduce

  1. Attempt to build a project with multidex and or proguard enabled.
  2. msbuild /t:SignAndroidPackage KitKat.csproj /p:Configuration=Release /p:AndroidEnableProguard=true
    https://github.com/xamarin/monodroid-samples/tree/master/KitKat

Expected Behavior

Proguard and multidex tool invocations succeed without issue on Windows.

Actual Behavior

Various path escaping issues are preventing proguard and multidex from executing successfully:

 Environment Variables passed to tool: (TaskId:339)
    PROGUARD_HOME=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Xamarin\Android\proguard (TaskId:339)
    JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8 (TaskId:339)
  C:\Program Files\Java\jdk1.8.0_144\\bin\java.exe -jar "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Xamarin\Android\proguard\lib\proguard.jar" -include "C:\Program Files (x86)\Android\android-sdk\\tools\proguard\proguard-android.txt" -include "obj\Release\proguard\proguard_xamarin.cfg" -include "obj\Release\proguard\proguard_project_references.cfg" -include "obj\Release\proguard\proguard_project_primary.cfg" -injars "obj\Release\android\bin\classes\classes.zip(!META-INF/MANIFEST.MF)";"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\ReferenceAssemblies\Microsoft\Framework\MonoAndroid\v8.0\mono.android.jar(!META-INF/MANIFEST.MF)" -libraryjars "C:\Program Files (x86)\Android\android-sdk\platforms\android-26\android.jar" -outjars obj\Release\proguard\__proguard_output__.jar -optimizations !code/allocation/variable  (TaskId:339)
PROGUARD : error : C:\Program Files (Access is denied) [C:\xqatmp\b1b545ee\KitKat\KitKat.csproj]
  Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 (TaskId:339)
  The command exited with code 1. (TaskId:339)
Done executing task "Proguard" -- FAILED. (TaskId:339)
ToolPath: C:\Program Files\Java\jdk1.8.0_144\\bin (TaskId:1130)
    ProguardJarPath: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Xamarin\Android\proguard\lib\proguard.jar (TaskId:1130)
    ProguardInputJarFilter: (!META-INF/MANIFEST.MF) (TaskId:1130)
  C:\Program Files\Java\jdk1.8.0_144\\bin\java.exe -jar "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Xamarin\Android\proguard\lib\proguard.jar" -injars "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\ReferenceAssemblies\Microsoft\Framework\MonoAndroid\v7.1\mono.android.jar(!META-INF/MANIFEST.MF)";"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Xamarin\Android\android-support-multidex.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\0\jl\formsviewgroup.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\10\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\11\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\12\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\13\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\14\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\15\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\16\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\17\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\18\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\19\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\20\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\21\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\27\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\28\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\29\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\30\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\31\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\32\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\33\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\34\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\35\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\36\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\37\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\38\jl\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\6\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\8\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\lp\9\jl\bin\classes.jar(!META-INF/MANIFEST.MF)";"obj\Debug\android\bin\classes\classes.zip(!META-INF/MANIFEST.MF)" -dontwarn -forceprocessing -outjars C:\agent\_work\_temp\h24rcf4d.bej.jar -libraryjars "\"C:\Program Files (x86)\Android\android-sdk\build-tools\26.0.2\lib\shrinkedAndroid.jar\"" -dontoptimize -dontobfuscate -dontpreverify -include "C:\Program Files (x86)\Android\android-sdk\build-tools\26.0.2\mainDexClasses.rules"  (TaskId:1130)
CREATEMULTIDEXMAINDEXCLASSLIST : error : Expecting class path separator ';' before '\Microsoft' in argument number 2 [C:\xqatmp\Bug15162\Bug15162\Bug15162.csproj]
  The command exited with code 1. (TaskId:1130)
Done executing task "CreateMultiDexMainDexClassList" -- FAILED. (TaskId:1130)

Version Information

XA 8.0.0.2 (d15-6)

Log File

http://xqa.blob.core.windows.net/gist/log-7c8201b17c434ec9bee20eac7ddb8f93.txt
http://xqa.blob.core.windows.net/gist/log-33e409f0ca854d3c93c92f4a9849df57.txt

There is no longer an informative error message printed when building against a platform SDK version that is not installed

Steps to Reproduce

  1. Ensure you don't have API 27 installed, or remove/rename $(AndroidSdk)/platforms/android-27.
  2. msbuild *.csproj /p:TargetFrameworkVersion=v8.1

Expected Behavior

An informative and actionable error message is displayed when the platform SDK you are attempting to compile against does not exist on disk:

Build FAILED.

"/Users/petercollins/git/monodroid-samples/Button/DroidButton.csproj" (default target) (1) ->
(_ValidateAndroidPackageProperties target) -> 
  /Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets(582,2): error : Could not find android.jar for API Level 26. This means the Android SDK platform for API Level 26 is not installed. Either install it in the Android SDK Manager (Tools > Open Android SDK Manager...), or change your Xamarin.Android project to target an API version that is installed. (/Users/petercollins/Library/Developer/Xamarin/android-sdk-macosx/platforms/android-26/android.jar missing.) [/Users/petercollins/git/monodroid-samples/Button/DroidButton.csproj]

    0 Warning(s)
    1 Error(s)

Time Elapsed 00:00:01.18

Actual Behavior

An error code XA5207 is displayed with no error message. This is a regression from d15-5.

Build FAILED.

"/Users/xamarinqa/myagent/_work/r3/a/monodroid-samples/Button/DroidButton.csproj" (SignAndroidPackage target) (1) ->
(_ValidateAndroidPackageProperties target) -> 
  /Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets(591,2): error : XA5207 [/Users/xamarinqa/myagent/_work/r3/a/monodroid-samples/Button/DroidButton.csproj]

    0 Warning(s)
    1 Error(s)

Time Elapsed 00:00:01.27

Version Information

XA d15-6 (8.2.0.0)

Log File

http://xqa.blob.core.windows.net/gist/log-50a50d738cd544ed9e61ed3764e9b6f7.txt

Cannot serialize abstract class on Android

Copied from JamesNK/Newtonsoft.Json#1514 @skarllot


I getting in trouble to serialize abstract class that implements binary serialization on Android (NETStandard 1.3), but on desktop works as expected.

A minimum test project was created at: https://github.com/skarllot/JsonNetAbstractClass

Source/destination types

    [Serializable]
    public abstract class BaseClass : ISerializable
    {
        protected BaseClass()
        {
        }
        
        protected BaseClass(SerializationInfo info, StreamingContext context)
        {
        }
        
        void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
        {
            if (info == null)
                throw new ArgumentNullException(nameof(info));

            InternalGetObjectData(info, context);
        }
        
        protected abstract void InternalGetObjectData(SerializationInfo info, StreamingContext context);
    }

    [Serializable]
    public sealed class Collection : BaseClass
    {
        private readonly List<BaseClass> children;

        public Collection()
        {
            children = new List<BaseClass>();
        }

        private Collection(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            // omitted
        }

        public IEnumerable<BaseClass> Children => children;

        public int Count => children.Count;

        // omitted
    }

    [Serializable]
    public class Termination : BaseClass
    {
        public int Value { get; set; }
        // omitted
    }

Source/destination JSON

On desktop gets:

{
   "Children":{
      "$type":"JsonNetAbstractClass.BaseClass[], DesktopJsonNetAbstractClass",
      "$values":[
         {
            "$type":"JsonNetAbstractClass.Termination, DesktopJsonNetAbstractClass",
            "Value":10
         },
         {
            "$type":"JsonNetAbstractClass.Termination, DesktopJsonNetAbstractClass",
            "Value":20
         }
      ]
   }
}

Expected behavior

Serialize same type on both platforms.

Actual behavior

Throws InvalidOperationException: Can't compile a NewExpression with a constructor declared on an abstract class.

Trace writer output:

2017-11-21T21:33:50.088 Info Started serializing JsonNetAbstractClass.Collection. Path ''.
2017-11-21T21:33:50.128 Info Started serializing JsonNetAbstractClass.BaseClass[]. Path 'Children'.
2017-11-21T21:33:50.133 Verbose Writing type name 'JsonNetAbstractClass.BaseClass[], PortableJsonNetAbstractClass' for JsonNetAbstractClass.BaseClass[]. Path 'Children'.
2017-11-21T21:33:50.136 Error Error serializing JsonNetAbstractClass.Collection. Can't compile a NewExpression with a constructor declared on an abstract class. Path 'Children.$values'.
2017-11-21T21:35:33.760 Error Error trying to serialize object

Steps to reproduce

var stringWriter = new StringWriter();
var collection = new Collection();
collection.Add(new Termination(10));
collection.Add(new Termination(20));

var traceWriter = new MemoryTraceWriter();
var serializer = JsonSerializer.CreateDefault();
serializer.TypeNameHandling = TypeNameHandling.Auto;
serializer.TraceWriter = traceWriter;
serializer.Serialize(stringWriter, collection);

GREF logging is broken in multi-process apps

Scenario: Create a Xamarin.Android app, add a e.g. Service, and set ServiceAttribute.Process:

[Service(Process="example")]
public class MyService : Android.App.Service {
    // ...
}

The problem is that the debug.mono.log system property is read at process startup -- for both (all) processes, the "normal" one and the "example" one, and they don't know to cooperate with each other.

The result is that they each write to grefs.txt, corrupting the contents.

Xamarin Android - JsonSerializationException: Error getting value from '[FIELD]' on '[METHOD]'

Copied from JamesNK/Newtonsoft.Json#1537 @lorisgiglio


Environment

Visual Studio 2015
Xamarin 4.8.0.754
Xamarin Android 8.1.0.13
Xamarin Android SDK 8.1.1.1
Newtonsoft.Json 10.0.3

Source/destination types

    public class c1
    {
        public string field1 { get; set; }
    }

Expected behavior

It has to serialize the simple object

Actual behavior

12-13 10:49:28.412 9122 9122 I MonoDroid: UNHANDLED EXCEPTION:
12-13 10:49:28.419 9122 9122 I MonoDroid: Newtonsoft.Json.JsonSerializationException: Error getting value from 'field1' on 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'. ---> System.MissingMethodException: Method 'System.Reflection.Emit.DynamicMethod.set_ProfileAPICheck' not found.
12-13 10:49:28.419 9122 9122 I MonoDroid: at System.Linq.Expressions.Compiler.LambdaCompiler.Compile (System.Linq.Expressions.LambdaExpression lambda, System.Runtime.CompilerServices.DebugInfoGenerator debugInfoGenerator) [0x0000f] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at System.Linq.Expressions.LambdaExpression.Compile () [0x00000] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Utilities.ExpressionReflectionDelegateFactory.CreateGet[T] (System.Reflection.PropertyInfo propertyInfo) [0x0007c] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Utilities.ReflectionDelegateFactory.CreateGet[T] (System.Reflection.MemberInfo memberInfo) [0x0000a] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue (System.Object target) [0x0000e] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: --- End of inner exception stack trace ---
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue (System.Object target) [0x00054] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.CalculatePropertyValues (Newtonsoft.Json.JsonWriter writer, System.Object value, Newtonsoft.Json.Serialization.JsonContainerContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonProperty property, Newtonsoft.Json.Serialization.JsonContract& memberContract, System.Object& memberValue) [0x00066] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.SerializeObject (Newtonsoft.Json.JsonWriter writer, System.Object value, Newtonsoft.Json.Serialization.JsonObjectContract contract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract collectionContract, Newtonsoft.Json.Serialization.JsonProperty containerProperty) [0x0008d] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.SerializeValue (Newtonsoft.Json.JsonWriter writer, System.Object value, Newtonsoft.Json.Serialization.JsonContract valueContract, Newtonsoft.Json.Serialization.JsonProperty member, Newtonsoft.Json.Serialization.JsonContainerContract containerContract, Newtonsoft.Json.Serialization.JsonProperty containerProperty) [0x000b0] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.Serialize (Newtonsoft.Json.JsonWriter jsonWriter, System.Object value, System.Type objectType) [0x00079] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.JsonSerializer.SerializeInternal (Newtonsoft.Json.JsonWriter jsonWriter, System.Object value, System.Type objectType) [0x00253] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.JsonSerializer.Serialize (Newtonsoft.Json.JsonWriter jsonWriter, System.Object value, System.Type objectType) [0x00000] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.JsonConvert.SerializeObjectInternal (System.Object value, System.Type type, Newtonsoft.Json.JsonSerializer jsonSerializer) [0x00028] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.JsonConvert.SerializeObject (System.Object value, System.Type type, Newtonsoft.Json.JsonSerializerSettings settings) [0x00007] in :0
12-13 10:49:28.419 9122 9122 I MonoDroid: at Newtonsoft.Json.JsonConvert.SerializeObject (System.Object value, Newtonsoft.Json.JsonSerializerSettings settings) [0x00000] in :0

Steps to reproduce

    public static string GetData(string s1)
    {
       if (string.IsNullOrWhiteSpace(s1)) return null;

        c1 c = new c1();

        c1.field1 = s1;

        string res = JsonConvert.SerializeObject(c1);
        
        return res;
   }

FormsAppCompatActivity.OnDestroy occasionally throws "No view found for id" exception for Android N devices

Steps to Reproduce

I could not reproduce this from our development environment. We've received infrequent and non-critical reports from our bug reporting.

Expected Behavior

  • App gracefully closes

Actual Behavior

  • App crashes with the below exception

Version Information

Affected Form versions:
2.4.0.38779
2.5.0.91635

Affected Device Platforms:
Android N (7.x)

Affected Devices:
Galaxy S7, S7 Edge, S8, S8+
Galaxy Note 5
LG Aristo, G6, Stylo 3

Related

Stacktrace

Java.Interop.JniEnvironment No view found for id 0x1 (unknown) for fragment FragmentContainer{460ecc1 #1 id=0x1}
Raw
System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()<b5f2483a551b45a99f04c68f14fc2c14>:0
Java.Interop.JniEnvironment.InstanceMethods.CallNonvirtualVoidMethod(JniObjectReference instance, JniObjectReference type, JniMethodInfo method, JniArgumentValue* args)<eba4edc4e27949518f7bf237cb1196cc>:0
Java.Interop.JniPeerMembers.JniInstanceMethods.InvokeVirtualVoidMethod(string encodedMember, IJavaPeerable self, JniArgumentValue* parameters)<eba4edc4e27949518f7bf237cb1196cc>:0
Android.App.Activity.OnDestroy()<bec3773976364d6f966ebdab5e7a8df3>:0
Xamarin.Forms.Platform.Android.FormsAppCompatActivity.OnDestroy()<8d6936257ac5419f8be9df07a9bb5129>:0
iSurvey.Android.MainActivity.OnDestroy()<8d9b18b497204292ba1e24a705032810>:0
Android.App.Activity.n_OnDestroy(IntPtr jnienv, IntPtr native__this)<bec3773976364d6f966ebdab5e7a8df3>:0
at (wrapper dynamic-method) System.Object:ee7a2513-7ba6-47d4-b295-16c9cfe08d94 (intptr,intptr)
--- End of managed Java.Lang.IllegalArgumentException stack trace ---
java.lang.IllegalArgumentException: No view found for id 0x1 (unknown) for fragment FragmentContainer{460ecc1 #1 id=0x1}
at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1334)
at android.support.v4.app.FragmentManagerImpl.moveFragmentToExpectedState(FragmentManager.java:1569)
at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1636)
at android.support.v4.app.BackStackRecord.executeOps(BackStackRecord.java:758)
at android.support.v4.app.FragmentManagerImpl.executeOps(FragmentManager.java:2415)
at android.support.v4.app.FragmentManagerImpl.executeOpsTogether(FragmentManager.java:2201)
at android.support.v4.app.FragmentManagerImpl.optimizeAndExecuteOps(FragmentManager.java:2155)
at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:2064)
at android.support.v4.app.FragmentManagerImpl.dispatchDestroy(FragmentManager.java:3026)
at android.support.v4.app.FragmentController.dispatchDestroy(FragmentController.java:262)
at android.support.v4.app.FragmentActivity.onDestroy(FragmentActivity.java:390)
at android.support.v7.app.AppCompatActivity.onDestroy(AppCompatActivity.java:209)
iSurvey.Android.MainActivity.n_onDestroy(Native Method)
at iSurvey.Android.MainActivity.onDestroy(MainActivity.java:114)
at android.app.Activity.performDestroy(Activity.java:6959)
at android.app.Instrumentation.callActivityOnDestroy(Instrumentation.java:1154)
at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:4289)
at android.app.ActivityThread.handleDestroyActivity(ActivityThread.java:4320)
at android.app.ActivityThread.-wrap6(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1589)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6310)
java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:872)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:762)

Thread.CurrentPrincipal not flowing via Task.Run but does flow with Task.Factory.StartNew long running

Steps to Reproduce

  1. Within an Xamarin.Android application, on the Main Thread, Set Thread.CurrentPrincipal to a custom Principle which is serializable.
  2. await a Task.Run()
  3. Inside the Task, if it executes on the same thread then Thread.CurrentPrincipal is still set correctly.
  4. Inside the Task, if it is executing on a different thread from the main thread, it's Thread.CurrentPrincipal value is lost (it's a GenericPrincipal again).

If you do the same, but use Task.Factory.StartNew with TaskCreationOptions.LongRunning, instead of Task.Run, then the Custom Principal does flow to the new thread.

Is this a bug?

Logged stack overflow here: https://stackoverflow.com/questions/47926132/xamarin-android-task-run-vs-task-factory-startnew-and-thread-currentprincipal

               // on main thread.
                var threadId = Thread.CurrentThread.ManagedThreadId; // == 1              
                var principle = Thread.CurrentPrincipal; // == Custom Principle set earlier via login screen.

                await Task.Run(() =>
                {

                    var afterThreadId = Thread.CurrentThread.ManagedThreadId; // != 1 (i.e different thread.)
                    var afterPriniple = Thread.CurrentPrincipal; // == != Custom Principle has not flowed.
                  
                });

This is different from the behaviour exhibited by .NET 4.7 (haven't tried other .NET framework versions).

Here is a unit test that passes under .NET 4.7 and fails under Xamarin.Android

        [Fact]
        public async Task LoginService_WhenUserLogsIn_PrincipalFlowsToAsyncTask()
        {    

            var mockIdentity = new MockIdentity(true);
            var mockPrincipal = new MockPrincipal(mockIdentity);          
            Thread.CurrentPrincipal = mockPrincipal ;          

            await Task.Factory.StartNew(async () =>
            {
                var newThreadId = Thread.CurrentThread.ManagedThreadId; // on different thread.
                Assert.True(Thread.CurrentPrincipal.Identity.IsAuthenticated);
                Assert.Equal(mockPrincipal, Thread.CurrentPrincipal);
               
                await Task.Factory.StartNew(() =>
                {
                     // still works even when nesting..
                    newThreadId = Thread.CurrentThread.ManagedThreadId;
                    Assert.True(Thread.CurrentPrincipal.Identity.IsAuthenticated);
                    Assert.Equal(mockPrincipal, Thread.CurrentPrincipal);

                }, TaskCreationOptions.LongRunning);

            }, TaskCreationOptions.LongRunning);

            await Task.Run(() =>
            {
               // Following works on NET4.7 and fails under Xamarin.Android.
                var newThreadId = Thread.CurrentThread.ManagedThreadId;
                Assert.True(Thread.CurrentPrincipal.Identity.IsAuthenticated);
                Assert.Equal(mockPrincipal, Thread.CurrentPrincipal);

            });

        }

Expected Behavior

Custom CurrentPrincipal should flow via Execution Context

Actual Behavior

Custom CurrentPrincipal isn't flowing..

Version Information

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 00369-60000-00001-AA768
Microsoft Visual Basic 2017

Visual C# 2017 00369-60000-00001-AA768
Microsoft Visual C# 2017

Visual C++ 2017 00369-60000-00001-AA768
Microsoft Visual C++ 2017

Visual F# 4.1 00369-60000-00001-AA768
Microsoft Visual F# 4.1

.NET Portability Analyzer 1.1.10808.0
Evaluates portability of assemblies across .NET platforms.

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

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

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 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.

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

SettingsWindow Extension 1.0
SettingsWindow Visual Studio Extension Detailed Info

SQL Server Data Tools 15.1.61710.120
Microsoft SQL Server Data Tools

TypeScript Tools 15.5.11025.1
TypeScript Tools for Microsoft Visual Studio

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

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.

Log File

The above command doesn't work on Windows using VS.

Random NullReference and InvalidCast crashes in mono class libraries

Steps to Reproduce

We have a big game that communicates with server via HTTP.

<AndroidLinkMode>SdkOnly</AndroidLinkMode>
<AotAssemblies>True</AotAssemblies>
<EnableLLVM>True</EnableLLVM>
<AndroidEnableSGenConcurrent>false</AndroidEnableSGenConcurrent>

GCBridge - default, it is tarjan in this XA version.

Actual Behavior

Most of the crashes come from SSL/TLS stack, but List.Add, Dictionary.Add also crash for some users, but 50 times less often.

Crashes on Androids:

Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
  at (wrapper remoting-invoke-with-check) Mono.Security.Protocol.Tls.SslStreamBase:set_CheckCertRevocationStatus (bool)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
  at Mono.Security.Protocol.Tls.SslClientStream.add_ServerCertValidation2 (Mono.Security.Protocol.Tls.CertificateValidationCallback2 value) <0x9d0ee038 + 0x0005c> in <cdde401f4fc64c87a9a513ce5f60d5ad>:0 
  at (wrapper remoting-invoke-with-check) Mono.Security.Protocol.Tls.SslClientStream:add_ServerCertValidation2 (Mono.Security.Protocol.Tls.CertificateValidationCallback2)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'SslStream'.
System.Net.Security.SslStream.get_Impl()
System.Net.Security.SslStream.get_Impl()(wrapper remoting-invoke-with-check)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
System.Net.HttpWebRequest.get_ClientCertificates()
System.Net.HttpWebRequest.get_ClientCertificates()(wrapper remoting-invoke-with-check)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
System.Net.HttpWebRequest.get_ServerCertValidationCallback()
System.Net.HttpWebRequest.get_ServerCertValidationCallback()(wrapper remoting-invoke-with-check)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
Mono.Security.Protocol.Tls.TlsStream.ToArray()
Mono.Security.Protocol.Tls.TlsStream.ToArray()(wrapper remoting-invoke-with-check)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
System.Collections.Generic.List<T>.Add(T item)
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
  at System.Runtime.CompilerServices.TaskAwaiter`1[TResult].UnsafeOnCompleted (System.Action continuation) <0x9c1fa264 + 0x00014> in <162b154355a14010abd9ab37698d0a10>:0 
  at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[TResult].AwaitUnsafeOnCompleted[TAwaiter,TStateMachine] (TAwaiter& awaiter, TStateMachine& stateMachine) [0x0004c] in <162b154355a14010abd9ab37698d0a10>:0 
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.CompilerServices.AsyncMethodBuilderCore+<>c.<ThrowAsync>b__6_1 (System.Object state) <0x9c1f9ba0 + 0x00058> in <162b154355a14010abd9ab37698d0a10>:0 
  at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context (System.Object state) <0x9c151b64 + 0x0004f> in <162b154355a14010abd9ab37698d0a10>:0 
  at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) <0x9c14ba74 + 0x001bb> in <162b154355a14010abd9ab37698d0a10>:0 
  at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () <0x9c151afc + 0x0003b> in <162b154355a14010abd9ab37698d0a10>:0 
  at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00074] in <162b154355a14010abd9ab37698d0a10>:0 
  at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () <0x9c15199c + 0x00007> in <162b154355a14010abd9ab37698d0a10>:0 
Xamarin caused by: android.runtime.JavaProxyThrowable: System.NullReferenceException: Object reference not set to an instance of an object
System.Runtime.CompilerServices.TaskAwaiter.OnCompletedInternal(Task task, Action continuation, bool continueOnCapturedContext, bool flowExecutionContext)
System.Runtime.CompilerServices.TaskAwaiter<TResult>.UnsafeOnCompleted(Action continuation)
System.Runtime.CompilerServices.AsyncTaskMethodBuilder<TResult>.AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine)<162b154355a14010abd9ab37698d0a10>:0
System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(object state)
System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, object state, bool preserveSyncCtx)
System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
System.Threading.ThreadPoolWorkQueue.Dispatch()<162b154355a14010abd9ab37698d0a10>:0
System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()

An so on.

Version Information

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

Installed Version: Professional

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

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

Other

My naive assumptions is that this is a bug in GC, we'll definitely try SGEN in next release to check that.
Will try new GC bridge as well

RecyclerView.Adapter successor native peer members are disposed (only the android instance - Java.Lang.Object.Handle becomes 0x0) while adapter is still alive

Short Description of the issue

All members of my adapter class, that inherits the RecyclerView.Adapter, are being disposed in OnLoadFinished callback method
in my activity (responsible for displaying the loaded messages in RecyclerView) that inherits Android.Support.V4.App.LoaderManager.ILoaderCallbacks.

Short environment details:
Xamarin.Android Visual Studio project on Windows 10.

Steps to Reproduce

  1. Run FindMe application (FindMe is the name of my application).
  2. Press the gray square of the main activity (It will start the second activity, which displays a list with the SMS/MMS messages of the phone).
  3. Press the back button of the phone to return back to the main activity.
  4. Repeat step 2 and 3 several times (In most cases the bug will be reproduced within less than 10 times, but I reproduced it also from the 18 - 20 time).

Expected Behavior

I expect while the CMessagesAdapter (inherites RecyclerView.Adapter) is alive, all of its members to be also alive. Otherwise my application crashes when I try to call one of these members.

Actual Behavior

My successor class of RecyclerView.Adapter (CMessagesAdapter, see attached VS project) has a Java.Lang.String instance member, which Handle suddenly becomes 0x0.
Native peer objects of all of the members of theCMessagesAdapter suddenly are deleted (at least Handle becomes 0x0).
This happens in the OnLoadFinished callback method (my activity, CMessagingActivity, that has the RecyclerView, inherites Android.Support.V4.App.LoaderManager.ILoaderCallbacks).
After the loader loads the messages from the data base and returns back to the activity to display them, the the java instances of the adapter members are disposed.
This does not reproduce always, but very often. I managed to reproduced it at the 2nd and 3rd time, but also often at 6th and 9th time. I also reproduced it at 18th time,
so please check it at least 30 times to be sure that you will get to the problem.
When I say here "time" I mean: press the square button and wait the messages to load (OnLoadFinished is called). This is a single time. Then press the back button to return back and repeat the same steps one more time. This is a second time. So for example 9th time means that calling the OnLoadFInished for the 9th time.
I reproduced the problem both on release and debug.
I managed to reproduce it more easily (less steps) when I enabled gref and gc in the log
from the command line:
adb shell setprop debug.mono.log gref,gc

I managed to reproduces it only on my phone - LGE LG-H525n (this is LG G4c).
I couldn't reproduce this bug on an emulator.

Reproduced device info:

LGE LG-H525n (this is LG G4c)
Android: 6.0, API 23
Android security patch level: 2016-07-01
Kernel version: 3.10.49
Software Version: V20d-EUR-XX

My Environment:

See the MyEnvironment.txt file in the archive.

Version Information

Visual Studio Version Info file VisualStudioVersionInfo.txt is in the archive with the Visual Studio project and the rest files.

Log File

See the grefLog.txt file in the archive with the Visual Studio project and the rest files.

Source code and Visual Studio project

See the FindMe.7z

AndroidInstanceBugReportInBugzilla.zip

Early <AndroidAsset> caching results in differences w.r.t. other platforms, use case limits.

Steps to Reproduce

  1. Extract the attached workspace, load the top-level solution.
  2. For each of the four client projects (under Clients solution folder), build and run.
  3. Observe the on-screen text (Android, iOS, UWP) or command line output (CLI).

BuildArtifacts.zip

Expected Behavior

In all cases, "This is actual content for asset A." is indicated.

Actual Behavior

For all of { CLI, iOS, UWP }, "This is actual content for asset A." is indicated.
For { Android }, "This is a placeholder for asset A." is indicated.

(Further commentary to follow.)

Version Information

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

Installed Version: Community

Visual Basic 2017 00369-60000-00001-AA028
Microsoft Visual Basic 2017

Visual C# 2017 00369-60000-00001-AA028
Microsoft Visual C# 2017

Visual C++ 2017 00369-60000-00001-AA028
Microsoft Visual C++ 2017

Visual F# 4.1 00369-60000-00001-AA028
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.

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

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

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 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 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.

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

SQL Server Data Tools 15.1.61710.120
Microsoft SQL Server Data Tools

TypeScript Tools 15.5.11025.1
TypeScript Tools for Microsoft Visual Studio

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

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.

Log File

Fix "Clean" build target for xamarin-android repo

There is no working "Clean" process. MSBuild is lame by design and does not appropriately resolve dependencies in reverse order so any project whose "Clean" target depends on dependencies's outcome will abort.

We should scrap MSBuild or (insert anything here; I can't think of any reasonable way to achieve this. Any other solution results in external tooling to automatically track dependencies).

I can't compile this code.

In Xamarin.android I am trying to compile

   public ArticleActivity(string path) : base()
        {
            _path = path;
        }

or

 public ArticleActivity(string path)
        {
            _path = path;
        }

None of both compiling. The error is GenerateJavaSubs. This thing can be improved in visual studio tooling. At the first place it's not showing detail until I click on detail in errors. It could be better if It's show error on the same code where it's have issue.

Can not Export CREATOR Field for IParcelable instance

Sample link

https://github.com/xamarin/monodroid-samples/blob/f944f42001fa134915069fa7bbb9cb493bfd446d/ExportAttribute/ExportAttributeTest/MainActivity.cs#L55
https://github.com/xamarin/monodroid-samples/blob/f944f42001fa134915069fa7bbb9cb493bfd446d/android5.0/Topeka/Topeka/Models/Player.cs#L18

Verified on Monodroid v8.2.0.1

Issue description

Can not ExportField CREATOR for IParcelable instance

Steps to reproduce the issue

  1. Open Topeka sample.
  2. Input login info.
  3. Tap Login button.

What's the expected result?

  • User successfully login.

What's the actual result?

  • Application crashes.

Steps to reproduce the issue

  1. Open ExportAttributeTest sample.
  2. Tap button.

What's the expected result?

  • Parcelable object handled properly.

What's the actual result?

  • Application crashes.

Additional details / screenshot (Optional)

image

InitializeCreator method is not reachable via debugger.
MSBuildOutput.log
logCat.txt

[Android <4.3] AOT + SO_MAX=128 limitation leads to crash on start.

Androids pre 4.3 allowed only 128 .so libraries loaded into one process.
https://android.googlesource.com/platform/bionic/+/android-4.2_r1/linker/linker.cpp#54

OS + Runtime normally load about 65 libraries even before first line of code executes.
Other libs like mscorlib, System.Core, System.Net.Http take other ~20.

If your solution has ~20-25 projects (which isn't too much if you have proper architecture), and has another 10-15 nuget references - app won't load.

Repro project that simply loads hundred of native libs and crashes after 56

Log will contain entries like that, and crash with some DllNotFoundException

D/Mono    ( 6456): DllImport error loading library './libUnluckyLibName.so': 'Cannot load library: alloc_info[268]:   195 too many libraries when loading libUnluckyLibName.so'.

There is a cool solution that embeds all .dll files into one app_bundle.so.
If something like that was implemented for AOT mode (for .so files), that would be great.

Binding Library using `class-parse` (Error CS1519: Invalid token 'params')

Error CS1519: Invalid token 'params' in class, struct, or interface member declaration (CS1519)

Steps to Reproduce

  1. Create Xamarin.Android binding library of the .aar : https://github.com/michael-rapp/AndroidUtil

Via Maven: http://central.maven.org/maven2/com/github/michael-rapp/android-util/1.18.2/android-util-1.18.2.aar

  1. Use class-parse

<AndroidClassParser>class-parse</AndroidClassParser>

Xamarin.Android repro solution/project:

android-util-1.18.2.zip

Expected Behavior

A beautifully generated binding project with no errors ๐Ÿ˜บ ๐Ÿฃ

Actual Behavior

Generated code includes params keyword incorrectly, i.e. params global:: Java.Lang.Object[] p2;

Example:

public partial class LoadDataEventArgs : global::System.EventArgs {

	public LoadDataEventArgs (bool handled, global::DE.Mrapp.Android.Util.Multithreading.AbstractDataBinder p0, global::Java.Lang.Object p1, params global:: Java.Lang.Object[] p2)
	{
		this.handled = handled;
		this.p0 = p0;
		this.p1 = p1;
		this.p2 = p2;
	}

	bool handled;
	public bool Handled {
		get { return handled; }
		set { handled = value; }
	}

	global::DE.Mrapp.Android.Util.Multithreading.AbstractDataBinder p0;
	public global::DE.Mrapp.Android.Util.Multithreading.AbstractDataBinder P0 {
		get { return p0; }
	}

	global::Java.Lang.Object p1;
	public global::Java.Lang.Object P1 {
		get { return p1; }
	}

	params global:: Java.Lang.Object[] p2;
	public params global:: Java.Lang.Object[] P2 {
		get { return p2; }
	}
}

Version Information

  • Xamarin.Android Version: 8.1.0.25
  • Mono 5.4.1.7 (2017-06/e66d9abbb27) (64-bit)

eglGetDisplay failed EGL_BAD_PARAMETER

EelaTaxi.zip

Steps to Reproduce

  1. Set linking on SDK and User Assemblies
  2. Check AOT Compilation
  3. Check Use LLVM Optimizing Compiler
  4. Archive the packge
  5. Run on Huawei Honor3 or Huawei G700 or Huawei G610 or Huawei Y330

I attached the APK file.

Tip1 : Everything is working fine without checking AOT Compilation and Use LLVM Optimizing Compiler even on Huawei devices that I mentioned .

Tip2 : On other devices ( except Huawei devices that I mentioned ) everything is working fine even with checking AOT Compilation and Use LLVM Optimizing.

Tip3 : Huawei devices Android versions are 4.2.2 and 4.2.1

Expected Behavior

Runing the Program

Actual Behavior

Force close on splashview

Version Information

Visual Studio 15.5.2

Log File

android.view.HardwareRenderer$GlRenderer.initializeEgl
HardwareRenderer.java - line 878
java.lang.RuntimeException: eglGetDisplay failed EGL_BAD_PARAMETER
eglGetDisplay failed EGL_BAD_PARAMETER
1- android.view.HardwareRenderer$GlRenderer.initializeEgl HardwareRenderer.java:878
2- android.view.HardwareRenderer$GlRenderer.initialize HardwareRenderer.java:829
3- android.view.ViewRootImpl.performTraversals ViewRootImpl.java:1806
4- android.view.ViewRootImpl.doTraversal ViewRootImpl.java:1211
5- android.view.ViewRootImpl$TraversalRunnable.run ViewRootImpl.java:5039
6- android.view.Choreographer$CallbackRecord.run Choreographer.java:776
7- android.view.Choreographer.doCallbacks Choreographer.java:579
8- android.view.Choreographer.doFrame Choreographer.java:548
9- android.view.Choreographer$FrameDisplayEventReceiver.run Choreographer.java:762
10- android.os.Handler.handleCallback Handler.java:800
11- android.os.Handler.dispatchMessage Handler.java:100
12- android.os.Looper.loop Looper.java:194
13- android.app.ActivityThread.main ActivityThread.java:5433
14- java.lang.reflect.Method.invokeNative Method.java
15- java.lang.reflect.Method.invoke Method.java:525
16- com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run ZygoteInit.java:924
17- com.android.internal.os.ZygoteInit.main ZygoteInit.java:691
18- dalvik.system.NativeStart.main NativeStart.java

Need OS-specific `mscorlib.dll`/etc. builds

As part of continuing corefx/etc. code merges into Mono, mscorlib.dll and System.Data.dll (and others?) are going to be OS-specific. As such, we will need to rebuild the BCL for each supported platform (Android, macOS, Windows), instead of using the same binary assemblies on all platforms.

Support full aot for Android

Hope to implement "full aot" to remove libmonodroid_bundle_app.so.
It can reduce the size of the software when we do not need to dynamically generate the code.

Steps to Reproduce

Expected Behavior

Actual Behavior

Version Information

Log File

Support building with JDK 9.0.1

Steps to Reproduce

  1. Install JDK 9.0.1.
  2. Build xamarin-android.

Expected Behavior

It builds!

Actual Behavior

It doesn't; it fails when building tests/CodeGen-Binding/Xamarin.Android.LibraryProjectZip-LibBinding:

Task "Exec"
        Using task Exec from Microsoft.Build.Tasks.Exec, Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Executing: ./gradlew assembleDebug --stacktrace
        Environment variables being passed to the tool:
                ANDROID_HOME=/Users/vsts/android-toolchain/sdk
                JAVA_HOME=/usr
        Unable to find a $JAVA_HOME at "/usr", continuing with system-provided Java...
        FAILURE: Build failed with an exception.
        * What went wrong:
        Could not determine java version from '9.0.1'.
        * Try:
        Run with --info or --debug option to get more log output.
        * Exception is:
        java.lang.IllegalArgumentException: Could not determine java version from '9.0.1'.
                at org.gradle.api.JavaVersion.toVersion(JavaVersion.java:70)
                at org.gradle.api.JavaVersion.current(JavaVersion.java:80)
                at org.gradle.internal.jvm.UnsupportedJavaRuntimeException.assertUsingVersion(UnsupportedJavaRuntimeException.java:29)
                at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:32)
                at org.gradle.launcher.cli.JavaRuntimeValidationAction.execute(JavaRuntimeValidationAction.java:24)
                at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:33)
                at org.gradle.launcher.cli.ExceptionReportingAction.execute(ExceptionReportingAction.java:22)
                at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:210)
                at org.gradle.launcher.cli.CommandLineActionFactory$WithLogging.execute(CommandLineActionFactory.java:174)
                at org.gradle.launcher.Main.doAction(Main.java:33)
                at org.gradle.launcher.bootstrap.EntryPoint.run(EntryPoint.java:45)
                at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
                at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                at java.base/java.lang.reflect.Method.invoke(Method.java:564)
                at org.gradle.launcher.bootstrap.ProcessBootstrap.runNoExit(ProcessBootstrap.java:60)
                at org.gradle.launcher.bootstrap.ProcessBootstrap.run(ProcessBootstrap.java:37)
                at org.gradle.launcher.GradleMain.main(GradleMain.java:23)
                at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
                at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                at java.base/java.lang.reflect.Method.invoke(Method.java:564)
                at org.gradle.wrapper.BootstrapMainStarter.start(BootstrapMainStarter.java:30)
                at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:129)
                at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:61)

Java invocation failure with master/15.6

With the latest master/15.6 builds of X.A i am triggering this issue inside the forms previewer:

Java.Lang.InstantiationException: android.view.ViewGroup
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in <808e27c157614d6b865c43847235b62d>:0 
  at Java.Interop.JniEnvironment+Object.AllocObject (Java.Interop.JniObjectReference type) [0x0003c] in <8e80eb3ca41f4c3eb745bd7c73458796>:0 
  at Java.Interop.JniType.AllocObject () [0x0000c] in <8e80eb3ca41f4c3eb745bd7c73458796>:0 
  at Java.Interop.JniPeerMembers+JniInstanceMethods.StartCreateInstance (System.String constructorSignature, System.Type declaringType, Java.Interop.JniArgumentValue* parameters) [0x0003e] in <8e80eb3ca41f4c3eb745bd7c73458796>:0 
  at Android.Views.ViewGroup..ctor (Android.Content.Context context) [0x0005b] in <9ca7528089f0437883d939fbe90c65ab>:0 
  at Xamarin.Forms.Platform.Android.PlatformRenderer..ctor (Android.Content.Context context, Xamarin.Forms.Platform.Android.IPlatformLayout canvas) [0x00000] in C:\Users\hartez\Documents\Xamarin\Xamarin.Forms\Xamarin.Forms.Platform.Android\PlatformRenderer.cs:16

The code in question is the chaining to the base constructor here https://github.com/xamarin/Xamarin.Forms/blob/master/Xamarin.Forms.Platform.Android/PlatformRenderer.cs#L16

The latest stable release of X.A works fine, so this looks like a regression between then and now.

Properly fix `DisplayMetrics.DENSITY_DEVICE_STABLE` mapping

Commit ef77024 manually removed the DisplayMetrics.DENSITY_DEVICE_STABLE enum binding, added by commit 50c0c15. This fix is incomplete/incorrect: the problem is that the underlying tooling in build-tools/enumification-helpers is doing "something" wrong, which means this invalid mapping will be reintroduced in the future.

We need to fix build-tools/enumification-helpers so that DisplayMetrics.DENSITY_DEVICE_STABLE isn't reintroduced for enum mapping.

Regression: fixed (char*) crash: condition `ins->opcode >= MONO_CEE_LAST' not met

Not sure if this should be reported here or in https://github.com/mono/mono/issues

Steps to Reproduce

  1. Update to latest VS (15.5.2)
  2. Create a new Android project
  3. Add the following code in MainActivity.OnCreate
            string s = " test";
            fixed (char* t = s)
            {
            }
  1. Run the app

Expected Behavior

Program works fine

Actual Behavior

Crash:

01-10 14:37:21.682  2328  2328 E mono    : converting method void App3.MainActivity:OnCreate (Android.OS.Bundle)
01-10 14:37:21.683  2328  2328 F         : * Assertion at /Users/builder/jenkins/workspace/xamarin-android-d15-5/xamarin-android/external/mono/mono/mini/method-to-ir.c:13203, condition `ins->opcode >= MONO_CEE_LAST' not met
01-10 14:37:21.683  2328  2328 F libc    : Fatal signal 6 (SIGABRT), code -6 in tid 2328 (App3.App3)

I investigated little bit with a previously working program and noticed the following difference in IL codegen:
Working IL with previous version of VS: stloc.1 ldloc.1 conv.i
IL that triggers the bug with latest VS: stloc.1 ldloc.1 conv.u (probably a recent change in Roslyn?)

Version Information

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

Installed Version: Professional

Visual Basic 2017 00370-20001-67423-AA348
Microsoft Visual Basic 2017

Visual C# 2017 00370-20001-67423-AA348
Microsoft Visual C# 2017

Visual C++ 2017 00370-20001-67423-AA348
Microsoft Visual C++ 2017

Visual F# 4.1 00370-20001-67423-AA348
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

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

Fix File Encoding 1.3.1
Prevents Visual Studio from adding BOM to UTF-8 files.

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

JetBrains ReSharper Ultimate 2017.3.1 Build 111.0.20171221.145902
JetBrains ReSharper Ultimate package for Microsoft Visual Studio. For more information about ReSharper Ultimate, visit http://www.jetbrains.com/resharper. Copyright ยฉ 2018 JetBrains, Inc.

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

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.

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

SQL Server Data Tools 15.1.61710.120
Microsoft SQL Server Data Tools

TypeScript Tools 15.5.11025.1
TypeScript Tools for Microsoft Visual Studio

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 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

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.

Xenko.VisualStudio.Package 2.0
Xenko VisualStudio Package

MonoTests.System.Reflection.Emit.SaveTest.Save test fails in Release configuration with BCL linking on

A test from the Mono BCL test suite (MonoTests.System.Reflection.Emit.SaveTest.Save) fails when the tests are built in Release mode with linking set to SdkOnly.
It seems that the linker somehow changes the order of interfaces in emitted code since turning BCL linking off makes the test work again. The test also works fine in Debug configuration (with the linker off)

Steps to Reproduce

  1. Comment out this line
  2. Run make CONFIGURATION=Release run-apk-tests from the top Xamarin.Android dir
  3. Wait patiently
  4. Find the failure in the NUnit tests result file (TestResult-Xamarin.Android.Bcl_Tests.nunit-Release.xml in the top Xamarin.Android directory)

Expected Behavior

The test should run fine with BCL linking on

Actual Behavior

The test fails when executed with BCL linking on

Version Information

Xamarin.Android/master (c4e81655ac22b06806e732e9dd0bc729e8d2c1d7)

Test failure

MESSAGE:
  Expected: <iface1>
  But was:  <System.IComparable>

  +++++++++++++++++++
  STACK TRACE:
  at MonoTests.System.Reflection.Emit.SaveTest.CheckAssembly (System.Reflection.Assembly a) [0x000a0] in <1e30aff9165c427db5bedc42c5906861>:0 
  at MonoTests.System.Reflection.Emit.SaveTest.Save () [0x00b6d] in <1e30aff9165c427db5bedc42c5906861>:0 
  at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke(System.Reflection.MonoMethod,object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00032] in <0a3e31ed05774b07957e0b91c5cab789>:0

Xamarin android date picker NullPointerException.

Steps to Reproduce

  1. Create a Xamarin android project with the following versions:

Xamarin v4.8.0.753
Android SDK v8.1.0.25

  1. install nugget Xamarin.Android.Support.v7.AppCompat (v26.1.0.1)
  2. Create a layout and add a date picker.

Expected Behavior

date picker is rendered on the layout viewer

Actual Behavior

Throws an exception.

Version Information

Xamarin v4.8.0.753
Android SDK v8.1.0.25
Xamarin.Android.Support.v7.AppCompat (v26.1.0.1)

Log File

Trying to load class android.support.v7.widget.AppCompatTextView

Failed to process message RenderLayout
mono.android.DesignerException: java.lang.NullPointerException
at mono.android.DesignerException.fromThrowable(DesignerException.java:46)
at mono.android.DesignerSession.checkRenderResultForError(DesignerSession.java:190)
at mono.android.DesignerSession.renderInternal(DesignerSession.java:343)
at mono.android.SessionProjectCallback.computeInMonoDroidContextUnsafe(SessionProjectCallback.java:112)
at mono.android.DesignerSession.render(DesignerSession.java:335)
at mono.android.DesignerSession.processMessage(DesignerSession.java:721)
at mono.android.MessageListener.executeMessage(MessageListener.java:88)
at mono.android.MessageListener$Runner.run(MessageListener.java:44)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.NullPointerException
at android.content.res.Resources_Delegate.getValue(Resources_Delegate.java:788)
at android.content.res.Resources.getValue(Resources.java:1286)
at android.support.v4.content.res.ResourcesCompat.loadFont(ResourcesCompat.java:212)
at android.support.v4.content.res.ResourcesCompat.getFont(ResourcesCompat.java:206)
at android.support.v7.widget.TintTypedArray.getFont(TintTypedArray.java:119)
at android.support.v7.widget.AppCompatTextHelper.updateTypefaceAndStyle(AppCompatTextHelper.java:208)
at android.support.v7.widget.AppCompatTextHelper.onSetTextAppearance(AppCompatTextHelper.java:242)
at android.support.v7.widget.AppCompatTextView.setTextAppearance(AppCompatTextView.java:161)
at android.widget.TextView.setTextAppearance(TextView.java:2791)
at android.widget.YearPickerView$YearAdapter.getView(YearPickerView.java:192)
at android.widget.AbsListView.obtainView(AbsListView.java:2362)
at android.widget.ListView.onMeasure(ListView.java:1203)
at android.view.View.measure(View.java:19734)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6120)
at com.android.internal.widget.DialogViewAnimator.onMeasure(DialogViewAnimator.java:64)
at android.view.View.measure(View.java:19734)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6120)
at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1464)
at android.widget.LinearLayout.measureVertical(LinearLayout.java:758)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:640)
at android.view.View.measure(View.java:19734)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6120)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:185)
at android.view.View.measure(View.java:19734)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6120)
at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1464)
at android.widget.LinearLayout.measureVertical(LinearLayout.java:758)
at android.widget.LinearLayout.onMeasure(LinearLayout.java:640)
at android.view.View.measure(View.java:19734)
at android.widget.ScrollView.measureChildWithMargins(ScrollView.java:1293)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:185)
at android.widget.ScrollView.onMeasure(ScrollView.java:340)
at android.view.View.measure(View.java:19734)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6120)
at android.widget.FrameLayout.onMeasure(FrameLayout.java:185)
at android.support.v7.widget.ContentFrameLayout.onMeasure(ContentFrameLayout.java:139)
at android.view.View.measure(View.java:19734)
at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:6120)
at android.support.v7.widget.ActionBarOverlayLayout.onMeasure(ActionBarOverlayLayout.java:400)
at android.view.View.measure(View.java:19734)
at android.widget.RelativeLayout.measureChildHorizontal(RelativeLayout.java:715)
at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:461)
at android.view.View.measure(View.java:19734)
at com.android.layoutlib.bridge.impl.RenderSessionImpl.measureView(RenderSessionImpl.java:589)
at com.android.layoutlib.bridge.impl.RenderSessionImpl.doLayout(RenderSessionImpl.java:379)
at com.android.layoutlib.bridge.impl.RenderSessionImpl.renderAndBuildResult(RenderSessionImpl.java:534)
at com.android.layoutlib.bridge.impl.RenderSessionImpl.render(RenderSessionImpl.java:422)
at com.android.layoutlib.bridge.BridgeRenderSession.render(BridgeRenderSession.java:104)
at mono.android.DesignerSession.renderInternal(DesignerSession.java:342)

`Android.Telecom.RemoteConference` has wrong type

Context: #1078 (comment)

API-24 introduced android.telecom.RemoteConference.getConnectionProperties().

In $(TargetFrameworkVersion) v7.0 (API-24), we bound this as as type CallProperty:

24, android.telecom, RemoteConference, getConnectionProperties, return, Android.Telecom.CallProperty

24, android.telecom, RemoteConference, getConnectionProperties, return, Android.Telecom.CallProperty

In $(TargetFrameworkVersion) v7.1 (API-25), we bound this as ConnectionProperties:

25, android.telecom, RemoteConnection, getConnectionProperties, return, Android.Telecom.ConnectionProperties

25, android.telecom, RemoteConnection, getConnectionProperties, return, Android.Telecom.ConnectionProperties

Question: Why do we have three separate enumifications for this method? (There's a 2nd API-25 one two lines below the link above.)

Regardless, this mismatch introduces an inter-api-level inconsistency around the type of RemoteConference.ConnectionProperties. The result is that any assemblies which build against v7.0 and run in v7.1+ will throw a MissingMethodException.

We should fix things so that all API levels -- API-24+ -- bind RemoteConference.ConnectionProperties as ConnectionProperties

System.IO.Packaging not resolved correctly

Steps to Reproduce

We're having an issue with a Xamarin project, which as we added System.IO.Packaging 4.4.1 nuget package dependency, the reference is resolved as the ref/netstandard1.3 DLL, a reference assembly. It seems that because of that, the Xamarin app fails to start because this DLL does not get packaged, and so the app fails to start with this common xamarin error https://forums.xamarin.com/discussion/63584/android-could-not-load-assembly-xxx-during-startup-registration

There seems to be an issue open related to that https://github.com/dotnet/corefx/issues/23830

Expected Behavior

The application starts correctly.

Actual Behavior

The application fails to start with the "Could not load assembly 'xxx' during startup registration" error.

Version Information

VS 15.5.2
Xamarin 4.8
Xamarin.Android 8.1

VS bug #580833

Eliminate all "BeforeTargets" and "AfterTargets" from our own MSBuild targets

We must eliminate all "BeforeTargets" and "AfterTargets" from our own MSBuild targets. They are MSBuild anti-patterns that confuses developers by messing dependency tracking hard, and can be replaced by MSBuild properties like <BuildDependsOn>.

(In case you don't know why BeforeTargets and AfterTargets must be eliminated read this post http://sedodream.com/2013/02/12/MSBuildDependsOnTargetsVersusBeforeTargetsAfterTargets.aspx especially this: "I always use DependsOnTargets unless there is a solid reason why I should chose to use Before/AfterTargets.")

Here is the list of current BeforeTargets usage

/sources/xamarin-android$ grep -R BeforeTargets | grep -v bin/Release | grep -v bin/Debug | grep -v external/mono | grep BeforeTargets
build-tools/create-vsix/create-vsix.targets:      BeforeTargets="VSIXContainerProjectOutputGroup;CreateVsixContainer"
build-tools/create-vsix/create-vsix.targets:      BeforeTargets="Build"
build-tools/create-vsix/create-vsix.targets:      BeforeTargets="GeneratePkgDef;VSCTCompile;VSIXNameProjectOutputGroup">
src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.targets:      BeforeTargets="CoreCompile"
src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.targets:      BeforeTargets="DeployOutputFiles"
src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.targets:      BeforeTargets="CoreCompile"
src/Xamarin.Android.Build.Tasks/MSBuild/Xamarin/Android/Xamarin.Android.Common/ImportAfter/Xamarin.Android.Windows.targets:	<Target Name="_RegisterMdbFilesWithFileWrites" BeforeTargets="IncrementalClean">  
src/Xamarin.Android.Build.Tasks/Xamarin.Android.Common.targets:<Target Name="_SetLatestTargetFrameworkVersionForPackageReference" BeforeTargets="_GetRestoreTargetFrameworksOutput" DependsOnTargets="_SetLatestTargetFrameworkVersion">
src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs:<Target Name=""CustomTarget"" AfterTargets=""UpdateAndroidAssets"" BeforeTargets=""UpdateAndroidInterfaceProxies"" >
src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest.cs:<Target Name=""_CheckAbis"" BeforeTargets=""_DefineBuildTargetAbis"">
src/Mono.Android/Test/Mono.Android-Tests.targets:      BeforeTargets="Build"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="BeforeResolveReferences"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="CoreCompile"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="CoreCompile"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="_GenerateBinding"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="CoreCompile"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="GetTargetFrameworkProperties;GetReferenceAssemblyPaths;ResolveReferences"
src/Mono.Android/Mono.Android.targets:      BeforeTargets="_GenerateFrameworkList"
external/Java.Interop/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props:  <Target Name="IncludeRoslynCompilerFilesToFilesForPackagingFromProject" BeforeTargets="PrepareForRun" >
external/Java.Interop/external/cecil/Mono.Cecil.Tests.props:          BeforeTargets="GenerateBindingRedirects"
tests/Xamarin.Android.Bcl-Tests/Xamarin.Android.Bcl-Tests.targets:      BeforeTargets="ResolveAssemblyReferences">
tests/Xamarin.Android.Bcl-Tests/Xamarin.Android.Bcl-Tests.targets:      BeforeTargets="ResolveAssemblyReferences"

Certain projects are failing to build with AOT and LLVM enabled against d15-6 on Windows

I'm seeing a new failure on Windows when compiling certain projects with both AOT and LLVM. The same error does not reproduce for me on macOS, and appears to be newly introduced in 15.6.

Steps to Reproduce

  1. Download ApiDemo - https://github.com/xamarin/monodroid-samples/tree/master/ApiDemo
  2. msbuild /p:Configuration=Release /t:SignAndroidPackage /p:AotAssemblies=true /p:EnableLlvm=true ApiDemo.csproj

Expected Behavior

The project builds successfully with AOT and LLVM enabled.

Actual Behavior

[aot-compiler stdout] Mono Ahead of Time compiler - compiling assembly C:\agent\_work\r2\a\monodroid-samples\ApiDemo\obj\Release\android\assets\shrunk\Mono.Android.Export.dll (TaskId:348)
  [aot-compiler stdout] AOTID 9B00228E-5ECD-7F32-1753-92A543C073ED (TaskId:348)
  [aot-compiler stdout] Executing opt: "C:\PROGRA~2\MICROS~2\2017\ENTERP~1\MSBuild\Xamarin\Android\opt" -f -targetlibinfo -no-aa -basicaa -notti -instcombine -simplifycfg -inline-cost -inline -sroa -domtree -early-cse -lazy-value-info -correlated-propagation -simplifycfg -instcombine -simplifycfg -reassociate -domtree -loops -loop-simplify -lcssa -loop-rotate -licm -lcssa -loop-unswitch -instcombine -scalar-evolution -loop-simplify -lcssa -indvars -loop-idiom -loop-deletion -loop-unroll -memdep -gvn -memdep -memcpyopt -sccp -instcombine -lazy-value-info -correlated-propagation -domtree -memdep -adce -simplifycfg -instcombine -strip-dead-prototypes -domtree -verify -o "C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\Mono.Android.Export.dll\temp.opt.bc" "C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\Mono.Android.Export.dll\temp.bc" (TaskId:348)
  [aot-compiler stdout] Executing llc: "C:\PROGRA~2\MICROS~2\2017\ENTERP~1\MSBuild\Xamarin\Android\llc"  -asm-verbose=false -mtriple=aarch64-linux-android -disable-gnu-eh-frame -enable-mono-eh-frame -mono-eh-frame-symbol=mono_aot_Mono_Android_Export_eh_frame -relocation-model=pic -o "C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\Mono.Android.Export.dll\temp-llvm.s" "C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\Mono.Android.Export.dll\temp.opt.bc" (TaskId:348)
  [aot-compiler stderr] Stack dump: (TaskId:348)
  [aot-compiler stderr] 0.	Program arguments: C:\PROGRA~2\MICROS~2\2017\ENTERP~1\MSBuild\Xamarin\Android\llc -asm-verbose=false -mtriple=aarch64-linux-android -disable-gnu-eh-frame -enable-mono-eh-frame -mono-eh-frame-symbol=mono_aot_MonoDroid_ApiDemo_eh_frame -relocation-model=pic -o C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\MonoDroid.ApiDemo.dll\temp-llvm.s C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\MonoDroid.ApiDemo.dll\temp.opt.bc  (TaskId:348)
  [aot-compiler stderr] 1.	Running pass 'Function Pass Manager' on module 'C:\agent\_work\r2\a\MONODR~2\ApiDemo\obj\Release\aot\ARM64-~1\MonoDroid.ApiDemo.dll\temp.opt.bc'. (TaskId:348)
  [aot-compiler stderr] 2.	Running pass 'Greedy Register Allocator' on function '@MonoDroid_ApiDemo_ApiDemo_GetDemoActivities_string' (TaskId:348)
  [aot-compiler stderr] AOT of image C:\agent\_work\r2\a\monodroid-samples\ApiDemo\obj\Release\android\assets\MonoDroid.ApiDemo.dll failed. (TaskId:348)

Version Information

https://gist.github.com/pjcollins/842d3a55d49841a4fa955cd403af1549
Android NDK 15.2.4203891

Log File

http://xqa.blob.core.windows.net/gist/report-7d4d56fee1504d14818b0cef6538694e.txt

ArrayTypeMismatchException when using array of generic ICollection<T> or IList<T>

Steps to Reproduce

  1. Use the following test interface and class
public interface IFoo
{
    int MyInt { get; }
}

public class Bar : IFoo
{
    public int MyInt => 0;
}
  1. Use the following test code for reproducing the exception
ICollection<IFoo> arr1 = new Bar[1] { new Bar() };
ICollection<IFoo> arr2 = new Bar[1] { new Bar() };

ICollection<IFoo>[] a2d = new ICollection<IFoo>[2] { arr1, arr2 }; //ArrayTypeMismatchException
  1. Try the same test code with IList<T>
IList<IFoo> arr1 = new Bar[1] { new Bar() };
IList<IFoo> arr2 = new Bar[1] { new Bar() };

IList<IFoo>[] a2d = new IList<IFoo>[2] { arr1, arr2 }; //ArrayTypeMismatchException

Expected Behavior

Expected no exception throwing.

Actual Behavior

Throws an ArrayTypeMismatchException at last line of test code at runtime when using ICollection<T> or IList<T>.
The following types are working properly as expected:
IEnumerable
IEnumerable<T>
ICollection
IList
Code is compiling successfully with all types.

Version Information

Visual Studio: 15.5.2
Mono: MonoAndroid70 / 4.0.30319 / 8.1.0.25
Android: 7.0
Kernel: 4.1.18-gdd36b34

Log File

at (wrapper stelemref) System.Object:virt_stelemref_interface (intptr,object)

[API design] Fix bogus AbsListView.Adapter / RawAdapter

I have no idea how this could occur from the beginning, but Android.Widget.AbsListView has bogus property definition "Adapter" which (1) has fake mapping to getAdapter() which DOES NOT EXIST (there is NO IMPLEMENTATION), and (2) invalidates all the relevant effort to make correct mapping to Java getAdapter and setAdapter in the derived classes in third party Java libraries.

Having Adapter overridable is all wrong. It must be either completely vanished or made non-virtual, just to become a utility property that only delegates to RawAdapter.

This was why #1032 was failing.

To fix this issue -

(1) add [Obsolete ("Do not override this property. It was design mistake. Override RawAdapter instead.")]. We will have to eliminate this once
(2) add another utility property (something like TypedAdapter) which is not Java.Lang.Object unlike RawAdapter, so that we can later remove Adapter property. The implementation is just a typed delegate to RawAdapter.

Warning [ObsoleteSdkInt] displayed when enabling lint checks in simple XA app

Steps to Reproduce

  1. Build a simple "Hello World" type application with /p:AndroidLintEnabled=true /p:AndroidUseLatestPlatformSdk=true

Expected Behavior

Xamarin Android lint checks produce no warnings or errors for a simple 'template' style project.

Actual Behavior

XA Lint checks now produce the following warning:

(_LintChecks target) -> 
  obj/Debug/android/src/mono/MonoPackageManager.java(85,6): warning XA0102:  Unnecessary; SDK_INT is always >= 10 [ObsoleteSdkInt] [/Users/petercollins/git/monodroid-samples/HelloWorld/HelloWorld.csproj]

Version Information

XA Version: 8.2.0.4
SDK Tools Version: 26.1.1
SDK Platform Tools Version: 27.0.0
SDK Build Tools Version: 27.0.2

Log File

http://xqa.blob.core.windows.net/gist/log-e3357168d0154e319154eb4c64863316.txt

bcl-tests are crashing on startup against a system install in release mode

Steps to Reproduce

From a clean install, on macOS, run the following:

  1. msbuild build-tools/xa-prep-tasks/xa-prep-tasks.csproj /p:Configuration=Release /p:HostOS=Darwin
  2. msbuild build-tools/remap-assembly-ref/remap-assembly-ref.csproj /p:Configuration=Release
  3. msbuild /t:Install tests/Xamarin.Android.Bcl-Tests/Xamarin.Android.Bcl-Tests.csproj /p:FrameworkPathOverride=/Library/Frameworks/Xamarin.Android.framework/Versions/Current/lib/xbuild-frameworks/MonoAndroid/v1.0/mscorlib.dll
  4. msbuild /t:RunTests tests/Xamarin.Android.Bcl-Tests/Xamarin.Android.Bcl-Tests.csproj /p:AndroidSdkDirectory=~/Library/Developer/Xamarin/android-sdk-macosx

or use the .apk file linked below:

https://microsoft-my.sharepoint.com/:u:/p/pecolli/EcpjRIgbIAZPgOVwrmlF9v4B2KGPRFNMZQEmqTQCHEpV2Q?e=80773f529fa64e058d696b473620f19e

Expected Behavior

Tests should execute successfully as expected.

Actual Behavior

Test run crashes on startup with the following:

12-12 16:10:32.727 13007 13007 I MonoDroid: System.ArgumentException: An item with the same key has already been added. Key: MonoTests.System.Security.Cryptography.CryptoConfigTest

Version Information

monodroid/master/036e6d9d

Log File

12-12 16:10:32.717 13007 13007 I MonoDroid: UNHANDLED EXCEPTION:
12-12 16:10:32.727 13007 13007 I MonoDroid: System.ArgumentException: An item with the same key has already been added. Key: MonoTests.System.Security.Cryptography.CryptoConfigTest
12-12 16:10:32.727 13007 13007 I MonoDroid:   at System.Collections.Generic.Dictionary`2[TKey,TValue].TryInsert (TKey key, TValue value, System.Collections.Generic.InsertionBehavior behavior) [0x000c1] in <efaafba8c16043b198532214e63a585b>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at System.Collections.Generic.Dictionary`2[TKey,TValue].Add (TKey key, TValue value) [0x00000] in <efaafba8c16043b198532214e63a585b>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at Xamarin.Android.NUnitLite.AndroidRunner.AddTest (NUnit.Framework.Internal.TestSuite suite) [0x00015] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at Xamarin.Android.NUnitLite.AndroidRunner.AddTest (NUnit.Framework.Internal.TestSuite suite) [0x00038] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at Xamarin.Android.NUnitLite.AndroidRunner.AddTest (System.Reflection.Assembly assembly) [0x00037] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at Xamarin.Android.NUnitLite.TestSuiteActivity.AddTest (System.Reflection.Assembly assembly) [0x00005] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at Xamarin.Android.BclTests.MainActivity.OnCreate (Android.OS.Bundle bundle) [0x00019] in <731bde1ea7674d189c9bb47b53a31706>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at Android.App.Activity.n_OnCreate_Landroid_os_Bundle_ (System.IntPtr jnienv, System.IntPtr native__this, System.IntPtr native_savedInstanceState) [0x0000f] in <6a1b6a0768bc4e74b762836246a0d4b5>:0 
12-12 16:10:32.727 13007 13007 I MonoDroid:   at (wrapper dynamic-method) System.Object.a028ea48-bb62-4d53-88b2-bb4efad88e7b(intptr,intptr,intptr)
12-12 16:10:32.731 13007 13007 W zygote64: JNI RegisterNativeMethods: attempt to register 0 native methods for android.runtime.JavaProxyThrowable
12-12 16:10:32.732 13007 13007 D AndroidRuntime: Shutting down VM
12-12 16:10:32.733 13007 13007 E AndroidRuntime: FATAL EXCEPTION: main
12-12 16:10:32.733 13007 13007 E AndroidRuntime: Process: Xamarin.Android.Bcl_Tests, PID: 13007
12-12 16:10:32.733 13007 13007 E AndroidRuntime: android.runtime.JavaProxyThrowable: System.ArgumentException: An item with the same key has already been added. Key: MonoTests.System.Security.Cryptography.CryptoConfigTest
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at System.Collections.Generic.Dictionary`2[TKey,TValue].TryInsert (TKey key, TValue value, System.Collections.Generic.InsertionBehavior behavior) [0x000c1] in <efaafba8c16043b198532214e63a585b>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at System.Collections.Generic.Dictionary`2[TKey,TValue].Add (TKey key, TValue value) [0x00000] in <efaafba8c16043b198532214e63a585b>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at Xamarin.Android.NUnitLite.AndroidRunner.AddTest (NUnit.Framework.Internal.TestSuite suite) [0x00015] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at Xamarin.Android.NUnitLite.AndroidRunner.AddTest (NUnit.Framework.Internal.TestSuite suite) [0x00038] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at Xamarin.Android.NUnitLite.AndroidRunner.AddTest (System.Reflection.Assembly assembly) [0x00037] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at Xamarin.Android.NUnitLite.TestSuiteActivity.AddTest (System.Reflection.Assembly assembly) [0x00005] in <6dcf6e10f5614546aabd56bb3afb32e5>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at Xamarin.Android.BclTests.MainActivity.OnCreate (Android.OS.Bundle bundle) [0x00019] in <731bde1ea7674d189c9bb47b53a31706>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at Android.App.Activity.n_OnCreate_Landroid_os_Bundle_ (System.IntPtr jnienv, System.IntPtr native__this, System.IntPtr native_savedInstanceState) [0x0000f] in <6a1b6a0768bc4e74b762836246a0d4b5>:0 
12-12 16:10:32.733 13007 13007 E AndroidRuntime:   at (wrapper dynamic-method) System.Object.a028ea48-bb62-4d53-88b2-bb4efad88e7b(intptr,intptr,intptr)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at xamarin.android.bcltests.MainActivity.n_onCreate(Native Method)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at xamarin.android.bcltests.MainActivity.onCreate(MainActivity.java:29)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.Activity.performCreate(Activity.java:6999)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.Activity.performCreate(Activity.java:6990)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1214)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2731)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2856)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.ActivityThread.-wrap11(Unknown Source:0)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1589)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.os.Handler.dispatchMessage(Handler.java:106)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.os.Looper.loop(Looper.java:164)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at android.app.ActivityThread.main(ActivityThread.java:6494)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at java.lang.reflect.Method.invoke(Native Method)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)
12-12 16:10:32.733 13007 13007 E AndroidRuntime: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)
12-12 16:10:32.737  1140  5035 W ActivityManager:   Force finishing activity Xamarin.Android.Bcl_Tests/xamarin.android.bcltests.MainActivity
12-12 16:10:32.740 13007 13007 I Process : Sending signal. PID: 13007 SIG: 9
12-12 16:10:32.758  1140  1668 I ActivityManager: Process Xamarin.Android.Bcl_Tests (pid 13007) has died: cch  CEM 
12-12 16:10:32.758  1140  1173 W zygote64: kill(-13007, 9) failed: No such process
12-12 16:10:32.759  1140  1173 I zygote64: Successfully killed process cgroup uid 10152 pid 13007 in 0ms

Referenced dll's get deleted

Steps to Reproduce

  1. Create 2 projects, a droid project and a pcl project.
  2. Add references to the pcl project that are in the output folder.
  3. Set both projects to output in the same output folder.
  4. Build the pcl project and then build the droid project.
  5. Referenced dlls in the pcl project are deleted after building droid the second time.

Expected Behavior

Dlls should not be deleted even if they are in the same output folder.

Actual Behavior

Some dlls are deleted when building droid for the second time.

Version Information

Seem to be Xamarin.Droid 8.1.0.25
In earlier versions this wasnt a problem

Log File

Area: Building

Java.Lang.ClassNotFoundException: Didn't find class "android.app.PictureInPictureParams$Builder"

Steps to Reproduce

Downloaded PictureInPicture Sample from https://developer.xamarin.com/samples/monodroid/android-o/PictureInPicture/

  1. Opened the Project on VS for MAC and Restored all Packages
  2. Tried to run the project and got a runtime exception: System.NotSupportedException
    image
  3. Under System.NotSupportedException, there was Java.Lang.ClassNotFoundException

screen shot 2017-12-19 at 2 00 10 am

PictureInPicture.zip

Expected Behavior

The App Should work for PictureInPicture feature

Actual Behavior

Throws a Runtime Exception

Version Information

=== Visual Studio Community 2017 for Mac ===

Version 7.3.2 (build 12)
Installation UUID: aed07d58-dc28-46be-99a7-82fcbd01df4b
Runtime:
Mono 5.4.1.7 (2017-06/e66d9abbb27) (64-bit)
GTK+ 2.24.23 (Raleigh theme)

Package version: 504010007

=== NuGet ===

Version: 4.3.1.4445

=== .NET Core ===

Runtime: /usr/local/share/dotnet/dotnet
Runtime Version: 2.0.0
SDK: /usr/local/share/dotnet/sdk/2.0.0/Sdks
SDK Version: 2.0.0
MSBuild SDKs: /Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/msbuild/15.0/bin/Sdks

=== Xamarin.Profiler ===

Version: 1.6.0
Location: /Applications/Xamarin Profiler.app/Contents/MacOS/Xamarin Profiler

=== Apple Developer Tools ===

Xcode 9.1 (13532)
Build 9B55

=== Xamarin.iOS ===

Version: 11.6.1.2 (Visual Studio Community)
Hash: 6857dfcc
Branch: xcode9.2
Build date: 2017-12-04 21:20:41-0500

=== Xamarin.Android ===

Version: 8.1.0.25 (Visual Studio Community)
Android SDK: /Users/mumashankar/Library/Android/sdk
Supported Android versions:
4.4 (API level 19)
5.1 (API level 22)
6.0 (API level 23)
7.1 (API level 25)
8.0 (API level 26)

SDK Tools Version: 26.1.1
SDK Platform Tools Version: 26.0.2
SDK Build Tools Version: 26.0.2

Java SDK: /usr
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

Android Designer EPL code available here:
https://github.com/xamarin/AndroidDesigner.EPL

=== Xamarin Inspector ===

Version: 1.3.2
Hash: 461f09a
Branch: 1.3-release
Build date: Tue, 03 Oct 2017 18:26:57 GMT
Client compatibility: 1

=== Xamarin.Mac ===

Version: 4.0.0.214 (Visual Studio Community)

=== Build Information ===

Release ID: 703020012
Git revision: 7d0c9d7ad46b125cf4b7bbf9532c0531b6433ce6
Build date: 2017-12-12 14:03:18-05
Xamarin addins: 6dddaa49fbecb2695fcdcd6b712eb269e288518c
Build lane: monodevelop-lion-d15-5

=== Operating System ===

Mac OS X 10.12.6
Darwin 16.7.0 Darwin Kernel Version 16.7.0
Wed Oct 4 00:17:00 PDT 2017
root:xnu-3789.71.6~1/RELEASE_X86_64 x86_64

=== Enabled user installed addins ===

Internet of Things (IoT) development (Preview) 7.1

Log File

VSForMAC LOG.docx

android-toolchain needs to sensibly reset SDK & NDK

Context: #1112 (comment)

The Android SDK & NDK install is "forward only" (see b28856f).

Steps to Reproduce

  1. Create a new branch, and on that branch bump the Android NDK dependencies to something "newer".
  2. Build the branch from (1), thus installing the "newer" NDK into $HOME/android-toolchain/ndk
  3. Checkout a different branch -- one that uses an "older" NDK -- and rebuild.

Expected Behavior

The Android NDK should be re-extracted, so that $HOME/android-toolchain/ndk matches what the current branch requires.

Actual Behavior

The Android NDK is not touched at all.

No longer able to access `Android.Widget.ChoiceMode` when compiling against v2.3 in d15-6

It appears that the ChoiceMode property of Android.Widget.AbsListView https://developer.android.com/reference/android/widget/AbsListView.html#setChoiceMode(int) is no longer accessible when comping against v2.3. This appears to be a regression introduced in d15-6.

Steps to Reproduce

  1. Open the AccessoryViews monodroid sample - https://github.com/xamarin/monodroid-samples/tree/master/AccessoryViews
  2. Ensure you have SDK Platform Version 10 (2.3) installed, and attempt to build the project.

Expected Behavior

The project builds without error when targeting v2.3. This succeeds using d15-5 builds:
https://gist.githubusercontent.com/pjcollins/22ca1e9064404355a0d88e72bb25d929/raw/3d07327d36390d523ac74e1b7d32af4fc63c73f5/15.5%2520Output

Actual Behavior

The project fails to build against monodroid/d15-6:
http://xqa.blob.core.windows.net/gist/report-c995421b88984113bef0729590cdf1cf.txt

(CoreCompile target) -> 
  HomeScreen.cs(31,16): error CS1061: 'ListView' does not contain a definition for 'ChoiceMode' and no extension method 'ChoiceMode' accepting a first argument of type 'ListView' could be found (are you missing a using directive or an assembly reference?) [/Users/xamarinqa/myagent/_work/r1/a/monodroid-samples/AccessoryViews/AccessoryViews.csproj]
  HomeScreen.cs(31,29): error CS0234: The type or namespace name 'ChoiceMode' does not exist in the namespace 'Android.Widget' (are you missing an assembly reference?) [/Users/xamarinqa/myagent/_work/r1/a/monodroid-samples/AccessoryViews/AccessoryViews.csproj]

Interestingly enough, if I update the Target Framework version of my project to v4.0.3 or higher, the type can be resolved and the project builds successfully.

Version Information

https://gist.github.com/pjcollins/03e44af172a79acd68ccf2d25dd129ae

`api-compatibility` needs to check `[Register]` attribute values.

Related: PR #930
Related: https://bugzilla.xamarin.com/show_bug.cgi?id=60069

We need an API compatibility check that not only ensure that we don't break API -- which tests/api-compatibility does -- but also that we don't break semantics. The problem with Bug #60069 was that the semantics of Build.Serial changed from a Java field read to a Java method invocation, and since the Build.getSerial() method that was invoked only existed in API-26, the result was that the formerly working expression Build.Serial now threw everywhere.

We need to check for and prevent this in the future.

My current idea is that we improve mono-api-html to check the values of custom attributes, and warn if they change. For example, with Build.Serial the [Register] attribute contents changed:

		// API < 26, field use:
		[Register ("SERIAL", ApiSince = 9)]
		public static string Serial {
			get {
				const string __id = "SERIAL.Ljava/lang/String;";

				var __v = _members.StaticFields.GetObjectValue (__id);
				return JNIEnv.GetString (__v.Handle, JniHandleOwnership.TransferLocalRef);
			}
		}

		// API >= 26, method invocation:
		[Register ("getSerial", "()Ljava/lang/String;", "", ApiSince = 26)]
		public static string Serial {
			get {
				const string __id = "getSerial.()Ljava/lang/String;";

				try {
					var __rm = _members.StaticMethods.InvokeObjectMethod (__id, null);
					return JNIEnv.GetString (__rm.Handle, JniHandleOwnership.TransferLocalRef);
				} finally {
				}
			}
		}

New APT0000 msbuild errors are being reported from aapt output parsing

This was previously discussed, however there still appear to be some corner cases that weren't addressed by the latest relevant change in commit 2135856e.

Steps to Reproduce

  1. Build tests/CodeGen-Binding/Xamarin.Android.JcwGen-Tests/Xamarin.Android.JcwGen-Tests.csproj with msbuild.

Expected Behavior

Build should succeed without incorrectly reporting aapt warnings as msbuild errors.

Actual Behavior

Build fails with the following:

Executing package -f -m -M /Users/xamarinqa/agent/_work/_temp/r0o3reuu.zcl/manifest/AndroidManifest.xml -J /Users/xamarinqa/agent/_work/_temp/r0o3reuu.zcl --custom-package xamarin.android.jcwgen_tests -F /Users/xamarinqa/agent/_work/_temp/r0o3reuu.zcl/resources.apk.bk -S obj/Release/res/ -S /Users/xamarinqa/agent/_work/r5/a/xamarin-android/tests/CodeGen-Binding/Xamarin.Android.JcwGen-Tests/obj/Release/lp/3/jl/res -S /Users/xamarinqa/agent/_work/r5/a/xamarin-android/tests/CodeGen-Binding/Xamarin.Android.JcwGen-Tests/obj/Release/lp/5/jl/res -S /Users/xamarinqa/agent/_work/r5/a/xamarin-android/tests/CodeGen-Binding/Xamarin.Android.JcwGen-Tests/obj/Release/resourcecache/6ECC701C56CAE8576696DE7B3605BB4A/res -j obj/Release/lp/4/jl/__reference__empty-1.jar -j obj/Release/lp/4/jl/__reference__empty-2.jar -j obj/Release/lp/4/jl/xamarin-test.jar -I /Users/xamarinqa/Library/Developer/Xamarin/android-sdk-macosx/platforms/android-10/android.jar --auto-add-overlay --max-res-version 10 (TaskId:1230)
aapt : error APT0000: max res 10, skipping values-sw720dp-land-v13 "max res 10, skipping values-sw720dp-land-v13". [/Users/xamarinqa/agent/_work/r5/a/xamarin-android/tests/CodeGen-Binding/Xamarin.Android.JcwGen-Tests/Xamarin.Android.JcwGen-Tests.csproj]
Done executing task "Aapt" -- FAILED. (TaskId:1230)

Version Information

XA 8.2.0.0.

Log File

http://xqa.blob.core.windows.net/gist/log-f69375a71be042929c3d54c25ecfd34b.txt

[Newtonsoft.Json] Slow deserialization on first use on Android only

Copied from JamesNK/Newtonsoft.Json#1326 @KyleTraynor


Using JSON.NET with Xamarin with .net standard 1.6, the first use of deserialization is very slow (10+ seconds), but subsequent deserialization of the exact same json is very fast, on Android only. On iOS it is always fast.

There are several reports by different users with the same issue, some reporting reverting to json.net 8.0.3 fixing the problem, some saying it does not.

See some users here:
https://stackoverflow.com/questions/42285254/json-net-slow-on-first-use-on-xamarin-android
https://forums.xamarin.com/discussion/95688/very-slow-in-xamarin-forms-android-app-while-doing-deserializeobject
https://forums.xamarin.com/discussion/comment/272208/#Comment_272208

I have this problem on 10.02 and 9.0.1. I am unable to downgrade to 8.0.3 because it is not .net standard compatible.

[Android 4.0.4|FireOS 8.5.1] App doesn't start after being updated from AOT to non-AOT version

Steps to Reproduce

Android version specific. Reproed on Amazon Kindle Fire HD 8.9 (Android 4.0.4| FireOS 8.5.1)
Didn't reproduce on newer devices.

  1. Build and install AOTed app (attached Artifacts/AOT.LLVM.apk)
  2. Update app (for example via adb install -r) to non-AOTed app (attached Artifacts/JIT.apk)
    AOT.zip

Expected Behavior

App should work

Actual Behavior

Crash

Version Information

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

Installed Version: Professional

Visual Basic 2017 00369-60000-00001-AA157
Microsoft Visual Basic 2017

Visual C# 2017 00369-60000-00001-AA157
Microsoft Visual C# 2017

Visual F# 4.1 00369-60000-00001-AA157
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.

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

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

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 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 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.

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

SQL Server Data Tools 15.1.61710.120
Microsoft SQL Server Data Tools

TypeScript Tools 15.5.11025.1
TypeScript Tools for Microsoft Visual Studio

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 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

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.
-->

Log File

log.txt

SIGSEGV crash while running/debugging

Steps to Reproduce

I can share a repro project but would need to do some cleanup. I'm attaching the stack trace here. I can share a ZIP of the current project internally at MSFT (this is a personal project so not in a MSFT repo).

The crash happens in a few different ways but with the same result. I have a class in a form and if that class is accessed in an event from a UI element (in this case a Picker) or if I inspect that object in the debugger, I get this SIGSEGV crash.

Expected Behavior

Normal debugging and execution.. I'm not doing anything strange here so it's hard to describe this in more detail.

Actual Behavior

Version Information

Microsoft Visual Studio Enterprise 2017
Version 15.5.2
VisualStudio.15.Release/15.5.2+27130.2010
Microsoft .NET Framework
Version 4.7.03036

Installed Version: Enterprise

Visual Basic 2017 00369-60000-00001-AA940
Microsoft Visual Basic 2017

Visual C# 2017 00369-60000-00001-AA940
Microsoft Visual C# 2017

Visual F# 4.1 00369-60000-00001-AA940
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.

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 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/.

Redgate ReadyRoll 1.14.17.5347
Extend DevOps processes to your SQL Server databases and safely automate database deployments.

Visit https://www.red-gate.com/readyroll for more information.

Copyright (C) 2011 Red Gate Software Ltd. All rights reserved.

This software contains components from Component Owl.
SQL Server is a registered trademark of Microsoft Corporation.
Visual Studio is a registered trademark of Microsoft Corporation.

ReadyRoll contains code from the following open source software:

NuGet https://www.nuget.org/
SQL LocalDB Wrapper https://github.com/martincostello/sqllocaldb
Autofac https://autofac.org/
Json.NET https://json.net/
MahApps.Metro http://mahapps.com/
SemVer https://github.com/maxhauser/semver
Log4Net http://logging.apache.org/log4net/
Extended WPF Toolkit https://wpftoolkit.codeplex.com/
Code InfoBox VSX http://www.codeproject.com/Articles/55196/Code-InfoBox-Visual-Studio-Extension-VSX
OctoPack https://github.com/OctopusDeploy/OctoPack
SQLite https://sqlite.org/

This product contains icons from http://www.visualpharm.com distributed under a free backlink license.

For license details or other notices relating to the above software, please see NOTICE.TXT and EULA.rtf in the ReadyRoll application folder.

Redgate SQL Prompt 8.2.5.2924
Write, format, and refactor SQL effortlessly

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 Studio Code Debug Adapter Host Package 1.0
Interop layer for hosting Visual Studio Code debug adapters in Visual Studio

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

WebPack Task Runner 1.5.91
Adds support for WebPack in Visual Studio 2015's Task Runner Explorer.

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.

Log File

Android application is debugging.
01-04 02:17:32.752 I/art     ( 8806): Not late-enabling -Xcheck:jni (already on)
01-04 02:17:32.754 W/art     ( 8806): Unexpected CPU variant for X86 using defaults: x86
01-04 02:17:32.785 W/monodroid( 8806): Creating public update directory: `/data/user/0/com.biznizzle.TimingApp/files/.__override__`
01-04 02:17:32.785 W/monodroid( 8806): Using override path: /data/user/0/com.biznizzle.TimingApp/files/.__override__
01-04 02:17:32.785 W/monodroid( 8806): Using override path: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__
01-04 02:17:32.785 W/monodroid( 8806): Trying to load sgen from: /data/user/0/com.biznizzle.TimingApp/files/.__override__/libmonosgen-2.0.so
01-04 02:17:32.785 W/monodroid( 8806): Trying to load sgen from: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/libmonosgen-2.0.so
01-04 02:17:32.785 W/monodroid( 8806): Trying to load sgen from: /storage/emulated/0/../legacy/Android/data/com.biznizzle.TimingApp/files/.__override__/libmonosgen-2.0.so
01-04 02:17:32.785 W/monodroid( 8806): Trying to load sgen from: /data/app/com.biznizzle.TimingApp-1/lib/x86/libmonosgen-2.0.so
01-04 02:17:32.785 W/monodroid( 8806): Trying to load sgen from: /data/user/0/com.biznizzle.TimingApp/files/.__override__/links/libmonosgen-2.0.so
01-04 02:17:32.786 W/monodroid-debug( 8806): Trying to initialize the debugger with options: --debugger-agent=transport=dt_socket,loglevel=0,address=127.0.0.1:29222,server=y,embedding=1
01-04 02:17:32.838 W/monodroid-debug( 8806): Accepted stdout connection: 33
01-04 02:17:33.610 D/Mono    ( 8806): Image addref mscorlib[0xa904ada0] -> mscorlib.dll[0x9ddf7a00]: 2
01-04 02:17:33.610 D/Mono    ( 8806): Prepared to set up assembly 'mscorlib' (mscorlib.dll)
01-04 02:17:33.611 D/Mono    ( 8806): AOT: image 'mscorlib.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-mscorlib.dll.so" not found
01-04 02:17:33.611 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/mscorlib.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-mscorlib.dll.so" not found
01-04 02:17:33.611 D/Mono    ( 8806): Config attempting to parse: 'mscorlib.dll.config'.
01-04 02:17:33.611 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/mscorlib/mscorlib.config'.
01-04 02:17:33.629 D/Mono    ( 8806): Assembly mscorlib[0xa904ada0] added to domain RootDomain, ref_count=1
01-04 02:17:33.722 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll'.
01-04 02:17:33.722 D/Mono    ( 8806): Image addref TimingApp.Android[0xa904af20] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll[0x9ddf8400]: 2
01-04 02:17:33.722 D/Mono    ( 8806): Prepared to set up assembly 'TimingApp.Android' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll)
01-04 02:17:33.722 D/Mono    ( 8806): Assembly TimingApp.Android[0xa904af20] added to domain RootDomain, ref_count=1
01-04 02:17:33.723 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-TimingApp.Android.dll.so" not found
01-04 02:17:33.723 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/TimingApp.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-TimingApp.Android.dll.so" not found
01-04 02:17:33.724 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll'.
01-04 02:17:33.724 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll.config'.
01-04 02:17:33.724 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/TimingApp.Android/TimingApp.Android.config'.
01-04 02:17:33.725 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll'.
01-04 02:17:33.726 D/Mono    ( 8806): Image addref FormsViewGroup[0xa904b160] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll[0x9ddf9d00]: 2
01-04 02:17:33.726 D/Mono    ( 8806): Prepared to set up assembly 'FormsViewGroup' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll)
01-04 02:17:33.726 D/Mono    ( 8806): Assembly FormsViewGroup[0xa904b160] added to domain RootDomain, ref_count=1
01-04 02:17:33.726 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-FormsViewGroup.dll.so" not found
01-04 02:17:33.727 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/FormsViewGroup.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-FormsViewGroup.dll.so" not found
01-04 02:17:33.727 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll'.
01-04 02:17:33.727 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll.config'.
01-04 02:17:33.728 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/FormsViewGroup/FormsViewGroup.config'.
01-04 02:17:33.728 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll'.
01-04 02:17:33.729 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Analytics.Android.Bindings[0xa904aec0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll[0x9ddfa200]: 2
01-04 02:17:33.729 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Analytics.Android.Bindings' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll)
01-04 02:17:33.729 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Analytics.Android.Bindings[0xa904aec0] added to domain RootDomain, ref_count=1
01-04 02:17:33.730 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Analytics.Android.Bindings.dll.so" not found
01-04 02:17:33.730 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Analytics.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Analytics.Android.Bindings.dll.so" not found
01-04 02:17:33.731 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll'.
01-04 02:17:33.731 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll.config'.
01-04 02:17:33.731 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Analytics.Android.Bindings/Microsoft.AppCenter.Analytics.Android.Bindings.config'.
01-04 02:17:33.731 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll'.
01-04 02:17:33.732 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Analytics[0xa904ae00] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll[0x9ddfa700]: 2
01-04 02:17:33.732 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Analytics' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll)
01-04 02:17:33.732 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Analytics[0xa904ae00] added to domain RootDomain, ref_count=1
01-04 02:17:33.733 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Analytics.dll.so" not found
01-04 02:17:33.733 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Analytics.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Analytics.dll.so" not found
01-04 02:17:33.733 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll'.
01-04 02:17:33.733 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll.config'.
01-04 02:17:33.733 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.config'.
01-04 02:17:33.734 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll'.
01-04 02:17:33.735 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Android.Bindings[0xa904ae60] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll[0x9ddfac00]: 2
01-04 02:17:33.735 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Android.Bindings' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll)
01-04 02:17:33.735 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Android.Bindings[0xa904ae60] added to domain RootDomain, ref_count=1
01-04 02:17:33.735 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Android.Bindings.dll.so" not found
01-04 02:17:33.735 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Android.Bindings.dll.so" not found
01-04 02:17:33.736 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll'.
01-04 02:17:33.736 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll.config'.
01-04 02:17:33.736 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Android.Bindings/Microsoft.AppCenter.Android.Bindings.config'.
01-04 02:17:33.737 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll'.
01-04 02:17:33.738 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Crashes.Android.Bindings[0xa904b1c0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll[0x9ddfb100]: 2
01-04 02:17:33.738 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Crashes.Android.Bindings' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll)
01-04 02:17:33.738 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Crashes.Android.Bindings[0xa904b1c0] added to domain RootDomain, ref_count=1
01-04 02:17:33.738 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Crashes.Android.Bindings.dll.so" not found
01-04 02:17:33.738 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Crashes.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Crashes.Android.Bindings.dll.so" not found
01-04 02:17:33.739 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll'.
01-04 02:17:33.739 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll.config'.
01-04 02:17:33.739 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Crashes.Android.Bindings/Microsoft.AppCenter.Crashes.Android.Bindings.config'.
01-04 02:17:33.740 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll'.
01-04 02:17:33.741 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Crashes[0xa904b220] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll[0x9ddfb600]: 2
01-04 02:17:33.741 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Crashes' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll)
01-04 02:17:33.741 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Crashes[0xa904b220] added to domain RootDomain, ref_count=1
01-04 02:17:33.741 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Crashes.dll.so" not found
01-04 02:17:33.742 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Crashes.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Crashes.dll.so" not found
01-04 02:17:33.742 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll'.
01-04 02:17:33.742 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll.config'.
01-04 02:17:33.743 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.config'.
01-04 02:17:33.743 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll'.
01-04 02:17:33.744 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Distribute.Android.Bindings[0xa904b280] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll[0x9ddfbb00]: 2
01-04 02:17:33.744 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Distribute.Android.Bindings' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll)
01-04 02:17:33.744 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Distribute.Android.Bindings[0xa904b280] added to domain RootDomain, ref_count=1
01-04 02:17:33.745 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Distribute.Android.Bindings.dll.so" not found
01-04 02:17:33.745 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Distribute.Android.Bindings.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Distribute.Android.Bindings.dll.so" not found
01-04 02:17:33.746 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll'.
01-04 02:17:33.746 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll.config'.
01-04 02:17:33.746 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Distribute.Android.Bindings/Microsoft.AppCenter.Distribute.Android.Bindings.config'.
01-04 02:17:33.747 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll'.
01-04 02:17:33.748 D/Mono    ( 8806): Image addref Microsoft.AppCenter.Distribute[0xa904b2e0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll[0x9ddd8000]: 2
01-04 02:17:33.748 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter.Distribute' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll)
01-04 02:17:33.748 D/Mono    ( 8806): Assembly Microsoft.AppCenter.Distribute[0xa904b2e0] added to domain RootDomain, ref_count=1
01-04 02:17:33.748 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Distribute.dll.so" not found
01-04 02:17:33.749 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.Distribute.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.Distribute.dll.so" not found
01-04 02:17:33.749 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll'.
01-04 02:17:33.749 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll.config'.
01-04 02:17:33.749 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.config'.
01-04 02:17:33.750 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll'.
01-04 02:17:33.751 D/Mono    ( 8806): Image addref Microsoft.AppCenter[0xa904b340] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll[0x9ddd8500]: 2
01-04 02:17:33.751 D/Mono    ( 8806): Prepared to set up assembly 'Microsoft.AppCenter' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll)
01-04 02:17:33.751 D/Mono    ( 8806): Assembly Microsoft.AppCenter[0xa904b340] added to domain RootDomain, ref_count=1
01-04 02:17:33.752 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.dll.so" not found
01-04 02:17:33.752 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Microsoft.AppCenter.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Microsoft.AppCenter.dll.so" not found
01-04 02:17:33.752 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll'.
01-04 02:17:33.752 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll.config'.
01-04 02:17:33.752 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Microsoft.AppCenter/Microsoft.AppCenter.config'.
01-04 02:17:33.753 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll'.
01-04 02:17:33.754 D/Mono    ( 8806): Image addref Syncfusion.Core.XForms[0xa904b3a0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll[0x9ddd8a00]: 2
01-04 02:17:33.754 D/Mono    ( 8806): Prepared to set up assembly 'Syncfusion.Core.XForms' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll)
01-04 02:17:33.754 D/Mono    ( 8806): Assembly Syncfusion.Core.XForms[0xa904b3a0] added to domain RootDomain, ref_count=1
01-04 02:17:33.755 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.Core.XForms.dll.so" not found
01-04 02:17:33.755 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Syncfusion.Core.XForms.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.Core.XForms.dll.so" not found
01-04 02:17:33.755 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll'.
01-04 02:17:33.755 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll.config'.
01-04 02:17:33.755 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Syncfusion.Core.XForms/Syncfusion.Core.XForms.config'.
01-04 02:17:33.756 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll'.
01-04 02:17:33.757 D/Mono    ( 8806): Image addref Syncfusion.SfGauge.Android[0xa904b400] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll[0x9ddd8f00]: 2
01-04 02:17:33.757 D/Mono    ( 8806): Prepared to set up assembly 'Syncfusion.SfGauge.Android' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll)
01-04 02:17:33.757 D/Mono    ( 8806): Assembly Syncfusion.SfGauge.Android[0xa904b400] added to domain RootDomain, ref_count=1
01-04 02:17:33.758 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.SfGauge.Android.dll.so" not found
01-04 02:17:33.758 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Syncfusion.SfGauge.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.SfGauge.Android.dll.so" not found
01-04 02:17:33.758 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll'.
01-04 02:17:33.758 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll.config'.
01-04 02:17:33.759 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Syncfusion.SfGauge.Android/Syncfusion.SfGauge.Android.config'.
01-04 02:17:33.759 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll'.
01-04 02:17:33.760 D/Mono    ( 8806): Image addref Syncfusion.SfGauge.XForms.Android[0xa904b460] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll[0x9ddd9400]: 2
01-04 02:17:33.761 D/Mono    ( 8806): Prepared to set up assembly 'Syncfusion.SfGauge.XForms.Android' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll)
01-04 02:17:33.761 D/Mono    ( 8806): Assembly Syncfusion.SfGauge.XForms.Android[0xa904b460] added to domain RootDomain, ref_count=1
01-04 02:17:33.761 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.SfGauge.XForms.Android.dll.so" not found
01-04 02:17:33.761 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Syncfusion.SfGauge.XForms.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.SfGauge.XForms.Android.dll.so" not found
01-04 02:17:33.762 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll'.
01-04 02:17:33.762 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll.config'.
01-04 02:17:33.762 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Syncfusion.SfGauge.XForms.Android/Syncfusion.SfGauge.XForms.Android.config'.
01-04 02:17:33.762 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll'.
01-04 02:17:33.763 D/Mono    ( 8806): Image addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll[0x9ddd9900]: 2
01-04 02:17:33.763 D/Mono    ( 8806): Prepared to set up assembly 'Syncfusion.SfGauge.XForms' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll)
01-04 02:17:33.763 D/Mono    ( 8806): Assembly Syncfusion.SfGauge.XForms[0xa904b4c0] added to domain RootDomain, ref_count=1
01-04 02:17:33.764 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.SfGauge.XForms.dll.so" not found
01-04 02:17:33.764 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Syncfusion.SfGauge.XForms.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Syncfusion.SfGauge.XForms.dll.so" not found
01-04 02:17:33.764 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll'.
01-04 02:17:33.764 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll.config'.
01-04 02:17:33.765 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Syncfusion.SfGauge.XForms/Syncfusion.SfGauge.XForms.config'.
01-04 02:17:33.765 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll'.
01-04 02:17:33.766 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Animated.Vector.Drawable[0xa904b520] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll[0x9ddd9e00]: 2
01-04 02:17:33.766 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Animated.Vector.Drawable' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll)
01-04 02:17:33.766 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Animated.Vector.Drawable[0xa904b520] added to domain RootDomain, ref_count=1
01-04 02:17:33.767 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Animated.Vector.Drawable.dll.so" not found
01-04 02:17:33.767 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Animated.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Animated.Vector.Drawable.dll.so" not found
01-04 02:17:33.768 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll'.
01-04 02:17:33.768 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll.config'.
01-04 02:17:33.768 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Animated.Vector.Drawable/Xamarin.Android.Support.Animated.Vector.Drawable.config'.
01-04 02:17:33.769 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll'.
01-04 02:17:33.770 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Annotations[0xa904b580] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll[0x9ddda300]: 2
01-04 02:17:33.770 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Annotations' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll)
01-04 02:17:33.770 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Annotations[0xa904b580] added to domain RootDomain, ref_count=1
01-04 02:17:33.770 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Annotations.dll.so" not found
01-04 02:17:33.771 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Annotations.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Annotations.dll.so" not foundLoaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll

01-04 02:17:33.771 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll'.
01-04 02:17:33.771 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll.config'.
01-04 02:17:33.772 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Annotations/Xamarin.Android.Support.Annotations.config'.
01-04 02:17:33.772 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll'.
01-04 02:17:33.774 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Compat[0xa904b5e0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll[0x9ddda800]: 2
01-04 02:17:33.775 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Compat' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll)
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll [External]01-04 02:17:33.775 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Compat[0xa904b5e0] added to domain RootDomain, ref_count=1

01-04 02:17:33.776 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Compat.dll.so" not found
01-04 02:17:33.776 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Compat.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Compat.dll.so" not found
01-04 02:17:33.777 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll'.
01-04 02:17:33.777 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll.config'.
01-04 02:17:33.778 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Compat/Xamarin.Android.Support.Compat.config'.Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll [External]

01-04 02:17:33.778 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll'.
01-04 02:17:33.780 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Core.UI[0xa904b640] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll[0x9dddad00]: 2
01-04 02:17:33.780 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Core.UI' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll)
01-04 02:17:33.780 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Core.UI[0xa904b640] added to domain RootDomain, ref_count=1
01-04 02:17:33.780 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Core.UI.dll.so" not found
01-04 02:17:33.781 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Core.UI.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Core.UI.dll.so" not found
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll [External]01-04 02:17:33.782 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll'.

01-04 02:17:33.782 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll.config'.
01-04 02:17:33.782 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Core.UI/Xamarin.Android.Support.Core.UI.config'.
01-04 02:17:33.782 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll'.
01-04 02:17:33.783 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Core.Utils[0xa904b6a0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll[0x9dddb200]: 2
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll [External]01-04 02:17:33.783 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Core.Utils' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll)

01-04 02:17:33.784 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Core.Utils[0xa904b6a0] added to domain RootDomain, ref_count=1
01-04 02:17:33.784 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Core.Utils.dll.so" not found
01-04 02:17:33.784 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Core.Utils.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Core.Utils.dll.so" not found
01-04 02:17:33.785 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll'.
01-04 02:17:33.785 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll.config'.
01-04 02:17:33.786 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Core.Utils/Xamarin.Android.Support.Core.Utils.config'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll [External]01-04 02:17:33.786 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll'.

01-04 02:17:33.788 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Design[0xa904b700] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll[0x9dddb700]: 2
01-04 02:17:33.788 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Design' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll)
01-04 02:17:33.788 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Design[0xa904b700] added to domain RootDomain, ref_count=1
01-04 02:17:33.788 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Design.dll.so" not foundLoaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll [External]

01-04 02:17:33.789 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Design.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Design.dll.so" not found
01-04 02:17:33.790 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll'.
01-04 02:17:33.790 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll.config'.
01-04 02:17:33.790 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Design/Xamarin.Android.Support.Design.config'.
01-04 02:17:33.790 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll'.Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll [External]

01-04 02:17:33.791 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Fragment[0xa904b760] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll[0x9dddbc00]: 2
01-04 02:17:33.791 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Fragment' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll)
01-04 02:17:33.791 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Fragment[0xa904b760] added to domain RootDomain, ref_count=1
01-04 02:17:33.792 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Fragment.dll.so" not found
01-04 02:17:33.792 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Fragment.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Fragment.dll.so" not found
01-04 02:17:33.793 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll'.Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll [External]

01-04 02:17:33.793 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll.config'.
01-04 02:17:33.793 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Fragment/Xamarin.Android.Support.Fragment.config'.
01-04 02:17:33.794 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll'.
01-04 02:17:33.795 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Media.Compat[0xa904b7c0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll[0x9dddc100]: 2
01-04 02:17:33.795 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Media.Compat' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll)
01-04 02:17:33.795 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Media.Compat[0xa904b7c0] added to domain RootDomain, ref_count=1Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll [External]

01-04 02:17:33.797 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Media.Compat.dll.so" not found
01-04 02:17:33.797 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Media.Compat.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Media.Compat.dll.so" not found
01-04 02:17:33.798 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll'.
01-04 02:17:33.798 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll.config'.
01-04 02:17:33.798 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Media.Compat/Xamarin.Android.Support.Media.Compat.config'.
01-04 02:17:33.799 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll [External]01-04 02:17:33.800 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Transition[0xa904b820] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll[0x9dddc600]: 2

01-04 02:17:33.800 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Transition' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll)
01-04 02:17:33.800 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Transition[0xa904b820] added to domain RootDomain, ref_count=1
01-04 02:17:33.801 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Transition.dll.so" not found
01-04 02:17:33.801 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Transition.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Transition.dll.so" not found
01-04 02:17:33.802 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll'.Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll [External]

01-04 02:17:33.802 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll.config'.
01-04 02:17:33.802 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Transition/Xamarin.Android.Support.Transition.config'.
01-04 02:17:33.803 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll'.
01-04 02:17:33.804 D/Mono    ( 8806): Image addref Xamarin.Android.Support.v4[0xa904b880] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll[0x9dddcb00]: 2
01-04 02:17:33.804 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.v4' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll)
01-04 02:17:33.804 D/Mono    ( 8806): Assembly Xamarin.Android.Support.v4[0xa904b880] added to domain RootDomain, ref_count=1
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll [External]01-04 02:17:33.805 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v4.dll.so" not found

01-04 02:17:33.805 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.v4.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v4.dll.so" not found
01-04 02:17:33.806 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll'.
01-04 02:17:33.806 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll.config'.
01-04 02:17:33.806 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v4/Xamarin.Android.Support.v4.config'.
01-04 02:17:33.807 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll [External]01-04 02:17:33.809 D/Mono    ( 8806): Image addref Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll[0x9dddf000]: 2

01-04 02:17:33.809 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.v7.AppCompat' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll)Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll [External]

01-04 02:17:33.809 D/Mono    ( 8806): Assembly Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] added to domain RootDomain, ref_count=1
01-04 02:17:33.810 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.AppCompat.dll.so" not found
01-04 02:17:33.810 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.v7.AppCompat.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.AppCompat.dll.so" not found
01-04 02:17:33.812 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll'.
01-04 02:17:33.812 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll.config'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll [External]01-04 02:17:33.812 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.AppCompat/Xamarin.Android.Support.v7.AppCompat.config'.

01-04 02:17:33.812 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll'.
01-04 02:17:33.813 D/Mono    ( 8806): Image addref Xamarin.Android.Support.v7.CardView[0xa904b940] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll[0x9dddf500]: 2
01-04 02:17:33.813 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.v7.CardView' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll)
01-04 02:17:33.813 D/Mono    ( 8806): Assembly Xamarin.Android.Support.v7.CardView[0xa904b940] added to domain RootDomain, ref_count=1
01-04 02:17:33.814 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.CardView.dll.so" not found
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll [External]01-04 02:17:33.814 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.v7.CardView.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.CardView.dll.so" not found

01-04 02:17:33.815 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll'.
01-04 02:17:33.815 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll.config'.
01-04 02:17:33.815 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.CardView/Xamarin.Android.Support.v7.CardView.config'.
01-04 02:17:33.816 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll [External]01-04 02:17:33.817 D/Mono    ( 8806): Image addref Xamarin.Android.Support.v7.MediaRouter[0xa904b9a0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll[0x9dddfa00]: 2

01-04 02:17:33.817 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.v7.MediaRouter' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll)
01-04 02:17:33.817 D/Mono    ( 8806): Assembly Xamarin.Android.Support.v7.MediaRouter[0xa904b9a0] added to domain RootDomain, ref_count=1
01-04 02:17:33.818 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.MediaRouter.dll.so" not found
01-04 02:17:33.818 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.v7.MediaRouter.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.MediaRouter.dll.so" not found
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll [External]01-04 02:17:33.819 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll'.

01-04 02:17:33.819 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll.config'.
01-04 02:17:33.819 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.MediaRouter/Xamarin.Android.Support.v7.MediaRouter.config'.
01-04 02:17:33.820 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll'.
01-04 02:17:33.821 D/Mono    ( 8806): Image addref Xamarin.Android.Support.v7.Palette[0xa904ba00] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll[0x9dddff00]: 2
01-04 02:17:33.821 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.v7.Palette' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll)
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll [External]01-04 02:17:33.821 D/Mono    ( 8806): Assembly Xamarin.Android.Support.v7.Palette[0xa904ba00] added to domain RootDomain, ref_count=1

01-04 02:17:33.822 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.Palette.dll.so" not found
01-04 02:17:33.822 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.v7.Palette.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.Palette.dll.so" not found
01-04 02:17:33.823 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll'.
01-04 02:17:33.823 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll.config'.
01-04 02:17:33.823 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.Palette/Xamarin.Android.Support.v7.Palette.config'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll [External]01-04 02:17:33.824 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll'.

01-04 02:17:33.825 D/Mono    ( 8806): Image addref Xamarin.Android.Support.v7.RecyclerView[0xa904ba60] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll[0x9dde0400]: 2Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll [External]

01-04 02:17:33.825 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.v7.RecyclerView' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll)
01-04 02:17:33.825 D/Mono    ( 8806): Assembly Xamarin.Android.Support.v7.RecyclerView[0xa904ba60] added to domain RootDomain, ref_count=1
01-04 02:17:33.826 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.RecyclerView.dll.so" not foundLoaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll [External]

01-04 02:17:33.826 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.v7.RecyclerView.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.v7.RecyclerView.dll.so" not found
01-04 02:17:33.828 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll'.
01-04 02:17:33.828 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll.config'.Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll [External]

01-04 02:17:33.828 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.v7.RecyclerView/Xamarin.Android.Support.v7.RecyclerView.config'.
01-04 02:17:33.828 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll [External]01-04 02:17:33.829 D/Mono    ( 8806): Image addref Xamarin.Android.Support.Vector.Drawable[0xa904bac0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll[0x9dde0900]: 2

01-04 02:17:33.829 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Android.Support.Vector.Drawable' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll)
01-04 02:17:33.829 D/Mono    ( 8806): Assembly Xamarin.Android.Support.Vector.Drawable[0xa904bac0] added to domain RootDomain, ref_count=1
01-04 02:17:33.830 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Vector.Drawable.dll.so" not found
01-04 02:17:33.830 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Android.Support.Vector.Drawable.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Android.Support.Vector.Drawable.dll.so" not foundLoaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll [External]

01-04 02:17:33.830 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll'.
01-04 02:17:33.830 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll.config'.
01-04 02:17:33.831 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Android.Support.Vector.Drawable/Xamarin.Android.Support.Vector.Drawable.config'.
01-04 02:17:33.831 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll'.
01-04 02:17:33.833 D/Mono    ( 8806): Image addref Xamarin.Forms.Core[0xa904bb20] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll[0x9dde0e00]: 2
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll [External]01-04 02:17:33.833 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Forms.Core' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll)

01-04 02:17:33.833 D/Mono    ( 8806): Assembly Xamarin.Forms.Core[0xa904bb20] added to domain RootDomain, ref_count=1
01-04 02:17:33.834 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Core.dll.so" not found
01-04 02:17:33.834 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Forms.Core.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Core.dll.so" not foundLoaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll [External]

01-04 02:17:33.835 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll'.
01-04 02:17:33.835 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll.config'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll [External]01-04 02:17:33.835 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Core/Xamarin.Forms.Core.config'.

01-04 02:17:33.836 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll'.Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll [External]

01-04 02:17:33.837 D/Mono    ( 8806): Image addref Xamarin.Forms.Platform.Android[0xa904bb80] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll[0x9dde1300]: 2
01-04 02:17:33.837 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Forms.Platform.Android' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll)
01-04 02:17:33.837 D/Mono    ( 8806): Assembly Xamarin.Forms.Platform.Android[0xa904bb80] added to domain RootDomain, ref_count=1Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll [External]

01-04 02:17:33.838 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Platform.Android.dll.so" not found
01-04 02:17:33.838 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Forms.Platform.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Platform.Android.dll.so" not found
01-04 02:17:33.839 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll [External]01-04 02:17:33.839 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll.config'.

01-04 02:17:33.839 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Platform.Android/Xamarin.Forms.Platform.Android.config'.
01-04 02:17:33.840 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll'.
01-04 02:17:33.841 D/Mono    ( 8806): Image addref Xamarin.Forms.Platform[0xa904bbe0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll[0x9dde1800]: 2Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll [External]

01-04 02:17:33.841 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Forms.Platform' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll)
01-04 02:17:33.841 D/Mono    ( 8806): Assembly Xamarin.Forms.Platform[0xa904bbe0] added to domain RootDomain, ref_count=1
01-04 02:17:33.841 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Platform.dll.so" not found
01-04 02:17:33.842 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Forms.Platform.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Platform.dll.so" not foundLoaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll [External]

01-04 02:17:33.842 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll'.
01-04 02:17:33.842 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll.config'.
01-04 02:17:33.843 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Platform/Xamarin.Forms.Platform.config'.Loaded assembly: Mono.Android.dll [External]

01-04 02:17:33.843 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll'.
01-04 02:17:33.844 D/Mono    ( 8806): Image addref Xamarin.Forms.Xaml[0xa904bc40] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll[0x9dde1d00]: 2
01-04 02:17:33.845 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Forms.Xaml' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll)
01-04 02:17:33.845 D/Mono    ( 8806): Assembly Xamarin.Forms.Xaml[0xa904bc40] added to domain RootDomain, ref_count=1Loaded assembly: Java.Interop.dll [External]

01-04 02:17:33.845 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Xaml.dll.so" not found
01-04 02:17:33.845 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Forms.Xaml.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Forms.Xaml.dll.so" not found
01-04 02:17:33.847 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll'.Loaded assembly: System.Runtime.dll [External]

01-04 02:17:33.847 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll.config'.
01-04 02:17:33.847 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Forms.Xaml/Xamarin.Forms.Xaml.config'.
01-04 02:17:33.847 W/monodroid-gc( 8806): GREF GC Threshold: 46080Resolved pending breakpoint for 'Android.Runtime.JNIEnv.RegisterJniNatives(System.IntPtr, int, System.IntPtr, System.IntPtr, int)' to [0x0](no debug symbols).

01-04 02:17:33.849 D/Mono    ( 8806): Image addref Mono.Android[0xa904bca0] -> Mono.Android.dll[0x9dde2200]: 2
01-04 02:17:33.849 D/Mono    ( 8806): Prepared to set up assembly 'Mono.Android' (Mono.Android.dll)Loaded assembly: System.Collections.Concurrent.dll [External]

01-04 02:17:33.849 D/Mono    ( 8806): Assembly Mono.Android[0xa904bca0] added to domain RootDomain, ref_count=1
01-04 02:17:33.849 D/Mono    ( 8806): AOT: image 'Mono.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Mono.Android.dll.so" not found
01-04 02:17:33.849 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Mono.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Mono.Android.dll.so" not found
01-04 02:17:33.849 D/Mono    ( 8806): Config attempting to parse: 'Mono.Android.dll.config'.
01-04 02:17:33.849 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Mono.Android/Mono.Android.config'.
01-04 02:17:33.851 D/Mono    ( 8806): Assembly Ref addref Mono.Android[0xa904bca0] -> mscorlib[0xa904ada0]: 2
01-04 02:17:33.852 D/Mono    ( 8806): Image addref Java.Interop[0xa904bdc0] -> Java.Interop.dll[0x9dde2700]: 2
01-04 02:17:33.852 D/Mono    ( 8806): Prepared to set up assembly 'Java.Interop' (Java.Interop.dll)
01-04 02:17:33.852 D/Mono    ( 8806): Assembly Java.Interop[0xa904bdc0] added to domain RootDomain, ref_count=1
01-04 02:17:33.853 D/Mono    ( 8806): AOT: image 'Java.Interop.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Java.Interop.dll.so" not found
01-04 02:17:33.853 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Java.Interop.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Java.Interop.dll.so" not found
01-04 02:17:33.853 D/Mono    ( 8806): Config attempting to parse: 'Java.Interop.dll.config'.
01-04 02:17:33.853 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Java.Interop/Java.Interop.config'.
01-04 02:17:33.853 D/Mono    ( 8806): Assembly Ref addref Mono.Android[0xa904bca0] -> Java.Interop[0xa904bdc0]: 2
01-04 02:17:33.853 D/Mono    ( 8806): Image addref System.Runtime[0xa904bd00] -> System.Runtime.dll[0x9dde2c00]: 2
01-04 02:17:33.853 D/Mono    ( 8806): Prepared to set up assembly 'System.Runtime' (System.Runtime.dll)
01-04 02:17:33.854 D/Mono    ( 8806): Assembly System.Runtime[0xa904bd00] added to domain RootDomain, ref_count=1
01-04 02:17:33.854 D/Mono    ( 8806): AOT: image 'System.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Runtime.dll.so" not found
01-04 02:17:33.854 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Runtime.dll.so" not found
01-04 02:17:33.854 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.dll.config'.
01-04 02:17:33.854 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
01-04 02:17:33.854 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Runtime[0xa904bd00]: 2
01-04 02:17:33.854 D/Mono    ( 8806): Assembly Ref addref System.Runtime[0xa904bd00] -> mscorlib[0xa904ada0]: 3
01-04 02:17:33.854 W/monodroid( 8806): Calling into managed runtime init
01-04 02:17:34.071 D/Mono    ( 8806): Image addref System.Collections.Concurrent[0xa904be20] -> System.Collections.Concurrent.dll[0x9dde3b00]: 2
01-04 02:17:34.071 D/Mono    ( 8806): Prepared to set up assembly 'System.Collections.Concurrent' (System.Collections.Concurrent.dll)
01-04 02:17:34.071 D/Mono    ( 8806): Assembly System.Collections.Concurrent[0xa904be20] added to domain RootDomain, ref_count=1
01-04 02:17:34.072 D/Mono    ( 8806): AOT: image 'System.Collections.Concurrent.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Collections.Concurrent.dll.so" not found
01-04 02:17:34.072 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Collections.Concurrent.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Collections.Concurrent.dll.so" not found
01-04 02:17:34.072 D/Mono    ( 8806): Config attempting to parse: 'System.Collections.Concurrent.dll.config'.
01-04 02:17:34.072 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections.Concurrent/System.Collections.Concurrent.config'.
01-04 02:17:34.072 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Collections.Concurrent[0xa904be20]: 2
01-04 02:17:34.072 D/Mono    ( 8806): Assembly Ref addref System.Collections.Concurrent[0xa904be20] -> mscorlib[0xa904ada0]: 4
01-04 02:17:34.111 D/Mono    ( 8806): Image addref System.Threading[0xa904bee0] -> System.Threading.dll[0x8a85e000]: 2
01-04 02:17:34.111 D/Mono    ( 8806): Prepared to set up assembly 'System.Threading' (System.Threading.dll)
01-04 02:17:34.111 D/Mono    ( 8806): Assembly System.Threading[0xa904bee0] added to domain RootDomain, ref_count=1
01-04 02:17:34.111 D/Mono    ( 8806): AOT: image 'System.Threading.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Threading.dll.so" not found
01-04 02:17:34.111 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Threading.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Threading.dll.so" not found
01-04 02:17:34.111 D/Mono    ( 8806): Config attempting to parse: 'System.Threading.dll.config'.
01-04 02:17:34.111 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Threading/System.Threading.config'.
01-04 02:17:34.112 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Threading[0xa904bee0]: 2
01-04 02:17:34.112 D/Mono    ( 8806): Assembly Ref addref System.Threading[0xa904bee0] -> mscorlib[0xa904ada0]: 5
Loaded assembly: System.Threading.dll [External]
01-04 02:17:34.125 D/Mono    ( 8806): Image addref System.Runtime.InteropServices[0x8a85a060] -> System.Runtime.InteropServices.dll[0x8a85e500]: 2
01-04 02:17:34.126 D/Mono    ( 8806): Prepared to set up assembly 'System.Runtime.InteropServices' (System.Runtime.InteropServices.dll)
01-04 02:17:34.126 D/Mono    ( 8806): Assembly System.Runtime.InteropServices[0x8a85a060] added to domain RootDomain, ref_count=1
01-04 02:17:34.126 D/Mono    ( 8806): AOT: image 'System.Runtime.InteropServices.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Runtime.InteropServices.dll.so" not found
01-04 02:17:34.126 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Runtime.InteropServices.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Runtime.InteropServices.dll.so" not found
01-04 02:17:34.126 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.InteropServices.dll.config'.
01-04 02:17:34.126 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.InteropServices/System.Runtime.InteropServices.config'.
01-04 02:17:34.126 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Runtime.InteropServices[0x8a85a060]: 2
01-04 02:17:34.126 D/Mono    ( 8806): Assembly Ref addref System.Runtime.InteropServices[0x8a85a060] -> mscorlib[0xa904ada0]: 6
Loaded assembly: System.Runtime.InteropServices.dll [External]
01-04 02:17:34.149 D/Mono    ( 8806): DllImport attempting to load: '__Internal'.
01-04 02:17:34.150 D/Mono    ( 8806): DllImport loaded library '(null)'.
01-04 02:17:34.150 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.150 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_java_vm'.
01-04 02:17:34.150 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_java_vm'.
01-04 02:17:34.150 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_java_vm'.
01-04 02:17:34.171 D/Mono    ( 8806): DllImport attempting to load: '__Internal'.
01-04 02:17:34.171 D/Mono    ( 8806): DllImport loaded library '(null)'.
01-04 02:17:34.171 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.171 D/Mono    ( 8806): Searching for '_monodroid_gref_log_new'.
01-04 02:17:34.171 D/Mono    ( 8806): Probing '_monodroid_gref_log_new'.
01-04 02:17:34.171 D/Mono    ( 8806): Found as '_monodroid_gref_log_new'.
01-04 02:17:34.172 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.172 D/Mono    ( 8806): Searching for 'java_interop_jnienv_new_global_ref'.
01-04 02:17:34.172 D/Mono    ( 8806): Probing 'java_interop_jnienv_new_global_ref'.
01-04 02:17:34.172 D/Mono    ( 8806): Found as 'java_interop_jnienv_new_global_ref'.
01-04 02:17:34.174 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.174 D/Mono    ( 8806): Searching for '_monodroid_gref_get'.
01-04 02:17:34.174 D/Mono    ( 8806): Probing '_monodroid_gref_get'.
01-04 02:17:34.174 D/Mono    ( 8806): Found as '_monodroid_gref_get'.
01-04 02:17:34.191 D/Mono    ( 8806): Image addref System.Reflection[0x8a85a000] -> System.Reflection.dll[0x8a85f900]: 2
01-04 02:17:34.191 D/Mono    ( 8806): Prepared to set up assembly 'System.Reflection' (System.Reflection.dll)
01-04 02:17:34.192 D/Mono    ( 8806): Assembly System.Reflection[0x8a85a000] added to domain RootDomain, ref_count=1
01-04 02:17:34.192 D/Mono    ( 8806): AOT: image 'System.Reflection.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Reflection.dll.so" not foundLoaded assembly: System.Reflection.dll [External]

01-04 02:17:34.192 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Reflection.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Reflection.dll.so" not found
01-04 02:17:34.192 D/Mono    ( 8806): Config attempting to parse: 'System.Reflection.dll.config'.
01-04 02:17:34.192 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection/System.Reflection.config'.
01-04 02:17:34.192 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Reflection[0x8a85a000]: 2
01-04 02:17:34.192 D/Mono    ( 8806): Assembly Ref addref System.Reflection[0x8a85a000] -> mscorlib[0xa904ada0]: 7
01-04 02:17:34.197 D/Mono    ( 8806): Image addref System.Collections[0x8a85a0c0] -> System.Collections.dll[0x8a85f400]: 2
01-04 02:17:34.197 D/Mono    ( 8806): Prepared to set up assembly 'System.Collections' (System.Collections.dll)
01-04 02:17:34.197 D/Mono    ( 8806): Assembly System.Collections[0x8a85a0c0] added to domain RootDomain, ref_count=1
01-04 02:17:34.198 D/Mono    ( 8806): AOT: image 'System.Collections.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Collections.dll.so" not found
Loaded assembly: System.Collections.dll [External]01-04 02:17:34.198 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Collections.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Collections.dll.so" not found

01-04 02:17:34.198 D/Mono    ( 8806): Config attempting to parse: 'System.Collections.dll.config'.
01-04 02:17:34.198 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections/System.Collections.config'.
01-04 02:17:34.198 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Collections[0x8a85a0c0]: 2
01-04 02:17:34.198 D/Mono    ( 8806): Assembly Ref addref System.Collections[0x8a85a0c0] -> mscorlib[0xa904ada0]: 8
01-04 02:17:34.223 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.223 D/Mono    ( 8806): Searching for 'java_interop_jnienv_find_class'.
01-04 02:17:34.223 D/Mono    ( 8806): Probing 'java_interop_jnienv_find_class'.
01-04 02:17:34.223 D/Mono    ( 8806): Found as 'java_interop_jnienv_find_class'.
01-04 02:17:34.223 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.223 D/Mono    ( 8806): Searching for 'java_interop_jnienv_exception_clear'.
01-04 02:17:34.223 D/Mono    ( 8806): Probing 'java_interop_jnienv_exception_clear'.
01-04 02:17:34.223 D/Mono    ( 8806): Found as 'java_interop_jnienv_exception_clear'.
01-04 02:17:34.223 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.223 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_object_method_a'.
01-04 02:17:34.223 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_object_method_a'.
01-04 02:17:34.223 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_object_method_a'.
01-04 02:17:34.223 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.223 D/Mono    ( 8806): Searching for 'java_interop_jnienv_delete_local_ref'.
01-04 02:17:34.223 D/Mono    ( 8806): Probing 'java_interop_jnienv_delete_local_ref'.
01-04 02:17:34.223 D/Mono    ( 8806): Found as 'java_interop_jnienv_delete_local_ref'.
01-04 02:17:34.227 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.227 D/Mono    ( 8806): Searching for '_monodroid_lref_log_new'.
01-04 02:17:34.227 D/Mono    ( 8806): Probing '_monodroid_lref_log_new'.
01-04 02:17:34.227 D/Mono    ( 8806): Found as '_monodroid_lref_log_new'.
01-04 02:17:34.231 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.231 D/Mono    ( 8806): Searching for '_monodroid_lref_log_delete'.
01-04 02:17:34.231 D/Mono    ( 8806): Probing '_monodroid_lref_log_delete'.
01-04 02:17:34.231 D/Mono    ( 8806): Found as '_monodroid_lref_log_delete'.
01-04 02:17:34.238 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.238 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_method_id'.
01-04 02:17:34.238 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_method_id'.
01-04 02:17:34.238 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_method_id'.
01-04 02:17:34.240 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.240 D/Mono    ( 8806): Searching for '_monodroid_gref_log_delete'.
01-04 02:17:34.240 D/Mono    ( 8806): Probing '_monodroid_gref_log_delete'.
01-04 02:17:34.240 D/Mono    ( 8806): Found as '_monodroid_gref_log_delete'.
01-04 02:17:34.242 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.242 D/Mono    ( 8806): Searching for 'java_interop_jnienv_delete_global_ref'.
01-04 02:17:34.242 D/Mono    ( 8806): Probing 'java_interop_jnienv_delete_global_ref'.
01-04 02:17:34.242 D/Mono    ( 8806): Found as 'java_interop_jnienv_delete_global_ref'.
01-04 02:17:34.248 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.248 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_static_method_id'.
01-04 02:17:34.249 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_static_method_id'.
01-04 02:17:34.249 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_static_method_id'.
01-04 02:17:34.255 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.255 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_static_object_method_a'.
01-04 02:17:34.255 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_static_object_method_a'.
01-04 02:17:34.255 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_static_object_method_a'.
01-04 02:17:34.261 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.261 D/Mono    ( 8806): Searching for '_monodroid_get_identity_hash_code'.
01-04 02:17:34.261 D/Mono    ( 8806): Probing '_monodroid_get_identity_hash_code'.
01-04 02:17:34.261 D/Mono    ( 8806): Found as '_monodroid_get_identity_hash_code'.
01-04 02:17:34.278 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.278 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_object_class'.
01-04 02:17:34.278 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_object_class'.
01-04 02:17:34.278 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_object_class'.
01-04 02:17:34.279 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.280 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_object_method'.
01-04 02:17:34.280 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_object_method'.
01-04 02:17:34.280 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_object_method'.
01-04 02:17:34.283 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.283 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_string_length'.
01-04 02:17:34.283 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_string_length'.
01-04 02:17:34.283 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_string_length'.
01-04 02:17:34.284 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.284 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_string_chars'.
01-04 02:17:34.284 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_string_chars'.
01-04 02:17:34.284 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_string_chars'.
01-04 02:17:34.287 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.287 D/Mono    ( 8806): Searching for 'java_interop_jnienv_release_string_chars'.
01-04 02:17:34.287 D/Mono    ( 8806): Probing 'java_interop_jnienv_release_string_chars'.
01-04 02:17:34.287 D/Mono    ( 8806): Found as 'java_interop_jnienv_release_string_chars'.
01-04 02:17:34.291 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.291 D/Mono    ( 8806): Searching for 'monodroid_typemap_java_to_managed'.
01-04 02:17:34.291 D/Mono    ( 8806): Probing 'monodroid_typemap_java_to_managed'.
01-04 02:17:34.292 D/Mono    ( 8806): Found as 'monodroid_typemap_java_to_managed'.
01-04 02:17:34.324 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.324 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_superclass'.
01-04 02:17:34.324 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_superclass'.
01-04 02:17:34.324 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_superclass'.
01-04 02:17:34.369 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.369 D/Mono    ( 8806): Searching for 'java_interop_jnienv_is_instance_of'.
01-04 02:17:34.369 D/Mono    ( 8806): Probing 'java_interop_jnienv_is_instance_of'.
01-04 02:17:34.369 D/Mono    ( 8806): Found as 'java_interop_jnienv_is_instance_of'.
01-04 02:17:34.371 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.371 D/Mono    ( 8806): Searching for '_monodroid_gref_log'.
01-04 02:17:34.371 D/Mono    ( 8806): Probing '_monodroid_gref_log'.
01-04 02:17:34.371 D/Mono    ( 8806): Found as '_monodroid_gref_log'.
01-04 02:17:34.405 D/Mono    ( 8806): Image addref System.Linq[0x8a85a540] -> System.Linq.dll[0x8a85fe00]: 2
01-04 02:17:34.405 D/Mono    ( 8806): Prepared to set up assembly 'System.Linq' (System.Linq.dll)
01-04 02:17:34.405 D/Mono    ( 8806): Assembly System.Linq[0x8a85a540] added to domain RootDomain, ref_count=1
01-04 02:17:34.406 D/Mono    ( 8806): AOT: image 'System.Linq.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Linq.dll.so" not found
01-04 02:17:34.406 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Linq.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Linq.dll.so" not found
01-04 02:17:34.406 D/Mono    ( 8806): Config attempting to parse: 'System.Linq.dll.config'.
01-04 02:17:34.406 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq/System.Linq.config'.
01-04 02:17:34.406 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Linq[0x8a85a540]: 2
01-04 02:17:34.408 D/Mono    ( 8806): Image addref System.Core[0x8a85a660] -> System.Core.dll[0x8a85ea00]: 2
01-04 02:17:34.408 D/Mono    ( 8806): Prepared to set up assembly 'System.Core' (System.Core.dll)
01-04 02:17:34.408 D/Mono    ( 8806): Assembly System.Core[0x8a85a660] added to domain RootDomain, ref_count=1
Loaded assembly: System.Linq.dll [External]01-04 02:17:34.409 D/Mono    ( 8806): AOT: image 'System.Core.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Core.dll.so" not found

01-04 02:17:34.409 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Core.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Core.dll.so" not found
01-04 02:17:34.409 D/Mono    ( 8806): Config attempting to parse: 'System.Core.dll.config'.
01-04 02:17:34.409 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Core/System.Core.config'.
01-04 02:17:34.409 D/Mono    ( 8806): Assembly Ref addref System.Linq[0x8a85a540] -> System.Core[0x8a85a660]: 2
Loaded assembly: System.Core.dll [External]01-04 02:17:34.409 D/Mono    ( 8806): Assembly Ref addref System.Core[0x8a85a660] -> mscorlib[0xa904ada0]: 9

01-04 02:17:34.425 D/Mono    ( 8806): Image addref System.Runtime.Extensions[0x8a85a6c0] -> System.Runtime.Extensions.dll[0x8a85ef00]: 2
01-04 02:17:34.425 D/Mono    ( 8806): Prepared to set up assembly 'System.Runtime.Extensions' (System.Runtime.Extensions.dll)
01-04 02:17:34.425 D/Mono    ( 8806): Assembly System.Runtime.Extensions[0x8a85a6c0] added to domain RootDomain, ref_count=1
01-04 02:17:34.426 D/Mono    ( 8806): AOT: image 'System.Runtime.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Runtime.Extensions.dll.so" not found
01-04 02:17:34.426 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Runtime.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Runtime.Extensions.dll.so" not found
01-04 02:17:34.426 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.Extensions.dll.config'.
01-04 02:17:34.426 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.Extensions/System.Runtime.Extensions.config'.
01-04 02:17:34.426 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Runtime.Extensions[0x8a85a6c0]: 2
01-04 02:17:34.426 D/Mono    ( 8806): Assembly Ref addref System.Runtime.Extensions[0x8a85a6c0] -> mscorlib[0xa904ada0]: 10
Loaded assembly: System.Runtime.Extensions.dll [External]
01-04 02:17:34.439 D/Mono    ( 8806): Image addref System.Reflection.Extensions[0x8a85a840] -> System.Reflection.Extensions.dll[0x8a860800]: 2
01-04 02:17:34.439 D/Mono    ( 8806): Prepared to set up assembly 'System.Reflection.Extensions' (System.Reflection.Extensions.dll)
01-04 02:17:34.439 D/Mono    ( 8806): Assembly System.Reflection.Extensions[0x8a85a840] added to domain RootDomain, ref_count=1
01-04 02:17:34.439 D/Mono    ( 8806): AOT: image 'System.Reflection.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Reflection.Extensions.dll.so" not found
01-04 02:17:34.440 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Reflection.Extensions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Reflection.Extensions.dll.so" not found
01-04 02:17:34.440 D/Mono    ( 8806): Config attempting to parse: 'System.Reflection.Extensions.dll.config'.Loaded assembly: System.Reflection.Extensions.dll [External]

01-04 02:17:34.440 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection.Extensions/System.Reflection.Extensions.config'.
01-04 02:17:34.440 D/Mono    ( 8806): Assembly Ref addref Java.Interop[0xa904bdc0] -> System.Reflection.Extensions[0x8a85a840]: 2
01-04 02:17:34.440 D/Mono    ( 8806): Assembly Ref addref System.Reflection.Extensions[0x8a85a840] -> mscorlib[0xa904ada0]: 11
01-04 02:17:34.463 D/Mono    ( 8806): Assembly Ref addref Mono.Android[0xa904bca0] -> System.Core[0x8a85a660]: 3
01-04 02:17:34.463 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.463 D/Mono    ( 8806): Searching for 'monodroid_typemap_managed_to_java'.
01-04 02:17:34.463 D/Mono    ( 8806): Probing 'monodroid_typemap_managed_to_java'.
01-04 02:17:34.463 D/Mono    ( 8806): Found as 'monodroid_typemap_managed_to_java'.
01-04 02:17:34.488 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.488 D/Mono    ( 8806): Searching for 'java_interop_jnienv_alloc_object'.
01-04 02:17:34.488 D/Mono    ( 8806): Probing 'java_interop_jnienv_alloc_object'.
01-04 02:17:34.488 D/Mono    ( 8806): Found as 'java_interop_jnienv_alloc_object'.
01-04 02:17:34.527 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll'.
01-04 02:17:34.528 D/Mono    ( 8806): Image addref Xamarin.Interactive[0x8a85a900] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll[0x8a860d00]: 2
01-04 02:17:34.528 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Interactive' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll)
01-04 02:17:34.528 D/Mono    ( 8806): Assembly Xamarin.Interactive[0x8a85a900] added to domain RootDomain, ref_count=1
01-04 02:17:34.528 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Interactive.dll.so" not found
01-04 02:17:34.528 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Interactive.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Interactive.dll.so" not found
01-04 02:17:34.528 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll'.
01-04 02:17:34.528 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll.config'.
01-04 02:17:34.529 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Interactive/Xamarin.Interactive.config'.
01-04 02:17:34.536 D/Mono    ( 8806): Assembly Loader probing location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll'.
01-04 02:17:34.536 D/Mono    ( 8806): Image addref Xamarin.Interactive.Android[0x8a85a8a0] -> /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll[0x8a861700]: 2
01-04 02:17:34.536 D/Mono    ( 8806): Prepared to set up assembly 'Xamarin.Interactive.Android' (/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll)
01-04 02:17:34.536 D/Mono    ( 8806): Assembly Xamarin.Interactive.Android[0x8a85a8a0] added to domain RootDomain, ref_count=1
01-04 02:17:34.536 D/Mono    ( 8806): AOT: image '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Interactive.Android.dll.so" not found
01-04 02:17:34.537 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/Xamarin.Interactive.Android.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-Xamarin.Interactive.Android.dll.so" not found
01-04 02:17:34.537 D/Mono    ( 8806): Assembly Loader loaded assembly from location: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll'.
01-04 02:17:34.537 D/Mono    ( 8806): Config attempting to parse: '/storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll.config'.
01-04 02:17:34.537 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/Xamarin.Interactive.Android/Xamarin.Interactive.Android.config'.
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll [External]
Loaded assembly: /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll [External]
01-04 02:17:34.561 D/Mono    ( 8806): Assembly Ref addref Xamarin.Interactive.Android[0x8a85a8a0] -> mscorlib[0xa904ada0]: 12
01-04 02:17:34.622 D/Mono    ( 8806): Assembly Ref addref Xamarin.Interactive.Android[0x8a85a8a0] -> Xamarin.Interactive[0x8a85a900]: 2
01-04 02:17:34.661 D/Mono    ( 8806): Assembly Ref addref Xamarin.Interactive.Android[0x8a85a8a0] -> Mono.Android[0xa904bca0]: 2
01-04 02:17:34.820 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.820 D/Mono    ( 8806): Searching for 'java_interop_jnienv_register_natives'.
01-04 02:17:34.820 D/Mono    ( 8806): Probing 'java_interop_jnienv_register_natives'.
01-04 02:17:34.820 D/Mono    ( 8806): Found as 'java_interop_jnienv_register_natives'.
01-04 02:17:34.829 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.829 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_nonvirtual_void_method_a'.
01-04 02:17:34.829 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_nonvirtual_void_method_a'.
01-04 02:17:34.829 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_nonvirtual_void_method_a'.
01-04 02:17:34.833 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.833 D/Mono    ( 8806): Searching for '_monodroid_gc_wait_for_bridge_processing'.
01-04 02:17:34.833 D/Mono    ( 8806): Probing '_monodroid_gc_wait_for_bridge_processing'.
01-04 02:17:34.833 D/Mono    ( 8806): Found as '_monodroid_gc_wait_for_bridge_processing'.
01-04 02:17:34.839 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.839 D/Mono    ( 8806): Searching for 'java_interop_jnienv_is_same_object'.
01-04 02:17:34.839 D/Mono    ( 8806): Probing 'java_interop_jnienv_is_same_object'.
01-04 02:17:34.839 D/Mono    ( 8806): Found as 'java_interop_jnienv_is_same_object'.
01-04 02:17:34.844 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.844 D/Mono    ( 8806): Searching for 'java_interop_jnienv_new_string'.
01-04 02:17:34.844 D/Mono    ( 8806): Probing 'java_interop_jnienv_new_string'.
01-04 02:17:34.844 D/Mono    ( 8806): Found as 'java_interop_jnienv_new_string'.
01-04 02:17:34.846 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.846 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_static_field_id'.
01-04 02:17:34.846 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_static_field_id'.
01-04 02:17:34.846 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_static_field_id'.
01-04 02:17:34.850 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.850 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_static_object_field'.
01-04 02:17:34.850 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_static_object_field'.
01-04 02:17:34.850 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_static_object_field'.
Thread started:  #3
01-04 02:17:34.932 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:34.932 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_static_void_method_a'.
01-04 02:17:34.932 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_static_void_method_a'.
01-04 02:17:34.932 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_static_void_method_a'.
01-04 02:17:34.933 D/Mono    ( 8806): Assembly Ref addref FormsViewGroup[0xa904b160] -> mscorlib[0xa904ada0]: 13
01-04 02:17:34.933 D/Mono    ( 8806): Assembly Ref addref FormsViewGroup[0xa904b160] -> Mono.Android[0xa904bca0]: 3
01-04 02:17:34.935 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Analytics.Android.Bindings[0xa904aec0] -> mscorlib[0xa904ada0]: 14
01-04 02:17:34.935 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Analytics.Android.Bindings[0xa904aec0] -> Mono.Android[0xa904bca0]: 4
01-04 02:17:34.936 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Android.Bindings[0xa904ae60] -> mscorlib[0xa904ada0]: 15
01-04 02:17:34.936 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Android.Bindings[0xa904ae60] -> Mono.Android[0xa904bca0]: 5
01-04 02:17:34.938 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Crashes.Android.Bindings[0xa904b1c0] -> mscorlib[0xa904ada0]: 16
01-04 02:17:34.938 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Crashes.Android.Bindings[0xa904b1c0] -> Mono.Android[0xa904bca0]: 6
01-04 02:17:34.939 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Distribute.Android.Bindings[0xa904b280] -> mscorlib[0xa904ada0]: 17
01-04 02:17:34.939 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Distribute.Android.Bindings[0xa904b280] -> Mono.Android[0xa904bca0]: 7
01-04 02:17:34.940 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Animated.Vector.Drawable[0xa904b520] -> mscorlib[0xa904ada0]: 18
01-04 02:17:34.940 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Animated.Vector.Drawable[0xa904b520] -> Mono.Android[0xa904bca0]: 8
01-04 02:17:34.941 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Annotations[0xa904b580] -> mscorlib[0xa904ada0]: 19
01-04 02:17:34.941 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Annotations[0xa904b580] -> Mono.Android[0xa904bca0]: 9
01-04 02:17:34.942 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Compat[0xa904b5e0] -> mscorlib[0xa904ada0]: 20
01-04 02:17:34.942 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Compat[0xa904b5e0] -> Mono.Android[0xa904bca0]: 10
01-04 02:17:34.944 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Core.UI[0xa904b640] -> mscorlib[0xa904ada0]: 21
01-04 02:17:34.944 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Core.UI[0xa904b640] -> Mono.Android[0xa904bca0]: 11
01-04 02:17:34.945 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Core.Utils[0xa904b6a0] -> mscorlib[0xa904ada0]: 22
01-04 02:17:34.945 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Core.Utils[0xa904b6a0] -> Mono.Android[0xa904bca0]: 12
01-04 02:17:34.947 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Design[0xa904b700] -> mscorlib[0xa904ada0]: 23
01-04 02:17:34.947 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Design[0xa904b700] -> Mono.Android[0xa904bca0]: 13
01-04 02:17:34.948 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Fragment[0xa904b760] -> mscorlib[0xa904ada0]: 24
01-04 02:17:34.948 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Fragment[0xa904b760] -> Mono.Android[0xa904bca0]: 14
01-04 02:17:34.949 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Media.Compat[0xa904b7c0] -> mscorlib[0xa904ada0]: 25
01-04 02:17:34.949 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Media.Compat[0xa904b7c0] -> Mono.Android[0xa904bca0]: 15
01-04 02:17:34.950 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Transition[0xa904b820] -> mscorlib[0xa904ada0]: 26
01-04 02:17:34.950 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Transition[0xa904b820] -> Mono.Android[0xa904bca0]: 16
01-04 02:17:34.951 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v4[0xa904b880] -> mscorlib[0xa904ada0]: 27
01-04 02:17:34.951 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v4[0xa904b880] -> Mono.Android[0xa904bca0]: 17
01-04 02:17:34.953 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] -> mscorlib[0xa904ada0]: 28
01-04 02:17:34.953 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] -> Mono.Android[0xa904bca0]: 18
01-04 02:17:34.955 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.CardView[0xa904b940] -> mscorlib[0xa904ada0]: 29
01-04 02:17:34.955 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.CardView[0xa904b940] -> Mono.Android[0xa904bca0]: 19
01-04 02:17:34.956 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.MediaRouter[0xa904b9a0] -> mscorlib[0xa904ada0]: 30
01-04 02:17:34.956 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.MediaRouter[0xa904b9a0] -> Mono.Android[0xa904bca0]: 20
01-04 02:17:34.957 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.Palette[0xa904ba00] -> mscorlib[0xa904ada0]: 31
01-04 02:17:34.957 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.Palette[0xa904ba00] -> Mono.Android[0xa904bca0]: 21
01-04 02:17:34.958 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.RecyclerView[0xa904ba60] -> mscorlib[0xa904ada0]: 32
01-04 02:17:34.959 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.RecyclerView[0xa904ba60] -> Mono.Android[0xa904bca0]: 22
01-04 02:17:34.959 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Vector.Drawable[0xa904bac0] -> mscorlib[0xa904ada0]: 33
01-04 02:17:34.960 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Vector.Drawable[0xa904bac0] -> Mono.Android[0xa904bca0]: 23
01-04 02:17:34.963 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> Xamarin.Android.Support.v7.AppCompat[0xa904b8e0]: 2
01-04 02:17:34.963 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] -> Xamarin.Android.Support.Fragment[0xa904b760]: 2
01-04 02:17:34.963 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.Fragment[0xa904b760] -> Xamarin.Android.Support.Compat[0xa904b5e0]: 2
01-04 02:17:34.963 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] -> Xamarin.Android.Support.Core.Utils[0xa904b6a0]: 2
01-04 02:17:34.963 D/Mono    ( 8806): Assembly Ref addref Xamarin.Android.Support.v7.AppCompat[0xa904b8e0] -> Xamarin.Android.Support.Core.UI[0xa904b640]: 2
01-04 02:17:35.006 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> Mono.Android[0xa904bca0]: 24
01-04 02:17:35.006 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> mscorlib[0xa904ada0]: 34
01-04 02:17:35.029 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> Xamarin.Forms.Platform.Android[0xa904bb80]: 2
01-04 02:17:35.029 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> Mono.Android[0xa904bca0]: 25
01-04 02:17:35.034 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> Xamarin.Forms.Core[0xa904bb20]: 2
01-04 02:17:35.034 D/Mono    ( 8806): Unloading image System.Runtime.dll [0x8a406f00].
01-04 02:17:35.034 D/Mono    ( 8806): Image addref System.Runtime[0xacc85240] -> System.Runtime.dll[0x9dde2c00]: 5
01-04 02:17:35.034 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.dll.config'.
01-04 02:17:35.034 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
01-04 02:17:35.035 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Runtime[0xa904bd00]: 3
01-04 02:17:35.035 D/Mono    ( 8806): Image addref System.ObjectModel[0xacc85240] -> System.ObjectModel.dll[0x8a406f00]: 2
01-04 02:17:35.035 D/Mono    ( 8806): Prepared to set up assembly 'System.ObjectModel' (System.ObjectModel.dll)
01-04 02:17:35.035 D/Mono    ( 8806): Assembly System.ObjectModel[0xacc85240] added to domain RootDomain, ref_count=1
01-04 02:17:35.035 D/Mono    ( 8806): AOT: image 'System.ObjectModel.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.ObjectModel.dll.so" not found
01-04 02:17:35.036 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.ObjectModel.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.ObjectModel.dll.so" not found
01-04 02:17:35.036 D/Mono    ( 8806): Config attempting to parse: 'System.ObjectModel.dll.config'.
01-04 02:17:35.036 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.ObjectModel/System.ObjectModel.config'.
01-04 02:17:35.036 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.ObjectModel[0xacc85240]: 2Loaded assembly: System.ObjectModel.dll [External]

01-04 02:17:35.036 D/Mono    ( 8806): Image addref System[0x8a85b560] -> System.dll[0x8a407400]: 2
01-04 02:17:35.036 D/Mono    ( 8806): Prepared to set up assembly 'System' (System.dll)
01-04 02:17:35.036 D/Mono    ( 8806): Assembly System[0x8a85b560] added to domain RootDomain, ref_count=1
01-04 02:17:35.037 D/Mono    ( 8806): AOT: image 'System.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.dll.so" not found
01-04 02:17:35.037 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.dll.so" not found
01-04 02:17:35.037 D/Mono    ( 8806): Config attempting to parse: 'System.dll.config'.
01-04 02:17:35.037 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System/System.config'.
01-04 02:17:35.037 D/Mono    ( 8806): Assembly Ref addref System.ObjectModel[0xacc85240] -> System[0x8a85b560]: 2
Loaded assembly: System.dll [External]
01-04 02:17:35.057 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.057 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_array_length'.
01-04 02:17:35.057 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_array_length'.
01-04 02:17:35.057 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_array_length'.
Loaded assembly: MonoDroidConstructors [External]
01-04 02:17:35.139 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> mscorlib[0xa904ada0]: 35
01-04 02:17:35.147 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> System.Core[0x8a85a660]: 4
01-04 02:17:35.150 D/Mono    ( 8806): Unloading image System.Collections.dll [0x8a407e00].
01-04 02:17:35.150 D/Mono    ( 8806): Image addref System.Collections[0x8a85ae40] -> System.Collections.dll[0x8a85f400]: 5
01-04 02:17:35.151 D/Mono    ( 8806): Config attempting to parse: 'System.Collections.dll.config'.
01-04 02:17:35.151 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections/System.Collections.config'.
01-04 02:17:35.151 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Collections[0x8a85a0c0]: 3
01-04 02:17:35.151 D/Mono    ( 8806): Unloading image System.Reflection.dll [0x8a407e00].
01-04 02:17:35.151 D/Mono    ( 8806): Image addref System.Reflection[0x8a85ae40] -> System.Reflection.dll[0x8a85f900]: 5
01-04 02:17:35.151 D/Mono    ( 8806): Config attempting to parse: 'System.Reflection.dll.config'.
01-04 02:17:35.151 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection/System.Reflection.config'.
01-04 02:17:35.151 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Reflection[0x8a85a000]: 3
01-04 02:17:35.156 D/Mono    ( 8806): Assembly Ref addref System[0x8a85b560] -> mscorlib[0xa904ada0]: 36
01-04 02:17:35.157 D/Mono    ( 8806): Image addref System.Xml.ReaderWriter[0x8a85c340] -> System.Xml.ReaderWriter.dll[0x8a407e00]: 2
01-04 02:17:35.157 D/Mono    ( 8806): Prepared to set up assembly 'System.Xml.ReaderWriter' (System.Xml.ReaderWriter.dll)
01-04 02:17:35.157 D/Mono    ( 8806): Assembly System.Xml.ReaderWriter[0x8a85c340] added to domain RootDomain, ref_count=1
01-04 02:17:35.157 D/Mono    ( 8806): AOT: image 'System.Xml.ReaderWriter.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Xml.ReaderWriter.dll.so" not foundLoaded assembly: System.Xml.ReaderWriter.dll [External]

01-04 02:17:35.157 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Xml.ReaderWriter.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Xml.ReaderWriter.dll.so" not found
01-04 02:17:35.157 D/Mono    ( 8806): Config attempting to parse: 'System.Xml.ReaderWriter.dll.config'.
01-04 02:17:35.157 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Xml.ReaderWriter/System.Xml.ReaderWriter.config'.
01-04 02:17:35.157 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Xml.ReaderWriter[0x8a85c340]: 2
01-04 02:17:35.158 D/Mono    ( 8806): Image addref System.Xml[0x8a85c3a0] -> System.Xml.dll[0x8a408300]: 2
01-04 02:17:35.158 D/Mono    ( 8806): Prepared to set up assembly 'System.Xml' (System.Xml.dll)
01-04 02:17:35.158 D/Mono    ( 8806): Assembly System.Xml[0x8a85c3a0] added to domain RootDomain, ref_count=1
01-04 02:17:35.158 D/Mono    ( 8806): AOT: image 'System.Xml.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Xml.dll.so" not found
01-04 02:17:35.158 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Xml.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Xml.dll.so" not found
Loaded assembly: System.Xml.dll [External]01-04 02:17:35.158 D/Mono    ( 8806): Config attempting to parse: 'System.Xml.dll.config'.

01-04 02:17:35.158 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Xml/System.Xml.config'.
01-04 02:17:35.158 D/Mono    ( 8806): Assembly Ref addref System.Xml.ReaderWriter[0x8a85c340] -> System.Xml[0x8a85c3a0]: 2
01-04 02:17:35.158 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Reflection.Extensions[0x8a85a840]: 3
01-04 02:17:35.189 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> Xamarin.Forms.Core[0xa904bb20]: 3
01-04 02:17:35.189 D/Mono    ( 8806): Image addref System.Threading.Tasks[0x8a85c460] -> System.Threading.Tasks.dll[0x8a409200]: 2
Loaded assembly: System.Threading.Tasks.dll [External]01-04 02:17:35.189 D/Mono    ( 8806): Prepared to set up assembly 'System.Threading.Tasks' (System.Threading.Tasks.dll)

01-04 02:17:35.189 D/Mono    ( 8806): Assembly System.Threading.Tasks[0x8a85c460] added to domain RootDomain, ref_count=1
01-04 02:17:35.189 D/Mono    ( 8806): AOT: image 'System.Threading.Tasks.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Threading.Tasks.dll.so" not found
01-04 02:17:35.189 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Threading.Tasks.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Threading.Tasks.dll.so" not found
01-04 02:17:35.189 D/Mono    ( 8806): Config attempting to parse: 'System.Threading.Tasks.dll.config'.
01-04 02:17:35.189 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Threading.Tasks/System.Threading.Tasks.config'.
01-04 02:17:35.189 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Threading.Tasks[0x8a85c460]: 2
01-04 02:17:35.189 D/Mono    ( 8806): Assembly Ref addref System.Threading.Tasks[0x8a85c460] -> mscorlib[0xa904ada0]: 37
01-04 02:17:35.190 D/Mono    ( 8806): Unloading image System.Threading.dll [0x8a409700].
01-04 02:17:35.190 D/Mono    ( 8806): Image addref System.Threading[0x8a85ae40] -> System.Threading.dll[0x8a85e000]: 5
01-04 02:17:35.190 D/Mono    ( 8806): Config attempting to parse: 'System.Threading.dll.config'.
01-04 02:17:35.190 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Threading/System.Threading.config'.
01-04 02:17:35.190 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Threading[0xa904bee0]: 3
01-04 02:17:35.190 D/Mono    ( 8806): Assembly Ref addref System.Runtime[0xa904bd00] -> System[0x8a85b560]: 3
01-04 02:17:35.211 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> Xamarin.Android.Support.Fragment[0xa904b760]: 3
01-04 02:17:35.217 W/art     ( 8806): Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
01-04 02:17:35.226 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.226 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_nonvirtual_object_method_a'.
01-04 02:17:35.226 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_nonvirtual_object_method_a'.
01-04 02:17:35.226 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_nonvirtual_object_method_a'.
01-04 02:17:35.289 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.289 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_static_int_field'.
Loaded assembly: System.IO.dll [External]01-04 02:17:35.289 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_static_int_field'.

01-04 02:17:35.289 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_static_int_field'.
01-04 02:17:35.295 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').Loaded assembly: System.Linq.Expressions.dll [External]

01-04 02:17:35.295 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_void_method_a'.
01-04 02:17:35.295 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_void_method_a'.
01-04 02:17:35.295 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_void_method_a'.
01-04 02:17:35.299 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> System[0x8a85b560]: 4
01-04 02:17:35.300 D/Mono    ( 8806): Image addref System.IO[0x8a85cdc0] -> System.IO.dll[0x8a40ab00]: 2
01-04 02:17:35.300 D/Mono    ( 8806): Prepared to set up assembly 'System.IO' (System.IO.dll)
01-04 02:17:35.300 D/Mono    ( 8806): Assembly System.IO[0x8a85cdc0] added to domain RootDomain, ref_count=1
01-04 02:17:35.301 D/Mono    ( 8806): AOT: image 'System.IO.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.IO.dll.so" not found
01-04 02:17:35.301 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.IO.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.IO.dll.so" not found
01-04 02:17:35.301 D/Mono    ( 8806): Config attempting to parse: 'System.IO.dll.config'.
01-04 02:17:35.301 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.IO/System.IO.config'.
01-04 02:17:35.301 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.IO[0x8a85cdc0]: 2
01-04 02:17:35.301 D/Mono    ( 8806): Assembly Ref addref System.IO[0x8a85cdc0] -> mscorlib[0xa904ada0]: 38
01-04 02:17:35.301 D/Mono    ( 8806): Unloading image System.Runtime.Extensions.dll [0x8a4f8500].
01-04 02:17:35.302 D/Mono    ( 8806): Image addref System.Runtime.Extensions[0x8a85ce80] -> System.Runtime.Extensions.dll[0x8a85ef00]: 5
01-04 02:17:35.302 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.Extensions.dll.config'.
01-04 02:17:35.302 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime.Extensions/System.Runtime.Extensions.config'.
01-04 02:17:35.302 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Runtime.Extensions[0x8a85a6c0]: 3
01-04 02:17:35.302 D/Mono    ( 8806): Assembly Ref addref System.Runtime.Extensions[0x8a85a6c0] -> System[0x8a85b560]: 5
01-04 02:17:35.302 D/Mono    ( 8806): Image addref System.Linq.Expressions[0x8a85ce80] -> System.Linq.Expressions.dll[0x8a4f8500]: 2
01-04 02:17:35.302 D/Mono    ( 8806): Prepared to set up assembly 'System.Linq.Expressions' (System.Linq.Expressions.dll)
01-04 02:17:35.302 D/Mono    ( 8806): Assembly System.Linq.Expressions[0x8a85ce80] added to domain RootDomain, ref_count=1
01-04 02:17:35.303 D/Mono    ( 8806): AOT: image 'System.Linq.Expressions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Linq.Expressions.dll.so" not found
01-04 02:17:35.303 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Linq.Expressions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Linq.Expressions.dll.so" not found
01-04 02:17:35.303 D/Mono    ( 8806): Config attempting to parse: 'System.Linq.Expressions.dll.config'.
01-04 02:17:35.303 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq.Expressions/System.Linq.Expressions.config'.
01-04 02:17:35.303 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Linq.Expressions[0x8a85ce80]: 2
01-04 02:17:35.303 D/Mono    ( 8806): Assembly Ref addref System.Linq.Expressions[0x8a85ce80] -> System.Core[0x8a85a660]: 5
01-04 02:17:35.336 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.336 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_boolean_method_a'.
01-04 02:17:35.336 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_boolean_method_a'.
01-04 02:17:35.336 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_boolean_method_a'.
01-04 02:17:35.340 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.340 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_field_id'.
01-04 02:17:35.340 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_field_id'.
01-04 02:17:35.340 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_field_id'.
01-04 02:17:35.341 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.341 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_int_field'.
01-04 02:17:35.341 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_int_field'.
01-04 02:17:35.341 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_int_field'.
01-04 02:17:35.366 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.366 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_float_field'.
01-04 02:17:35.366 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_float_field'.
01-04 02:17:35.366 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_float_field'.
01-04 02:17:35.384 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.384 D/Mono    ( 8806): Searching for 'java_interop_jnienv_new_int_array'.
01-04 02:17:35.384 D/Mono    ( 8806): Probing 'java_interop_jnienv_new_int_array'.
01-04 02:17:35.384 D/Mono    ( 8806): Found as 'java_interop_jnienv_new_int_array'.
01-04 02:17:35.385 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.385 D/Mono    ( 8806): Searching for 'java_interop_jnienv_set_int_array_region'.
01-04 02:17:35.385 D/Mono    ( 8806): Probing 'java_interop_jnienv_set_int_array_region'.
01-04 02:17:35.385 D/Mono    ( 8806): Found as 'java_interop_jnienv_set_int_array_region'.
01-04 02:17:35.388 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.388 D/Mono    ( 8806): Searching for 'java_interop_jnienv_get_int_array_region'.
01-04 02:17:35.388 D/Mono    ( 8806): Probing 'java_interop_jnienv_get_int_array_region'.
01-04 02:17:35.388 D/Mono    ( 8806): Found as 'java_interop_jnienv_get_int_array_region'.
01-04 02:17:35.410 D/Mono    ( 8806): Unloading image System.Linq.dll [0x8a4f8a00].
01-04 02:17:35.410 D/Mono    ( 8806): Image addref System.Linq[0x8a0a1180] -> System.Linq.dll[0x8a85fe00]: 5
01-04 02:17:35.410 D/Mono    ( 8806): Config attempting to parse: 'System.Linq.dll.config'.
01-04 02:17:35.410 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq/System.Linq.config'.
01-04 02:17:35.410 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Linq[0x8a85a540]: 3
01-04 02:17:35.419 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform.Android[0xa904bb80] -> FormsViewGroup[0xa904b160]: 2
Loaded assembly: System.Resources.ResourceManager.dll [External]01-04 02:17:35.432 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Analytics[0xa904ae00] -> mscorlib[0xa904ada0]: 39

01-04 02:17:35.432 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Crashes[0xa904b220] -> mscorlib[0xa904ada0]: 40
01-04 02:17:35.432 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Distribute[0xa904b2e0] -> mscorlib[0xa904ada0]: 41
01-04 02:17:35.432 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter.Distribute[0xa904b2e0] -> Mono.Android[0xa904bca0]: 26
01-04 02:17:35.432 D/Mono    ( 8806): Assembly Ref addref Microsoft.AppCenter[0xa904b340] -> mscorlib[0xa904ada0]: 42
01-04 02:17:35.433 D/Mono    ( 8806): Unloading image System.Runtime.dll [0x8a4f8a00].
01-04 02:17:35.433 D/Mono    ( 8806): Image addref System.Runtime[0x8a0a1120] -> System.Runtime.dll[0x9dde2c00]: 6
01-04 02:17:35.433 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.dll.config'.
01-04 02:17:35.433 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
01-04 02:17:35.433 D/Mono    ( 8806): Assembly Ref addref Syncfusion.Core.XForms[0xa904b3a0] -> System.Runtime[0xa904bd00]: 4
01-04 02:17:35.433 D/Mono    ( 8806): Image addref System.Resources.ResourceManager[0x8a0a1120] -> System.Resources.ResourceManager.dll[0x8a4f8a00]: 2
01-04 02:17:35.433 D/Mono    ( 8806): Prepared to set up assembly 'System.Resources.ResourceManager' (System.Resources.ResourceManager.dll)
01-04 02:17:35.433 D/Mono    ( 8806): Assembly System.Resources.ResourceManager[0x8a0a1120] added to domain RootDomain, ref_count=1
01-04 02:17:35.434 D/Mono    ( 8806): AOT: image 'System.Resources.ResourceManager.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Resources.ResourceManager.dll.so" not found
01-04 02:17:35.434 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Resources.ResourceManager.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Resources.ResourceManager.dll.so" not found
01-04 02:17:35.434 D/Mono    ( 8806): Config attempting to parse: 'System.Resources.ResourceManager.dll.config'.
01-04 02:17:35.434 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Resources.ResourceManager/System.Resources.ResourceManager.config'.
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.Core.XForms[0xa904b3a0] -> System.Resources.ResourceManager[0x8a0a1120]: 2
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref System.Resources.ResourceManager[0x8a0a1120] -> mscorlib[0xa904ada0]: 43
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.Android[0xa904b400] -> mscorlib[0xa904ada0]: 44
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.Android[0xa904b400] -> Mono.Android[0xa904bca0]: 27
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms.Android[0xa904b460] -> mscorlib[0xa904ada0]: 45
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms.Android[0xa904b460] -> Xamarin.Forms.Platform.Android[0xa904bb80]: 3
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms.Android[0xa904b460] -> Xamarin.Forms.Core[0xa904bb20]: 4
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> Xamarin.Forms.Core[0xa904bb20]: 5
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms.Android[0xa904b460] -> Syncfusion.SfGauge.XForms[0xa904b4c0]: 2
01-04 02:17:35.434 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms.Android[0xa904b460] -> Syncfusion.SfGauge.Android[0xa904b400]: 2
01-04 02:17:35.435 D/Mono    ( 8806): Unloading image System.Runtime.dll [0x8a4f8f00].
01-04 02:17:35.435 D/Mono    ( 8806): Image addref System.Runtime[0x8a0a1240] -> System.Runtime.dll[0x9dde2c00]: 7
01-04 02:17:35.435 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.dll.config'.
01-04 02:17:35.435 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
01-04 02:17:35.435 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> System.Runtime[0xa904bd00]: 5
01-04 02:17:35.435 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> System.Resources.ResourceManager[0x8a0a1120]: 3
01-04 02:17:35.436 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Platform[0xa904bbe0] -> mscorlib[0xa904ada0]: 46
01-04 02:17:35.436 D/Mono    ( 8806): Unloading image System.Runtime.dll [0x8a4f8f00].
01-04 02:17:35.436 D/Mono    ( 8806): Image addref System.Runtime[0x8a0a1240] -> System.Runtime.dll[0x9dde2c00]: 8
01-04 02:17:35.436 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.dll.config'.
01-04 02:17:35.436 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
01-04 02:17:35.436 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Runtime[0xa904bd00]: 6
01-04 02:17:35.436 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> Xamarin.Forms.Core[0xa904bb20]: 6
01-04 02:17:35.437 D/Mono    ( 8806): Assembly Ref addref System.Linq[0x8a85a540] -> mscorlib[0xa904ada0]: 47
01-04 02:17:35.438 D/Mono    ( 8806): Unloading image System.Runtime.dll [0x8a4f8f00].
01-04 02:17:35.438 D/Mono    ( 8806): Image addref System.Runtime[0x8a0a1240] -> System.Runtime.dll[0x9dde2c00]: 9
01-04 02:17:35.438 D/Mono    ( 8806): Config attempting to parse: 'System.Runtime.dll.config'.
01-04 02:17:35.438 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Runtime/System.Runtime.config'.
01-04 02:17:35.438 D/Mono    ( 8806): Assembly Ref addref Xamarin.Interactive[0x8a85a900] -> System.Runtime[0xa904bd00]: 7
01-04 02:17:35.438 D/Mono    ( 8806): Assembly Ref addref System.ObjectModel[0xacc85240] -> mscorlib[0xa904ada0]: 48
01-04 02:17:35.455 D/Mono    ( 8806): Assembly Ref addref System.Xml.ReaderWriter[0x8a85c340] -> mscorlib[0xa904ada0]: 49
01-04 02:17:35.455 D/Mono    ( 8806): Assembly Ref addref System.Xml[0x8a85c3a0] -> mscorlib[0xa904ada0]: 50
01-04 02:17:35.456 D/Mono    ( 8806): Assembly Ref addref System.Linq.Expressions[0x8a85ce80] -> mscorlib[0xa904ada0]: 51
01-04 02:17:35.473 D/MediaPlayer( 8806): setSubtitleAnchor in MediaPlayer
01-04 02:17:35.477 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> Syncfusion.SfGauge.XForms[0xa904b4c0]: 3
01-04 02:17:35.478 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> Xamarin.Forms.Platform[0xa904bbe0]: 2
01-04 02:17:35.484 D/Mono    ( 8806): Image addref System.Globalization[0x8a0a1660] -> System.Globalization.dll[0x8a4f8f00]: 2
01-04 02:17:35.484 D/Mono    ( 8806): Prepared to set up assembly 'System.Globalization' (System.Globalization.dll)
01-04 02:17:35.484 D/Mono    ( 8806): Assembly System.Globalization[0x8a0a1660] added to domain RootDomain, ref_count=1
01-04 02:17:35.484 D/Mono    ( 8806): AOT: image 'System.Globalization.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Globalization.dll.so" not found
01-04 02:17:35.484 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Globalization.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Globalization.dll.so" not found
01-04 02:17:35.484 D/Mono    ( 8806): Config attempting to parse: 'System.Globalization.dll.config'.
01-04 02:17:35.484 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Globalization/System.Globalization.config'.
01-04 02:17:35.485 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Globalization[0x8a0a1660]: 2Loaded assembly: System.Globalization.dll [External]

01-04 02:17:35.485 D/Mono    ( 8806): Assembly Ref addref System.Globalization[0x8a0a1660] -> mscorlib[0xa904ada0]: 52
01-04 02:17:35.500 D/Mono    ( 8806): Assembly Ref addref System.Collections[0x8a85a0c0] -> System[0x8a85b560]: 6
01-04 02:17:35.514 D/Mono    ( 8806): Image addref System.Dynamic.Runtime[0x8a0a1780] -> System.Dynamic.Runtime.dll[0x8a4f9400]: 2
01-04 02:17:35.514 D/Mono    ( 8806): Prepared to set up assembly 'System.Dynamic.Runtime' (System.Dynamic.Runtime.dll)
01-04 02:17:35.514 D/Mono    ( 8806): Assembly System.Dynamic.Runtime[0x8a0a1780] added to domain RootDomain, ref_count=1
01-04 02:17:35.514 D/Mono    ( 8806): AOT: image 'System.Dynamic.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Dynamic.Runtime.dll.so" not found
01-04 02:17:35.514 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Dynamic.Runtime.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Dynamic.Runtime.dll.so" not found
01-04 02:17:35.514 D/Mono    ( 8806): Config attempting to parse: 'System.Dynamic.Runtime.dll.config'.
01-04 02:17:35.515 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Dynamic.Runtime/System.Dynamic.Runtime.config'.
01-04 02:17:35.515 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Dynamic.Runtime[0x8a0a1780]: 2
01-04 02:17:35.515 D/Mono    ( 8806): Assembly Ref addref System.Dynamic.Runtime[0x8a0a1780] -> mscorlib[0xa904ada0]: 53Loaded assembly: System.Dynamic.Runtime.dll [External]

01-04 02:17:35.540 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:35.540 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_int_method_a'.
01-04 02:17:35.540 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_int_method_a'.
01-04 02:17:35.540 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_int_method_a'.
01-04 02:17:35.549 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> Xamarin.Forms.Xaml[0xa904bc40]: 2
01-04 02:17:35.550 D/Mono    ( 8806): Unloading image System.Collections.dll [0x8a4f9900].
01-04 02:17:35.550 D/Mono    ( 8806): Image addref System.Collections[0x8a0a17e0] -> System.Collections.dll[0x8a85f400]: 6
01-04 02:17:35.550 D/Mono    ( 8806): Config attempting to parse: 'System.Collections.dll.config'.
01-04 02:17:35.550 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Collections/System.Collections.config'.
01-04 02:17:35.550 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Collections[0x8a85a0c0]: 4
01-04 02:17:35.551 D/Mono    ( 8806): Unloading image System.Xml.ReaderWriter.dll [0x8a4f9e00].
01-04 02:17:35.551 D/Mono    ( 8806): Image addref System.Xml.ReaderWriter[0x8a0a17e0] -> System.Xml.ReaderWriter.dll[0x8a407e00]: 5
01-04 02:17:35.551 D/Mono    ( 8806): Config attempting to parse: 'System.Xml.ReaderWriter.dll.config'.
01-04 02:17:35.551 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Xml.ReaderWriter/System.Xml.ReaderWriter.config'.
01-04 02:17:35.552 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Xml.ReaderWriter[0x8a85c340]: 3
01-04 02:17:35.554 D/Mono    ( 8806): Unloading image System.Reflection.dll [0x8a4f9e00].
01-04 02:17:35.554 D/Mono    ( 8806): Image addref System.Reflection[0x8a0a17e0] -> System.Reflection.dll[0x8a85f900]: 6
01-04 02:17:35.554 D/Mono    ( 8806): Config attempting to parse: 'System.Reflection.dll.config'.
01-04 02:17:35.554 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection/System.Reflection.config'.
01-04 02:17:35.554 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Reflection[0x8a85a000]: 4
01-04 02:17:35.563 D/Mono    ( 8806): Unloading image System.IO.dll [0x8a4f9e00].
01-04 02:17:35.563 D/Mono    ( 8806): Image addref System.IO[0x8a0a16c0] -> System.IO.dll[0x8a40ab00]: 5
01-04 02:17:35.563 D/Mono    ( 8806): Config attempting to parse: 'System.IO.dll.config'.
01-04 02:17:35.563 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.IO/System.IO.config'.
01-04 02:17:35.563 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.IO[0x8a85cdc0]: 3
Loaded assembly: System.Text.RegularExpressions.dll [External]01-04 02:17:35.563 D/Mono    ( 8806): Image addref System.Text.RegularExpressions[0x8a0a1600] -> System.Text.RegularExpressions.dll[0x8a4f9e00]: 2

01-04 02:17:35.563 D/Mono    ( 8806): Prepared to set up assembly 'System.Text.RegularExpressions' (System.Text.RegularExpressions.dll)
01-04 02:17:35.563 D/Mono    ( 8806): Assembly System.Text.RegularExpressions[0x8a0a1600] added to domain RootDomain, ref_count=1
01-04 02:17:35.564 D/Mono    ( 8806): AOT: image 'System.Text.RegularExpressions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Text.RegularExpressions.dll.so" not found
01-04 02:17:35.564 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Text.RegularExpressions.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Text.RegularExpressions.dll.so" not found
01-04 02:17:35.564 D/Mono    ( 8806): Config attempting to parse: 'System.Text.RegularExpressions.dll.config'.
01-04 02:17:35.564 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Text.RegularExpressions/System.Text.RegularExpressions.config'.
01-04 02:17:35.564 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Text.RegularExpressions[0x8a0a1600]: 2
01-04 02:17:35.564 D/Mono    ( 8806): Assembly Ref addref System.Text.RegularExpressions[0x8a0a1600] -> System[0x8a85b560]: 7
01-04 02:17:35.716 D/Mono    ( 8806): Assembly Ref addref System.Xml[0x8a85c3a0] -> System[0x8a85b560]: 8
01-04 02:17:35.861 D/Mono    ( 8806): Unloading image System.Linq.dll [0x8a4fad00].
01-04 02:17:35.861 D/Mono    ( 8806): Image addref System.Linq[0x8a0a1e40] -> System.Linq.dll[0x8a85fe00]: 6
01-04 02:17:35.861 D/Mono    ( 8806): Config attempting to parse: 'System.Linq.dll.config'.
01-04 02:17:35.861 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq/System.Linq.config'.
01-04 02:17:35.861 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Linq[0x8a85a540]: 4
Thread started: <Thread Pool> #4
Thread started: <Thread Pool> #5
Thread started: <Thread Pool> #6
Thread started: <Thread Pool> #7
01-04 02:17:35.973 D/Mono    ( 8806): Assembly Ref addref TimingApp.Android[0xa904af20] -> System.Core[0x8a85a660]: 6
Resolved pending breakpoint at 'MainPage.xaml.cs:21,1' to void TimingApp.MainPage..ctor () [0x00021].
01-04 02:17:36.024 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:17:36.024 D/Mono    ( 8806): Searching for 'java_interop_jnienv_call_nonvirtual_boolean_method_a'.
01-04 02:17:36.024 D/Mono    ( 8806): Probing 'java_interop_jnienv_call_nonvirtual_boolean_method_a'.
01-04 02:17:36.024 D/Mono    ( 8806): Found as 'java_interop_jnienv_call_nonvirtual_boolean_method_a'.
01-04 02:17:36.100 D/Mono    ( 8806): Image addref System.ComponentModel[0x8a0a24a0] -> System.ComponentModel.dll[0x89d1a400]: 2
01-04 02:17:36.100 D/Mono    ( 8806): Prepared to set up assembly 'System.ComponentModel' (System.ComponentModel.dll)
01-04 02:17:36.100 D/Mono    ( 8806): Assembly System.ComponentModel[0x8a0a24a0] added to domain RootDomain, ref_count=1
01-04 02:17:36.100 D/Mono    ( 8806): AOT: image 'System.ComponentModel.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.ComponentModel.dll.so" not found
01-04 02:17:36.101 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.ComponentModel.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.ComponentModel.dll.so" not found
01-04 02:17:36.101 D/Mono    ( 8806): Config attempting to parse: 'System.ComponentModel.dll.config'.
01-04 02:17:36.101 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.ComponentModel/System.ComponentModel.config'.
01-04 02:17:36.101 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.ComponentModel[0x8a0a24a0]: 2
01-04 02:17:36.101 D/Mono    ( 8806): Assembly Ref addref System.ComponentModel[0x8a0a24a0] -> mscorlib[0xa904ada0]: 54
Loaded assembly: System.ComponentModel.dll [External]
01-04 02:17:36.111 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.ComponentModel[0x8a0a24a0]: 3
01-04 02:17:36.122 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Xaml[0xa904bc40] -> System.Reflection.Extensions[0x8a85a840]: 4
01-04 02:17:36.181 D/Mono    ( 8806): Unloading image System.ObjectModel.dll [0x89d19500].
01-04 02:17:36.182 D/Mono    ( 8806): Image addref System.ObjectModel[0x8a0a28c0] -> System.ObjectModel.dll[0x8a406f00]: 5
01-04 02:17:36.182 D/Mono    ( 8806): Config attempting to parse: 'System.ObjectModel.dll.config'.
01-04 02:17:36.182 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.ObjectModel/System.ObjectModel.config'.
01-04 02:17:36.182 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> System.ObjectModel[0xacc85240]: 3
01-04 02:17:36.186 D/Mono    ( 8806): Unloading image System.Linq.Expressions.dll [0x89d19500].
01-04 02:17:36.186 D/Mono    ( 8806): Image addref System.Linq.Expressions[0x8a0a28c0] -> System.Linq.Expressions.dll[0x8a4f8500]: 5
01-04 02:17:36.186 D/Mono    ( 8806): Config attempting to parse: 'System.Linq.Expressions.dll.config'.
01-04 02:17:36.186 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Linq.Expressions/System.Linq.Expressions.config'.
01-04 02:17:36.186 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> System.Linq.Expressions[0x8a85ce80]: 3
01-04 02:17:36.188 D/Mono    ( 8806): Unloading image System.Reflection.dll [0x89d19500].
01-04 02:17:36.188 D/Mono    ( 8806): Image addref System.Reflection[0x8a0a28c0] -> System.Reflection.dll[0x8a85f900]: 7
01-04 02:17:36.188 D/Mono    ( 8806): Config attempting to parse: 'System.Reflection.dll.config'.
01-04 02:17:36.188 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Reflection/System.Reflection.config'.
01-04 02:17:36.188 D/Mono    ( 8806): Assembly Ref addref Syncfusion.SfGauge.XForms[0xa904b4c0] -> System.Reflection[0x8a85a000]: 5
01-04 02:17:36.226 D/Mono    ( 8806): Assembly Ref addref System.Core[0x8a85a660] -> System[0x8a85b560]: 9
01-04 02:17:36.317 D/Mono    ( 8806): Image addref System.Diagnostics.Debug[0x8a0a2c20] -> System.Diagnostics.Debug.dll[0x89d19500]: 2
01-04 02:17:36.317 D/Mono    ( 8806): Prepared to set up assembly 'System.Diagnostics.Debug' (System.Diagnostics.Debug.dll)
01-04 02:17:36.317 D/Mono    ( 8806): Assembly System.Diagnostics.Debug[0x8a0a2c20] added to domain RootDomain, ref_count=1Loaded assembly: System.Diagnostics.Debug.dll [External]

01-04 02:17:36.317 D/Mono    ( 8806): AOT: image 'System.Diagnostics.Debug.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Diagnostics.Debug.dll.so" not found
01-04 02:17:36.317 D/Mono    ( 8806): AOT: image '/usr/local/lib/mono/aot-cache/x86/System.Diagnostics.Debug.dll.so' not found: dlopen failed: library "/data/app/com.biznizzle.TimingApp-1/lib/x86/libaot-System.Diagnostics.Debug.dll.so" not found
01-04 02:17:36.317 D/Mono    ( 8806): Config attempting to parse: 'System.Diagnostics.Debug.dll.config'.
01-04 02:17:36.317 D/Mono    ( 8806): Config attempting to parse: '/usr/local/etc/mono/assemblies/System.Diagnostics.Debug/System.Diagnostics.Debug.config'.
01-04 02:17:36.317 D/Mono    ( 8806): Assembly Ref addref Xamarin.Forms.Core[0xa904bb20] -> System.Diagnostics.Debug[0x8a0a2c20]: 2
01-04 02:17:36.317 D/Mono    ( 8806): Assembly Ref addref System.Diagnostics.Debug[0x8a0a2c20] -> mscorlib[0xa904ada0]: 55
01-04 02:17:36.442 D/Mono    ( 8806): Assembly Ref addref System.Collections[0x8a85a0c0] -> System.Core[0x8a85a660]: 7
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Resolved pending breakpoint at 'EntryTimer.cs:63,1' to System.TimeSpan TimingApp.EntryTimer.get_LegElapsed () [0x00001].
Resolved pending breakpoint at 'EntryTimer.cs:38,1' to void TimingApp.EntryTimer..ctor (TimingApp.EventTimingDefinition def) [0x0005f].
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Thread finished: <Thread Pool> #7
The thread 0x7 has exited with code 0 (0x0).
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Thread finished: <Thread Pool> #6
The thread 0x6 has exited with code 0 (0x0).
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Thread finished: <Thread Pool> #4
The thread 0x4 has exited with code 0 (0x0).
Thread started: <Thread Pool> #8
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
Error while resolving expression: Object reference not set to an instance of an object.
01-04 02:18:56.254 D/Mono    ( 8806): DllImport attempting to load: '__Internal'.
01-04 02:18:56.254 D/Mono    ( 8806): DllImport loaded library '(null)'.
01-04 02:18:56.254 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:18:56.254 D/Mono    ( 8806): Searching for 'monodroid_get_system_property'.
01-04 02:18:56.254 D/Mono    ( 8806): Probing 'monodroid_get_system_property'.
01-04 02:18:56.254 D/Mono    ( 8806): Found as 'monodroid_get_system_property'.
01-04 02:18:56.254 D/Mono    ( 8806): DllImport searching in: '__Internal' ('(null)').
01-04 02:18:56.254 D/Mono    ( 8806): Searching for 'monodroid_free'.
01-04 02:18:56.254 D/Mono    ( 8806): Probing 'monodroid_free'.
01-04 02:18:56.254 D/Mono    ( 8806): Found as 'monodroid_free'.
01-04 02:18:56.355 E/mono-rt ( 8806): Stacktrace:
01-04 02:18:56.355 E/mono-rt ( 8806): 
01-04 02:18:56.355 E/mono-rt ( 8806):   at <unknown> <0xffffffff>
01-04 02:18:56.355 E/mono-rt ( 8806):   at TimingApp.MainPage..ctor () [0x0002d] in C:\Users\andre\Source\Repos\TimingApp\TimingApp\TimingApp\MainPage.xaml.cs:22
01-04 02:18:56.355 E/mono-rt ( 8806):   at TimingApp.App..ctor () [0x0000f] in C:\Users\andre\Source\Repos\TimingApp\TimingApp\TimingApp\App.xaml.cs:21
01-04 02:18:56.355 E/mono-rt ( 8806):   at TimingApp.Droid.MainActivity.OnCreate (Android.OS.Bundle) [0x00033] in C:\Users\andre\Source\Repos\TimingApp\TimingApp\TimingApp.Android\MainActivity.cs:25
01-04 02:18:56.355 E/mono-rt ( 8806):   at Android.Support.V4.App.FragmentActivity.n_OnCreate_Landroid_os_Bundle_ (intptr,intptr,intptr) [0x00011] in <1e89c43d3c7d48b5ba69bfc0b1bdf114>:0
01-04 02:18:56.355 E/mono-rt ( 8806):   at (wrapper dynamic-method) object.c5904011-782d-4abc-bebd-b385fe0b6d4a (intptr,intptr,intptr) [0x00017] in <657aa8fea4454dc898a9e5f379c58734>:0
01-04 02:18:56.356 E/mono-rt ( 8806):   at (wrapper native-to-managed) object.c5904011-782d-4abc-bebd-b385fe0b6d4a (intptr,intptr,intptr) [0x00022] in <657aa8fea4454dc898a9e5f379c58734>:0
01-04 02:18:56.356 E/mono-rt ( 8806): /proc/self/maps:
01-04 02:18:56.356 E/mono-rt ( 8806): 12c00000-12e17000 rw-p 00000000 00:04 5377       /dev/ashmem/dalvik-main space (deleted)
01-04 02:18:56.356 E/mono-rt ( 8806): 12e17000-22c00000 ---p 00217000 00:04 5377       /dev/ashmem/dalvik-main space (deleted)
01-04 02:18:56.356 E/mono-rt ( 8806): 22c00000-22c01000 rw-p 00000000 00:04 5378       /dev/ashmem/dalvik-main space 1 (deleted)
01-04 02:18:56.356 E/mono-rt ( 8806): 22c01000-32c00000 ---p 00001000 00:04 5378       /dev/ashmem/dalvik-main space 1 (deleted)
01-04 02:18:56.356 E/mono-rt ( 8806): 70ed6000-710d8000 rw-p 00000000 fd:20 7065       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 710d8000-711f3000 rw-p 00000000 fd:20 7066       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 711f3000-7121d000 rw-p 00000000 fd:20 7067       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 7121d000-71247000 rw-p 00000000 fd:20 7068       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 71247000-71249000 rw-p 00000000 fd:20 7069       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 71249000-71281000 rw-p 00000000 fd:20 7070       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 71281000-712b8000 rw-p 00000000 fd:20 7071       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 712b8000-71870000 rw-p 00000000 fd:20 7072       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 71870000-718ee000 rw-p 00000000 fd:20 7073       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 718ee000-718f4000 rw-p 00000000 fd:20 7074       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 718f4000-718ff000 rw-p 00000000 fd:20 7075       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 718ff000-71917000 rw-p 00000000 fd:20 7076       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 71917000-71937000 rw-p 00000000 fd:20 7077       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.356 E/mono-rt ( 8806): 71937000-71e57000 r--p 00000000 fd:00 1052       /system/framework/x86/boot.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 71e57000-72212000 r-xp 00520000 fd:00 1052       /system/framework/x86/boot.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72212000-72213000 r--p 008db000 fd:00 1052       /system/framework/x86/boot.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72213000-72214000 rw-p 008dc000 fd:00 1052       /system/framework/x86/boot.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72214000-72695000 r--p 00000000 fd:00 1036       /system/framework/x86/boot-core-libart.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72695000-72982000 r-xp 00481000 fd:00 1036       /system/framework/x86/boot-core-libart.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72982000-72983000 r--p 0076e000 fd:00 1036       /system/framework/x86/boot-core-libart.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72983000-72984000 rw-p 0076f000 fd:00 1036       /system/framework/x86/boot-core-libart.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72984000-729ef000 r--p 00000000 fd:00 1032       /system/framework/x86/boot-conscrypt.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 729ef000-72a3e000 r-xp 0006b000 fd:00 1032       /system/framework/x86/boot-conscrypt.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72a3e000-72a3f000 r--p 000ba000 fd:00 1032       /system/framework/x86/boot-conscrypt.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72a3f000-72a40000 rw-p 000bb000 fd:00 1032       /system/framework/x86/boot-conscrypt.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72a40000-72ac6000 r--p 00000000 fd:00 1044       /system/framework/x86/boot-okhttp.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72ac6000-72b24000 r-xp 00086000 fd:00 1044       /system/framework/x86/boot-okhttp.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b24000-72b25000 r--p 000e4000 fd:00 1044       /system/framework/x86/boot-okhttp.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b25000-72b26000 rw-p 000e5000 fd:00 1044       /system/framework/x86/boot-okhttp.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b26000-72b2f000 r--p 00000000 fd:00 1034       /system/framework/x86/boot-core-junit.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b2f000-72b32000 r-xp 00009000 fd:00 1034       /system/framework/x86/boot-core-junit.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b32000-72b33000 r--p 0000c000 fd:00 1034       /system/framework/x86/boot-core-junit.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b33000-72b34000 rw-p 0000d000 fd:00 1034       /system/framework/x86/boot-core-junit.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72b34000-72c9e000 r--p 00000000 fd:00 1030       /system/framework/x86/boot-bouncycastle.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72c9e000-72ce1000 r-xp 0016a000 fd:00 1030       /system/framework/x86/boot-bouncycastle.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72ce1000-72ce2000 r--p 001ad000 fd:00 1030       /system/framework/x86/boot-bouncycastle.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72ce2000-72ce3000 rw-p 001ae000 fd:00 1030       /system/framework/x86/boot-bouncycastle.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72ce3000-72dfe000 r--p 00000000 fd:00 1038       /system/framework/x86/boot-ext.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72dfe000-72e3d000 r-xp 0011b000 fd:00 1038       /system/framework/x86/boot-ext.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72e3d000-72e3e000 r--p 0015a000 fd:00 1038       /system/framework/x86/boot-ext.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72e3e000-72e3f000 rw-p 0015b000 fd:00 1038       /system/framework/x86/boot-ext.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 72e3f000-743c4000 r--p 00000000 fd:00 1040       /system/framework/x86/boot-framework.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 743c4000-752e8000 r-xp 01585000 fd:00 1040       /system/framework/x86/boot-framework.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 752e8000-752e9000 r--p 024a9000 fd:00 1040       /system/framework/x86/boot-framework.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 752e9000-752ea000 rw-p 024aa000 fd:00 1040       /system/framework/x86/boot-framework.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 752ea000-755b8000 r--p 00000000 fd:00 1048       /system/framework/x86/boot-telephony-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 755b8000-75797000 r-xp 002ce000 fd:00 1048       /system/framework/x86/boot-telephony-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75797000-75798000 r--p 004ad000 fd:00 1048       /system/framework/x86/boot-telephony-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75798000-75799000 rw-p 004ae000 fd:00 1048       /system/framework/x86/boot-telephony-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75799000-757c8000 r--p 00000000 fd:00 1050       /system/framework/x86/boot-voip-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 757c8000-757d8000 r-xp 0002f000 fd:00 1050       /system/framework/x86/boot-voip-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 757d8000-757d9000 r--p 0003f000 fd:00 1050       /system/framework/x86/boot-voip-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 757d9000-757da000 rw-p 00040000 fd:00 1050       /system/framework/x86/boot-voip-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 757da000-75804000 r--p 00000000 fd:00 1042       /system/framework/x86/boot-ims-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75804000-7581e000 r-xp 0002a000 fd:00 1042       /system/framework/x86/boot-ims-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 7581e000-7581f000 r--p 00044000 fd:00 1042       /system/framework/x86/boot-ims-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 7581f000-75820000 rw-p 00045000 fd:00 1042       /system/framework/x86/boot-ims-common.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75820000-75970000 r--p 00000000 fd:00 1028       /system/framework/x86/boot-apache-xml.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75970000-75995000 r-xp 00150000 fd:00 1028       /system/framework/x86/boot-apache-xml.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75995000-75996000 r--p 00175000 fd:00 1028       /system/framework/x86/boot-apache-xml.oat
01-04 02:18:56.356 E/mono-rt ( 8806): 75996000-75997000 rw-p 00176000 fd:00 1028       /system/framework/x86/boot-apache-xml.oat
01-04 02:18:56.357 E/mono-rt ( 8806): 75997000-75a3e000 r--p 00000000 fd:00 1046       /system/framework/x86/boot-org.apache.http.legacy.boot.oat
01-04 02:18:56.357 E/mono-rt ( 8806): 75a3e000-75aab000 r-xp 000a7000 fd:00 1046       /system/framework/x86/boot-org.apache.http.legacy.boot.oat
01-04 02:18:56.357 E/mono-rt ( 8806): 75aab000-75aac000 r--p 00114000 fd:00 1046       /system/framework/x86/boot-org.apache.http.legacy.boot.oat
01-04 02:18:56.357 E/mono-rt ( 8806): 75aac000-75aad000 rw-p 00115000 fd:00 1046       /system/framework/x86/boot-org.apache.http.legacy.boot.oat
01-04 02:18:56.357 E/mono-rt ( 8806): 75aad000-75bbb000 rw-p 00000000 00:04 5376       /dev/ashmem/dalvik-zygote space (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 75bbb000-75bbc000 rw-p 00000000 00:04 5736       /dev/ashmem/dalvik-non moving space (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 75bbc000-75bbf000 rw-p 00001000 00:04 5736       /dev/ashmem/dalvik-non moving space (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 75bbf000-796ae000 ---p 00004000 00:04 5736       /dev/ashmem/dalvik-non moving space (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 796ae000-79aad000 rw-p 03af3000 00:04 5736       /dev/ashmem/dalvik-non moving space (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 89380000-89580000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 895af000-895ff000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 89700000-89780000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 8978d000-897cd000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 897cd000-897ce000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.357 E/mono-rt ( 8806): 897ce000-897cf000 ---p 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 897cf000-898ce000 rw-p 00000000 00:00 0          [stack:8845]
01-04 02:18:56.357 E/mono-rt ( 8806): 898ce000-898cf000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.357 E/mono-rt ( 8806): 898cf000-898d0000 ---p 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 898d0000-899cf000 rw-p 00000000 00:00 0          [stack:8835]
01-04 02:18:56.357 E/mono-rt ( 8806): 89aa0000-89b00000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 89b00000-89e80000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 89e8d000-89f00000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 89f00000-8a000000 rw-p 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a000000-8a080000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a080000-8a200000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a20f000-8a22f000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a22f000-8a24f000 rw-p 00000000 00:04 62527      /dev/ashmem/dalvik-LinearAlloc (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 8a24f000-8a27f000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a27f000-8a280000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a280000-8a281000 ---p 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a281000-8a380000 rw-p 00000000 00:00 0          [stack:8829]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a380000-8a580000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a585000-8a586000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a586000-8a588000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a588000-8a5eb000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a5eb000-8a600000 r--p 00000000 00:15 88         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.pdb
01-04 02:18:56.357 E/mono-rt ( 8806): 8a600000-8a680000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a680000-8a682000 rw-p 00000000 00:04 62532      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 8a684000-8a685000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a685000-8a687000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a688000-8a68a000 rw-p 00000000 00:04 62411      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 8a68a000-8a6c0000 r--p 00000000 00:15 81         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.Android.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8a6c0000-8a6d0000 r--p 00000000 00:15 80         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8a6d0000-8a700000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a700000-8a880000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a881000-8a882000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a882000-8a884000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.357 E/mono-rt ( 8806): 8a884000-8a888000 r--p 00000000 00:15 87         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Interactive.pdb
01-04 02:18:56.357 E/mono-rt ( 8806): 8a888000-8a8a8000 rwxp 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8a8a8000-8a8b0000 r--p 00000000 00:15 86         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll.mdb
01-04 02:18:56.357 E/mono-rt ( 8806): 8a8b0000-8a8c4000 r--p 00000000 00:15 79         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Xaml.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8a8c4000-8a8c9000 r--p 00000000 00:15 78         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8a8c9000-8a8ed000 r--p 00000000 00:15 85         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll.mdb
01-04 02:18:56.357 E/mono-rt ( 8806): 8a8ed000-8a939000 r--p 00000000 00:15 77         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Platform.Android.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8a939000-8a979000 r--p 00000000 00:15 84         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll.mdb
01-04 02:18:56.357 E/mono-rt ( 8806): 8a979000-8aa06000 r--p 00000000 00:15 76         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Forms.Core.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8aa06000-8aa17000 r--p 00000000 00:15 75         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Vector.Drawable.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8aa17000-8aaef000 r--p 00000000 00:15 74         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.RecyclerView.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8aaef000-8aafe000 r--p 00000000 00:15 73         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.Palette.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8aafe000-8abc2000 r--p 00000000 00:15 72         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.MediaRouter.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8abc2000-8abd0000 r--p 00000000 00:15 71         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.CardView.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8abd0000-8add9000 r--p 00000000 00:15 70         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v7.AppCompat.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8add9000-8ade3000 r--p 00000000 00:15 69         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.v4.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8ade3000-8ae09000 r--p 00000000 00:15 68         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Transition.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8ae09000-8aec4000 r--p 00000000 00:15 67         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Media.Compat.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8aec4000-8af24000 r--p 00000000 00:15 66         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Fragment.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8af24000-8afe7000 r--p 00000000 00:15 65         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Design.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8afe7000-8b023000 r--p 00000000 00:15 64         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.Utils.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b023000-8b0b4000 r--p 00000000 00:15 63         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Core.UI.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b0b4000-8b344000 r--p 00000000 00:15 62         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Compat.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b344000-8b363000 r--p 00000000 00:15 61         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Annotations.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b363000-8b374000 r--p 00000000 00:15 60         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Xamarin.Android.Support.Animated.Vector.Drawable.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b374000-8b380000 r--p 00000000 00:15 59         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b380000-8b38c000 r--p 00000000 00:15 58         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.XForms.Android.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b38c000-8b3bf000 r--p 00000000 00:15 57         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.SfGauge.Android.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b3bf000-8b3d8000 r--p 00000000 00:15 89         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.Android.Bindings.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b3d8000-8b400000 r--p 00000000 00:15 53         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.Android.Bindings.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8b400000-8c000000 rw-p 00000000 00:00 0 
01-04 02:18:56.357 E/mono-rt ( 8806): 8c000000-8c002000 rw-p 00000000 00:04 62390      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.357 E/mono-rt ( 8806): 8c002000-8c004000 r--p 00000000 00:15 56         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Syncfusion.Core.XForms.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8c004000-8c00b000 r--p 00000000 00:15 55         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8c00b000-8c011000 r--p 00000000 00:15 90         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Distribute.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8c011000-8c019000 r--p 00000000 00:15 54         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Crashes.dll
01-04 02:18:56.357 E/mono-rt ( 8806): 8c019000-8c070000 r--p 00000000 00:15 52         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Android.Bindings.dll
01-04 02:18:56.358 E/mono-rt ( 8806): 8c070000-8c074000 r--p 00000000 00:15 51         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.dll
01-04 02:18:56.358 E/mono-rt ( 8806): 8c074000-8c083000 r--p 00000000 00:15 50         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/Microsoft.AppCenter.Analytics.Android.Bindings.dll
01-04 02:18:56.358 E/mono-rt ( 8806): 8c083000-8c089000 r--p 00000000 00:15 49         /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/FormsViewGroup.dll
01-04 02:18:56.358 E/mono-rt ( 8806): 8c089000-8c0b2000 r--p 00000000 00:15 133        /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll
01-04 02:18:56.358 E/mono-rt ( 8806): 8c0b2000-8c0b3000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 8c0b3000-8c0b4000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c0b4000-8c1b3000 rw-p 00000000 00:00 0          [stack:8825]
01-04 02:18:56.358 E/mono-rt ( 8806): 8c1b3000-8c1b4000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 8c1b4000-8c1b5000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c1b5000-8c2b4000 rw-p 00000000 00:00 0          [stack:8824]
01-04 02:18:56.358 E/mono-rt ( 8806): 8c2b4000-8c334000 rw-p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c335000-8c345000 rwxp 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c345000-8c346000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 8c346000-8c444000 rw-p 00000000 00:00 0          [stack:8821]
01-04 02:18:56.358 E/mono-rt ( 8806): 8c444000-8c445000 rw-p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c445000-8c474000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c474000-8c484000 rwxp 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 8c484000-8e5bc000 r--p 00000000 fd:20 446        /data/app/Mono.Android.DebugRuntime-1/base.apk
01-04 02:18:56.358 E/mono-rt ( 8806): 8e5bc000-8fd4b000 r--p 00000000 fd:20 457        /data/app/Mono.Android.Platform.ApiLevel_25-1/base.apk
01-04 02:18:56.358 E/mono-rt ( 8806): 8fd4b000-90248000 r--p 00000000 fd:20 463        /data/app/com.biznizzle.TimingApp-1/base.apk
01-04 02:18:56.358 E/mono-rt ( 8806): 90248000-9059a000 r-xp 00000000 fd:20 449        /data/app/Mono.Android.DebugRuntime-1/lib/x86/libmonosgen-32bit-2.0.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9059a000-905a0000 rw-p 00351000 fd:20 449        /data/app/Mono.Android.DebugRuntime-1/lib/x86/libmonosgen-32bit-2.0.so
01-04 02:18:56.358 E/mono-rt ( 8806): 905a0000-905cb000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.358 E/mono-rt ( 8806): 905cb000-905f2000 r-xp 00000000 fd:20 469        /data/app/com.biznizzle.TimingApp-1/lib/x86/libmonodroid.so
01-04 02:18:56.358 E/mono-rt ( 8806): 905f2000-905f3000 r--p 00026000 fd:20 469        /data/app/com.biznizzle.TimingApp-1/lib/x86/libmonodroid.so
01-04 02:18:56.358 E/mono-rt ( 8806): 905f3000-905f4000 rw-p 00027000 fd:20 469        /data/app/com.biznizzle.TimingApp-1/lib/x86/libmonodroid.so
01-04 02:18:56.358 E/mono-rt ( 8806): 905f4000-90659000 r--s 0009c000 fd:20 463        /data/app/com.biznizzle.TimingApp-1/base.apk
01-04 02:18:56.358 E/mono-rt ( 8806): 90659000-9065a000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 9065a000-9065b000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 9065b000-90758000 rw-p 00000000 00:00 0          [stack:8820]
01-04 02:18:56.358 E/mono-rt ( 8806): 90758000-90bc5000 r--p 00000000 fd:20 476        /data/app/com.biznizzle.TimingApp-1/oat/x86/base.odex
01-04 02:18:56.358 E/mono-rt ( 8806): 90bc5000-90c68000 r-xp 0046d000 fd:20 476        /data/app/com.biznizzle.TimingApp-1/oat/x86/base.odex
01-04 02:18:56.358 E/mono-rt ( 8806): 90c68000-90ccb000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.358 E/mono-rt ( 8806): 90ccb000-90ccc000 r--p 00510000 fd:20 476        /data/app/com.biznizzle.TimingApp-1/oat/x86/base.odex
01-04 02:18:56.358 E/mono-rt ( 8806): 90ccc000-90ccd000 rw-p 00511000 fd:20 476        /data/app/com.biznizzle.TimingApp-1/oat/x86/base.odex
01-04 02:18:56.358 E/mono-rt ( 8806): 90ccd000-90cce000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 90cce000-90ccf000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 90ccf000-90dcc000 rw-p 00000000 00:00 0          [stack:8816]
01-04 02:18:56.358 E/mono-rt ( 8806): 90dcc000-90dcd000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 90dcd000-90dce000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 90dce000-90ecb000 rw-p 00000000 00:00 0          [stack:8815]
01-04 02:18:56.358 E/mono-rt ( 8806): 90ecb000-90ecc000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 90ecc000-90ecd000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 90ecd000-90fd0000 rw-p 00000000 00:00 0          [stack:8814]
01-04 02:18:56.358 E/mono-rt ( 8806): 90fd0000-90fd1000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.358 E/mono-rt ( 8806): 90fd1000-90fd2000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 90fd2000-910d5000 rw-p 00000000 00:00 0          [stack:8813]
01-04 02:18:56.358 E/mono-rt ( 8806): 910d5000-930d5000 rw-p 00000000 00:04 62331      /dev/ashmem/dalvik-data-code-cache (deleted)
01-04 02:18:56.358 E/mono-rt ( 8806): 930d5000-950d5000 r-xp 00000000 00:04 62332      /dev/ashmem/dalvik-jit-code-cache (deleted)
01-04 02:18:56.358 E/mono-rt ( 8806): 950d5000-954d5000 rw-p 00000000 00:04 5735       /dev/ashmem/dalvik-allocspace main rosalloc space mark-bitmap 3 (deleted)
01-04 02:18:56.358 E/mono-rt ( 8806): 954d5000-9d866000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 9d866000-9d886000 r-xp 00000000 fd:00 1157       /system/lib/libcompiler_rt.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d886000-9d887000 r--p 0001f000 fd:00 1157       /system/lib/libcompiler_rt.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d887000-9d888000 rw-p 00020000 fd:00 1157       /system/lib/libcompiler_rt.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d888000-9d89b000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.358 E/mono-rt ( 8806): 9d89b000-9d8b4000 r-xp 00000000 fd:00 1062       /system/lib/egl/libGLESv2_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8b4000-9d8b6000 r--p 00018000 fd:00 1062       /system/lib/egl/libGLESv2_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8b6000-9d8b7000 rw-p 0001a000 fd:00 1062       /system/lib/egl/libGLESv2_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8b7000-9d8e1000 r-xp 00000000 fd:00 1059       /system/lib/egl/libEGL_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8e1000-9d8e2000 r--p 00029000 fd:00 1059       /system/lib/egl/libEGL_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8e2000-9d8e3000 rw-p 0002a000 fd:00 1059       /system/lib/egl/libEGL_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8e3000-9d8ed000 r-xp 00000000 fd:00 1107       /system/lib/lib_renderControl_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8ed000-9d8ee000 r--p 00009000 fd:00 1107       /system/lib/lib_renderControl_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8ee000-9d8ef000 rw-p 0000a000 fd:00 1107       /system/lib/lib_renderControl_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8ef000-9d8f6000 r-xp 00000000 fd:00 1099       /system/lib/libOpenglSystemCommon.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8f6000-9d8f7000 r--p 00006000 fd:00 1099       /system/lib/libOpenglSystemCommon.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8f7000-9d8f8000 rw-p 00007000 fd:00 1099       /system/lib/libOpenglSystemCommon.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d8f8000-9d96e000 r-xp 00000000 fd:00 1094       /system/lib/libGLESv2_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d96e000-9d96f000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 9d96f000-9d970000 r--p 00076000 fd:00 1094       /system/lib/libGLESv2_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d970000-9d971000 rw-p 00077000 fd:00 1094       /system/lib/libGLESv2_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d971000-9d9b7000 r-xp 00000000 fd:00 1092       /system/lib/libGLESv1_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9b7000-9d9b8000 r--p 00045000 fd:00 1092       /system/lib/libGLESv1_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9b8000-9d9b9000 rw-p 00046000 fd:00 1092       /system/lib/libGLESv1_enc.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9ba000-9d9bc000 r--p 00000000 00:15 134        /storage/emulated/0/Android/data/com.biznizzle.TimingApp/files/.__override__/TimingApp.Android.dll.mdb
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9bc000-9d9be000 r-xp 00000000 fd:00 1344       /system/lib/libwebviewchromium_loader.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9be000-9d9bf000 r--p 00001000 fd:00 1344       /system/lib/libwebviewchromium_loader.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9bf000-9d9c0000 rw-p 00002000 fd:00 1344       /system/lib/libwebviewchromium_loader.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9c0000-9d9d2000 r-xp 00000000 fd:00 1061       /system/lib/egl/libGLESv1_CM_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9d2000-9d9d3000 ---p 00000000 00:00 0 
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9d3000-9d9d4000 r--p 00012000 fd:00 1061       /system/lib/egl/libGLESv1_CM_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9d4000-9d9d5000 rw-p 00013000 fd:00 1061       /system/lib/egl/libGLESv1_CM_emulation.so
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9d6000-9d9ea000 r--s 004e9000 fd:20 463        /data/app/com.biznizzle.TimingApp-1/base.apk
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9ea000-9d9f3000 rw-p 00000000 00:04 5720       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9f3000-9d9fc000 rw-p 00000000 00:04 5718       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.358 E/mono-rt ( 8806): 9d9fc000-9da03000 rw-p 00000000 00:04 5716       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.358 E/mono-rt ( 8806): 9da03000-9da0a000 rw-p 00000000 00:04 5715       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd65000-9fd69000 rw-p 00000000 00:04 5470       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd69000-9fd6a000 rw-p 00000000 00:00 0          [anon:linker_alloc_vector]
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd6a000-9fd6b000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd6b000-9fd6d000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd6d000-9fd72000 rw-p 00000000 00:04 5468       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd72000-9fd7b000 rw-p 00000000 00:04 5467       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd7b000-9fd7c000 r--s 00000000 00:04 8223       /dev/ashmem/56f67008-2abf-417b-9cdd-2e1bf2322fe9 (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd7c000-9fd90000 rw-p 00000000 00:04 5641       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd90000-9fd9a000 rw-p 00000000 00:04 5640       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fd9a000-9fe14000 r--s 00000000 fd:00 1903       /system/usr/share/zoneinfo/tzdata
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe14000-9fe19000 rw-p 00000000 00:04 5719       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe19000-9fe1f000 rw-p 00000000 00:04 5461       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe1f000-9fe25000 rw-p 00000000 00:04 5460       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe25000-9fe33000 rw-p 00000000 00:04 5459       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe33000-9fe3d000 rw-p 00000000 00:04 5458       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe3d000-9fe42000 rw-p 00000000 00:04 5457       /dev/ashmem/dalvik-large object space allocation (deleted)
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe42000-9fe4c000 r--s 00000000 fd:00 810        /system/fonts/CarroisGothicSC-Regular.ttf
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe4c000-9fe69000 r--s 00000000 fd:00 813        /system/fonts/DancingScript-Bold.ttf
01-04 02:18:56.360 E/mono-rt ( 8806): 9fe69000-9fe86000 r--s 00000000 fd:00 814        /system/fonts/DancingScript-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9fe86000-9fe95000 r--s 00000000 fd:00 811        /system/fonts/ComingSoon.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9fe95000-9fea6000 r--s 00000000 fd:00 812        /system/fonts/CutiveMono.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9fea6000-9fec1000 r--s 00000000 fd:00 817        /system/fonts/DroidSansMono.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9fec1000-9ff02000 r--s 00000000 fd:00 928        /system/fonts/NotoSerif-BoldItalic.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9ff02000-9ff3f000 r--s 00000000 fd:00 929        /system/fonts/NotoSerif-Italic.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9ff3f000-9ff7c000 r--s 00000000 fd:00 927        /system/fonts/NotoSerif-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9ff7c000-9ffb9000 r--s 00000000 fd:00 930        /system/fonts/NotoSerif-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): 9ffb9000-a000a000 r--s 00000000 fd:00 944        /system/fonts/RobotoCondensed-BoldItalic.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a000a000-a0054000 r--s 00000000 fd:00 943        /system/fonts/RobotoCondensed-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0054000-a00a5000 r--s 00000000 fd:00 945        /system/fonts/RobotoCondensed-Italic.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a00a5000-a00f0000 r--s 00000000 fd:00 948        /system/fonts/RobotoCondensed-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a00f0000-a0142000 r--s 00000000 fd:00 947        /system/fonts/RobotoCondensed-LightItalic.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0142000-a018d000 r--s 00000000 fd:00 946        /system/fonts/RobotoCondensed-Light.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a018d000-a01a9000 r--s 00000000 fd:00 883        /system/fonts/NotoSansMongolian-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a01a9000-a01ac000 r--s 00000000 fd:00 905        /system/fonts/NotoSansTaiLe-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a01ac000-a01b0000 r--s 00000000 fd:00 902        /system/fonts/NotoSansSymbols-Regular-Subsetted2.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a01b0000-a0755000 r--s 00000000 fd:00 818        /system/fonts/NotoColorEmoji.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0755000-a079c000 r--s 00000000 fd:00 901        /system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a079c000-a07bb000 r--s 00000000 fd:00 926        /system/fonts/NotoSansYi-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a07bb000-a07cb000 r--s 00000000 fd:00 925        /system/fonts/NotoSansVai-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a07cb000-a07cf000 r--s 00000000 fd:00 924        /system/fonts/NotoSansTifinagh-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a07cf000-a082b000 r--s 00000000 fd:00 922        /system/fonts/NotoSansTibetan-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a082b000-a088e000 r--s 00000000 fd:00 923        /system/fonts/NotoSansTibetan-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a088e000-a0892000 r--s 00000000 fd:00 907        /system/fonts/NotoSansTaiViet-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0892000-a089e000 r--s 00000000 fd:00 906        /system/fonts/NotoSansTaiTham-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a089e000-a08a0000 r--s 00000000 fd:00 904        /system/fonts/NotoSansTagbanwa-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08a0000-a08ac000 r--s 00000000 fd:00 903        /system/fonts/NotoSansSyriacEstrangela-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08ac000-a08b0000 r--s 00000000 fd:00 900        /system/fonts/NotoSansSylotiNagri-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08b0000-a08b3000 r--s 00000000 fd:00 899        /system/fonts/NotoSansSundanese-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08b3000-a08b8000 r--s 00000000 fd:00 896        /system/fonts/NotoSansSaurashtra-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08b8000-a08ba000 r--s 00000000 fd:00 895        /system/fonts/NotoSansRejang-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08ba000-a08bf000 r--s 00000000 fd:00 888        /system/fonts/NotoSansNKo-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08bf000-a08c3000 r--s 00000000 fd:00 889        /system/fonts/NotoSansNewTaiLue-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08c3000-a08c7000 r--s 00000000 fd:00 882        /system/fonts/NotoSansMeeteiMayek-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08c7000-a08cb000 r--s 00000000 fd:00 881        /system/fonts/NotoSansMandaic-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08cb000-a08ce000 r--s 00000000 fd:00 875        /system/fonts/NotoSansLimbu-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08ce000-a08e7000 r--s 00000000 fd:00 874        /system/fonts/NotoSansLepcha-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08e7000-a08f1000 r--s 00000000 fd:00 860        /system/fonts/NotoSansJavanese-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08f1000-a08f7000 r--s 00000000 fd:00 839        /system/fonts/NotoSansCoptic-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a08f7000-a0900000 r--s 00000000 fd:00 838        /system/fonts/NotoSansCherokee-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0900000-a090c000 r--s 00000000 fd:00 835        /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a090c000-a092d000 r--s 00000000 fd:00 826        /system/fonts/NotoSansBamum-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a092d000-a0935000 r--s 00000000 fd:00 825        /system/fonts/NotoSansBalinese-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0935000-a094f000 r--s 00000000 fd:00 886        /system/fonts/NotoSansMyanmarUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a094f000-a0969000 r--s 00000000 fd:00 887        /system/fonts/NotoSansMyanmarUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0969000-a0984000 r--s 00000000 fd:00 884        /system/fonts/NotoSansMyanmar-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0984000-a099f000 r--s 00000000 fd:00 885        /system/fonts/NotoSansMyanmar-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a099f000-a09a7000 r--s 00000000 fd:00 872        /system/fonts/NotoSansLaoUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a09a7000-a09af000 r--s 00000000 fd:00 873        /system/fonts/NotoSansLaoUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a09af000-a09b7000 r--s 00000000 fd:00 870        /system/fonts/NotoSansLao-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a09b7000-a09bf000 r--s 00000000 fd:00 871        /system/fonts/NotoSansLao-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a09bf000-a09e5000 r--s 00000000 fd:00 897        /system/fonts/NotoSansSinhala-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a09e5000-a0a0d000 r--s 00000000 fd:00 898        /system/fonts/NotoSansSinhala-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a0d000-a0a21000 r--s 00000000 fd:00 893        /system/fonts/NotoSansOriyaUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a21000-a0a35000 r--s 00000000 fd:00 894        /system/fonts/NotoSansOriyaUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a35000-a0a4a000 r--s 00000000 fd:00 891        /system/fonts/NotoSansOriya-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a4a000-a0a5f000 r--s 00000000 fd:00 892        /system/fonts/NotoSansOriya-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a5f000-a0a73000 r--s 00000000 fd:00 863        /system/fonts/NotoSansKannadaUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a73000-a0a87000 r--s 00000000 fd:00 864        /system/fonts/NotoSansKannadaUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a87000-a0a9b000 r--s 00000000 fd:00 861        /system/fonts/NotoSansKannada-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0a9b000-a0ab0000 r--s 00000000 fd:00 862        /system/fonts/NotoSansKannada-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0ab0000-a0acc000 r--s 00000000 fd:00 914        /system/fonts/NotoSansTeluguUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0acc000-a0ae8000 r--s 00000000 fd:00 915        /system/fonts/NotoSansTeluguUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0ae8000-a0b03000 r--s 00000000 fd:00 912        /system/fonts/NotoSansTelugu-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b03000-a0b1f000 r--s 00000000 fd:00 913        /system/fonts/NotoSansTelugu-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b1f000-a0b39000 r--s 00000000 fd:00 830        /system/fonts/NotoSansBengaliUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b39000-a0b54000 r--s 00000000 fd:00 831        /system/fonts/NotoSansBengaliUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b54000-a0b6d000 r--s 00000000 fd:00 828        /system/fonts/NotoSansBengali-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b6d000-a0b86000 r--s 00000000 fd:00 829        /system/fonts/NotoSansBengali-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b86000-a0b94000 r--s 00000000 fd:00 879        /system/fonts/NotoSansMalayalamUI-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0b94000-a0bb1000 r--s 00000000 fd:00 852        /system/fonts/NotoSansGujaratiUI-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0bb1000-a0bce000 r--s 00000000 fd:00 849        /system/fonts/NotoSansGujarati-Bold.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0bce000-a0bec000 r--s 00000000 fd:00 850        /system/fonts/NotoSansGujarati-Regular.ttf
01-04 02:18:56.361 E/mono-rt ( 8806): a0bec000-a0c0a000 r--s 00000000 fd:00 842        /system/fonts/NotoSansDevanagariUI-Bold.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0c0a000-a0c29000 r--s 00000000 fd:00 843        /system/fonts/NotoSansDevanagariUI-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0c29000-a0c4a000 r--s 00000000 fd:00 840        /system/fonts/NotoSansDevanagari-Bold.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0c4a000-a0c6c000 r--s 00000000 fd:00 841        /system/fonts/NotoSansDevanagari-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0c6c000-a0c90000 r--s 00000000 fd:00 844        /system/fonts/NotoSansEthiopic-Bold.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0c90000-a0ce1000 r--s 00000000 fd:00 934        /system/fonts/Roboto-BoldItalic.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0ce1000-a0d2c000 r--s 00000000 fd:00 933        /system/fonts/Roboto-Bold.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0d2c000-a0d7d000 r--s 00000000 fd:00 932        /system/fonts/Roboto-BlackItalic.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0d7d000-a0dc8000 r--s 00000000 fd:00 931        /system/fonts/Roboto-Black.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0dc8000-a0e19000 r--s 00000000 fd:00 939        /system/fonts/Roboto-MediumItalic.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0e19000-a0e64000 r--s 00000000 fd:00 938        /system/fonts/Roboto-Medium.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0e64000-a0eb5000 r--s 00000000 fd:00 935        /system/fonts/Roboto-Italic.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0eb5000-a0f00000 r--s 00000000 fd:00 940        /system/fonts/Roboto-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0f00000-a0f80000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.362 E/mono-rt ( 8806): a0f80000-a0f82000 r--s 00000000 fd:00 890        /system/fonts/NotoSansOlChiki-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0f82000-a0f8c000 r--s 00000000 fd:00 869        /system/fonts/NotoSansKhmerUI-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0f8c000-a0f9a000 r--s 00000000 fd:00 880        /system/fonts/NotoSansMalayalamUI-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0f9a000-a0fbd000 r--s 00000000 fd:00 845        /system/fonts/NotoSansEthiopic-Regular.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a0fbd000-a24e9000 r--s 00000000 fd:00 1852       /system/usr/icu/icudt56l.dat
01-04 02:18:56.362 E/mono-rt ( 8806): a24e9000-a24ea000 rw-p 00000000 00:00 0 
01-04 02:18:56.362 E/mono-rt ( 8806): a24ea000-a24eb000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.362 E/mono-rt ( 8806): a24eb000-a24ed000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.362 E/mono-rt ( 8806): a24ed000-a28ed000 rw-p 00000000 00:04 5734       /dev/ashmem/dalvik-allocspace main rosalloc space live-bitmap 3 (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a28ed000-a28fd000 rw-p 00000000 00:04 5733       /dev/ashmem/dalvik-rosalloc page map (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a28fd000-a3e29000 r--s 00000000 fd:00 1852       /system/usr/icu/icudt56l.dat
01-04 02:18:56.362 E/mono-rt ( 8806): a3e29000-a3f53000 r-xp 00000000 fd:00 1337       /system/lib/libvixl.so
01-04 02:18:56.362 E/mono-rt ( 8806): a3f53000-a3f56000 r--p 00129000 fd:00 1337       /system/lib/libvixl.so
01-04 02:18:56.362 E/mono-rt ( 8806): a3f56000-a3f57000 rw-p 0012c000 fd:00 1337       /system/lib/libvixl.so
01-04 02:18:56.362 E/mono-rt ( 8806): a3f57000-a3f5c000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.362 E/mono-rt ( 8806): a3f5c000-a4400000 r-xp 00000000 fd:00 1114       /system/lib/libart-compiler.so
01-04 02:18:56.362 E/mono-rt ( 8806): a4400000-a440c000 r--p 004a3000 fd:00 1114       /system/lib/libart-compiler.so
01-04 02:18:56.362 E/mono-rt ( 8806): a440c000-a440d000 rw-p 004af000 fd:00 1114       /system/lib/libart-compiler.so
01-04 02:18:56.362 E/mono-rt ( 8806): a440d000-a4411000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.362 E/mono-rt ( 8806): a4411000-a441a000 r--s 00000000 fd:00 868        /system/fonts/NotoSansKhmerUI-Bold.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a441a000-a446c000 r--s 00000000 fd:00 937        /system/fonts/Roboto-LightItalic.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a446c000-a44b8000 r--s 00000000 fd:00 936        /system/fonts/Roboto-Light.ttf
01-04 02:18:56.362 E/mono-rt ( 8806): a44b8000-a4580000 rw-p 00000000 00:04 5397       /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a4580000-a4648000 rw-p 00000000 00:04 5396       /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a4648000-a4e49000 rw-p 00000000 00:04 5392       /dev/ashmem/dalvik-live stack (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a4e49000-a564a000 rw-p 00000000 00:04 5391       /dev/ashmem/dalvik-allocation stack (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a564a000-a764b000 rw-p 00000000 00:04 5389       /dev/ashmem/dalvik-card table (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a764b000-a7a4b000 rw-p 00000000 00:04 5386       /dev/ashmem/dalvik-allocspace main rosalloc space 1 mark-bitmap 2 (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a7a4b000-a7e4b000 rw-p 00000000 00:04 5385       /dev/ashmem/dalvik-allocspace main rosalloc space 1 live-bitmap 2 (deleted)
01-04 02:18:56.362 E/mono-rt ( 8806): a7e4b000-a7e4c000 rw-p 00000000 00:00 0 
01-04 02:18:56.362 E/mono-rt ( 8806): a7e4c000-a7f4a000 r--p 00000000 00:0e 4221       /dev/binder
01-04 02:18:56.362 E/mono-rt ( 8806): a7f4a000-a7f4b000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.362 E/mono-rt ( 8806): a7f4b000-a7f4c000 ---p 00000000 00:00 0 
01-04 02:18:56.362 E/mono-rt ( 8806): a7f4c000-a804f000 rw-p 00000000 00:00 0          [stack:8812]
01-04 02:18:56.362 E/mono-rt ( 8806): a804f000-a8050000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.362 E/mono-rt ( 8806): a8050000-a8051000 ---p 00000000 00:00 0 
01-04 02:18:56.362 E/mono-rt ( 8806): a8051000-a8154000 rw-p 00000000 00:00 0          [stack:8811]
01-04 02:18:56.362 E/mono-rt ( 8806): a8154000-a8155000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.362 E/mono-rt ( 8806): a8155000-a8156000 ---p 00000000 00:00 0 
01-04 02:18:56.362 E/mono-rt ( 8806): a8156000-a8253000 rw-p 00000000 00:00 0          [stack:8810]
01-04 02:18:56.362 E/mono-rt ( 8806): a8253000-a8254000 ---p 00000000 00:00 0          [anon:thread stack guard page]
01-04 02:18:56.362 E/mono-rt ( 8806): a8254000-a8255000 ---p 00000000 00:00 0 
01-04 02:18:56.363 E/mono-rt ( 8806): a8255000-a8352000 rw-p 00000000 00:00 0          [stack:8809]
01-04 02:18:56.363 E/mono-rt ( 8806): a8352000-a8353000 ---p 00000000 00:04 62333      /dev/ashmem/dalvik-Jit thread pool worker thread 0 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a8353000-a8354000 ---p 00001000 00:04 62333      /dev/ashmem/dalvik-Jit thread pool worker thread 0 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a8354000-a8453000 rw-p 00002000 00:04 62333      /dev/ashmem/dalvik-Jit thread pool worker thread 0 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a8453000-a854f000 rw-p 00000000 00:04 5738       /dev/ashmem/dalvik-allocspace non moving space mark-bitmap 4 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a854f000-a864b000 rw-p 00000000 00:04 5737       /dev/ashmem/dalvik-allocspace non moving space live-bitmap 4 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a864b000-a874b000 rw-p 00000000 00:04 5380       /dev/ashmem/dalvik-allocspace zygote / non moving space mark-bitmap 0 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a874b000-a884b000 rw-p 00000000 00:04 5379       /dev/ashmem/dalvik-allocspace zygote / non moving space live-bitmap 0 (deleted)
01-04 02:18:56.363 E/mono-rt ( 8806): a884b000-a8f73000 r-xp 00000000 fd:00 1116       /system/lib/libart.so
01-04 02:18:56.363 E/mono-rt ( 8806): a8f73000-a8f74000 ---p 00000000 00:00 0 
01-04 02:18:56.363 E/mono-rt ( 8806): a8f74000-a8f7c000 r--p 00728000 fd:00 1116       /system/lib/libart.so
01-04 02:18:56.363 E/mono-rt ( 8806): a8f7c000-a8f7e000 rw-p 00730000 fd:00 1116       /system/lib/libart.so
01-04 02:18:56.363 E/mono-rt ( 8806): a8f7e000-a8f80000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.363 E/mono-rt ( 8806): a8f80000-a9080000 rw-p 00000000 00:00 0          [anon:libc_malloc]
01-04 02:18:56.363 E/mono-rt ( 8806): a9080000-a9082000 r--s 00000000 fd:00 876        /system/fonts/NotoSansLisu-Regular.ttf
01-04 02:18:56.363 E/mono-rt ( 8806): a9082000-a9090000 r--s 00000000 fd:00 877        /system/fonts/NotoSansMalayalam-Bold.ttf
01-04 02:18:56.363 E/mono-rt ( 8806): a9090000-a90ad000 r--s 00000000 fd:00 821        /system/fonts/NotoNaskhArabicUI-Bold.ttf
01-04 02:18:56.363 E/mono-rt ( 8806): a90ad000-a90fd000 r--s 00000000 fd:00 942        /system/fonts/Roboto-ThinItalic.ttf
01-04 02:18:56.363 E/mono-rt ( 8806): a90fd000-a90fe000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.363 E/mono-rt ( 8806): a90fe000-a90ff000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.363 E/mono-rt ( 8806): a90ff000-a9110000 r-xp 00000000 fd:00 1128       /system/lib/libbacktrace.so
01-04 02:18:56.363 E/mono-rt ( 8806): a9110000-a9111000 r--p 00010000 fd:00 1128       /system/lib/libbacktrace.so
01-04 02:18:56.363 E/mono-rt ( 8806): a9111000-a9112000 rw-p 00011000 fd:00 1128       /system/lib/libbacktrace.so
01-04 02:18:56.363 E/mono-rt ( 8806): a9112000-aa6e7000 r-xp 00000000 fd:00 1096       /system/lib/libLLVM.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa6e7000-aa7bc000 r--p 015d4000 fd:00 1096       /system/lib/libLLVM.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa7bc000-aa7bd000 rw-p 016a9000 fd:00 1096       /system/lib/libLLVM.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa7bd000-aa7c8000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.363 E/mono-rt ( 8806): aa7c8000-aa7cf000 r-xp 00000000 fd:00 1241       /system/lib/libnativehelper.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa7cf000-aa7d0000 r--p 00006000 fd:00 1241       /system/lib/libnativehelper.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa7d0000-aa7d1000 rw-p 00007000 fd:00 1241       /system/lib/libnativehelper.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa7d1000-aa821000 r-xp 00000000 fd:00 1146       /system/lib/libcamera_client.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa821000-aa82a000 r--p 0004f000 fd:00 1146       /system/lib/libcamera_client.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa82a000-aa82b000 rw-p 00058000 fd:00 1146       /system/lib/libcamera_client.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa82b000-aa83d000 r-xp 00000000 fd:00 1269       /system/lib/libradio.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa83d000-aa840000 r--p 00011000 fd:00 1269       /system/lib/libradio.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa840000-aa841000 rw-p 00014000 fd:00 1269       /system/lib/libradio.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa841000-aa917000 r-xp 00000000 fd:00 1165       /system/lib/libdng_sdk.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa917000-aa91b000 r--p 000d5000 fd:00 1165       /system/lib/libdng_sdk.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa91b000-aa91c000 rw-p 000d9000 fd:00 1165       /system/lib/libdng_sdk.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa91c000-aa939000 r-xp 00000000 fd:00 1238       /system/lib/libminikin.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa939000-aa93a000 ---p 00000000 00:00 0 
01-04 02:18:56.363 E/mono-rt ( 8806): aa93a000-aa93b000 r--p 0001d000 fd:00 1238       /system/lib/libminikin.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa93b000-aa93d000 rw-p 0001e000 fd:00 1238       /system/lib/libminikin.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa93d000-aa97d000 r-xp 00000000 fd:00 1347       /system/lib/libwilhelm.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa97d000-aa97e000 ---p 00000000 00:00 0 
01-04 02:18:56.363 E/mono-rt ( 8806): aa97e000-aa982000 r--p 00040000 fd:00 1347       /system/lib/libwilhelm.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa982000-aa983000 rw-p 00044000 fd:00 1347       /system/lib/libwilhelm.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa983000-aa98e000 r-xp 00000000 fd:00 1261       /system/lib/libpiex.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa98e000-aa98f000 r--p 0000a000 fd:00 1261       /system/lib/libpiex.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa98f000-aa990000 rw-p 0000b000 fd:00 1261       /system/lib/libpiex.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa990000-aa9bd000 r-xp 00000000 fd:00 1299       /system/lib/libstagefright_foundation.so
01-04 02:18:56.363 E/mono-rt ( 8806): aa9bd000-aa9be000 ---p 00000000 00:00 0 
01-04 02:18:56.364 E/mono-rt ( 8806): aa9be000-aa9bf000 r--p 0002d000 fd:00 1299       /system/lib/libstagefright_foundation.so
01-04 02:18:56.364 E/mono-rt ( 8806): aa9bf000-aa9c0000 rw-p 0002e000 fd:00 1299       /system/lib/libstagefright_foundation.so
01-04 02:18:56.364 E/mono-rt ( 8806): aa9c0000-aa9e8000 r-xp 00000000 fd:00 1222       /system/lib/liblzma.so
01-04 02:18:56.364 E/mono-rt ( 8806): aa9e8000-aa9e9000 r--p 00027000 fd:00 1222       /system/lib/liblzma.so
01-04 02:18:56.364 E/mono-rt ( 8806): aa9e9000-aa9ea000 rw-p 00028000 fd:00 1222       /system/lib/liblzma.so
01-04 02:18:56.364 E/mono-rt ( 8806): aa9ea000-aa9f0000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.364 E/mono-rt ( 8806): aa9f0000-aaa69000 r-xp 00000000 fd:00 1134       /system/lib/libbinder.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa69000-aaa6a000 ---p 00000000 00:00 0 
01-04 02:18:56.364 E/mono-rt ( 8806): aaa6a000-aaa73000 r--p 00079000 fd:00 1134       /system/lib/libbinder.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa73000-aaa74000 rw-p 00082000 fd:00 1134       /system/lib/libbinder.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa74000-aaa83000 r-xp 00000000 fd:00 1219       /system/lib/liblog.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa83000-aaa84000 r--p 0000e000 fd:00 1219       /system/lib/liblog.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa84000-aaa85000 rw-p 0000f000 fd:00 1219       /system/lib/liblog.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa85000-aaa86000 r-xp 00000000 fd:00 1190       /system/lib/libhardware.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa86000-aaa87000 ---p 00000000 00:00 0 
01-04 02:18:56.364 E/mono-rt ( 8806): aaa87000-aaa88000 r--p 00001000 fd:00 1190       /system/lib/libhardware.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa88000-aaa89000 rw-p 00002000 fd:00 1190       /system/lib/libhardware.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaa89000-aaaa7000 r-xp 00000000 fd:00 1338       /system/lib/libvorbisidec.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaa7000-aaaa8000 r--p 0001d000 fd:00 1338       /system/lib/libvorbisidec.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaa8000-aaaa9000 rw-p 0001e000 fd:00 1338       /system/lib/libvorbisidec.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaa9000-aaabb000 r-xp 00000000 fd:00 1289       /system/lib/libsoundtrigger.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaabb000-aaabc000 ---p 00000000 00:00 0 
01-04 02:18:56.364 E/mono-rt ( 8806): aaabc000-aaabf000 r--p 00012000 fd:00 1289       /system/lib/libsoundtrigger.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaabf000-aaac0000 rw-p 00015000 fd:00 1289       /system/lib/libsoundtrigger.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaac0000-aaaea000 r-xp 00000000 fd:00 1199       /system/lib/libinput.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaea000-aaaee000 r--p 00029000 fd:00 1199       /system/lib/libinput.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaee000-aaaef000 rw-p 0002d000 fd:00 1199       /system/lib/libinput.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaef000-aaaf2000 r-xp 00000000 fd:00 1324       /system/lib/libstagefright_yuv.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaf2000-aaaf3000 ---p 00000000 00:00 0 
01-04 02:18:56.364 E/mono-rt ( 8806): aaaf3000-aaaf4000 r--p 00003000 fd:00 1324       /system/lib/libstagefright_yuv.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaf4000-aaaf5000 rw-p 00004000 fd:00 1324       /system/lib/libstagefright_yuv.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaaf5000-aab07000 r-xp 00000000 fd:00 1093       /system/lib/libGLESv2.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab07000-aab08000 r--p 00011000 fd:00 1093       /system/lib/libGLESv2.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab08000-aab09000 rw-p 00012000 fd:00 1093       /system/lib/libGLESv2.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab09000-aab0b000 r-xp 00000000 fd:00 1234       /system/lib/libmemtrack.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab0b000-aab0c000 r--p 00001000 fd:00 1234       /system/lib/libmemtrack.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab0c000-aab0d000 rw-p 00002000 fd:00 1234       /system/lib/libmemtrack.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab0d000-aab17000 r-xp 00000000 fd:00 1244       /system/lib/libnbaio.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab17000-aab18000 r--p 00009000 fd:00 1244       /system/lib/libnbaio.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab18000-aab19000 rw-p 0000a000 fd:00 1244       /system/lib/libnbaio.so
01-04 02:18:56.364 E/mono-rt ( 8806): aab19000-aac96000 r-xp 00000000 fd:00 1196       /system/lib/libicuuc.so
01-04 02:18:56.364 E/mono-rt ( 8806): aac96000-aaca1000 r--p 0017c000 fd:00 1196       /system/lib/libicuuc.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaca1000-aaca2000 rw-p 00187000 fd:00 1196       /system/lib/libicuuc.so
01-04 02:18:56.364 E/mono-rt ( 8806): aaca2000-aaca4000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.364 E/mono-rt ( 8806): aaca4000-aacb9000 r-xp 00000000 fd:00 1278       /system/lib/libselinux.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacb9000-aacba000 ---p 00000000 00:00 0 
01-04 02:18:56.364 E/mono-rt ( 8806): aacba000-aacbb000 r--p 00015000 fd:00 1278       /system/lib/libselinux.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacbb000-aacbc000 rw-p 00016000 fd:00 1278       /system/lib/libselinux.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacbc000-aacc0000 r-xp 00000000 fd:00 1133       /system/lib/libbinary_parse.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacc0000-aacc1000 r--p 00003000 fd:00 1133       /system/lib/libbinary_parse.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacc1000-aacc2000 rw-p 00004000 fd:00 1133       /system/lib/libbinary_parse.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacc2000-aacde000 r-xp 00000000 fd:00 1333       /system/lib/libui.so
01-04 02:18:56.364 E/mono-rt ( 8806): aacde000-aacdf000 r--p 0001b000 fd:00 1333       /system/lib/libui.so
01-04 02:18:56.365 E/mono-rt ( 8806): aacdf000-aace0000 rw-p 0001c000 fd:00 1333       /system/lib/libui.so
01-04 02:18:56.365 E/mono-rt ( 8806): aace0000-aaee5000 r-xp 00000000 fd:00 1295       /system/lib/libstagefright.so
01-04 02:18:56.365 E/mono-rt ( 8806): aaee5000-aaefd000 r--p 00204000 fd:00 1295       /system/lib/libstagefright.so
01-04 02:18:56.365 E/mono-rt ( 8806): aaefd000-aaefe000 rw-p 0021c000 fd:00 1295       /system/lib/libstagefright.so
01-04 02:18:56.365 E/mono-rt ( 8806): aaefe000-ab148000 r-xp 00000000 fd:00 1195       /system/lib/libicui18n.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab148000-ab153000 r--p 00249000 fd:00 1195       /system/lib/libicui18n.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab153000-ab154000 rw-p 00254000 fd:00 1195       /system/lib/libicui18n.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab154000-ab15b000 r-xp 00000000 fd:00 1147       /system/lib/libcamera_metadata.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab15b000-ab15c000 r--p 00006000 fd:00 1147       /system/lib/libcamera_metadata.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab15c000-ab15d000 rw-p 00007000 fd:00 1147       /system/lib/libcamera_metadata.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab15d000-ab192000 r-xp 00000000 fd:00 1223       /system/lib/libm.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab192000-ab193000 r--p 00034000 fd:00 1223       /system/lib/libm.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab193000-ab194000 rw-p 00035000 fd:00 1223       /system/lib/libm.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab194000-ab196000 r-xp 00000000 fd:00 1270       /system/lib/libradio_metadata.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab196000-ab197000 r--p 00001000 fd:00 1270       /system/lib/libradio_metadata.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab197000-ab198000 rw-p 00002000 fd:00 1270       /system/lib/libradio_metadata.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab198000-ab1a3000 r-xp 00000000 fd:00 1130       /system/lib/libbase.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab1a3000-ab1a4000 r--p 0000a000 fd:00 1130       /system/lib/libbase.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab1a4000-ab1a5000 rw-p 0000b000 fd:00 1130       /system/lib/libbase.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab1a5000-ab816000 r-xp 00000000 fd:00 1283       /system/lib/libskia.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab816000-ab835000 r--p 00670000 fd:00 1283       /system/lib/libskia.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab835000-ab837000 rw-p 0068f000 fd:00 1283       /system/lib/libskia.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab837000-ab83d000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.365 E/mono-rt ( 8806): ab83d000-ab861000 r-xp 00000000 fd:00 1171       /system/lib/libexpat.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab861000-ab863000 r--p 00023000 fd:00 1171       /system/lib/libexpat.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab863000-ab864000 rw-p 00025000 fd:00 1171       /system/lib/libexpat.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab864000-ab8be000 r-xp 00000000 fd:00 1132       /system/lib/libbcinfo.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab8be000-ab8bf000 ---p 00000000 00:00 0 
01-04 02:18:56.365 E/mono-rt ( 8806): ab8bf000-ab8c0000 r--p 0005a000 fd:00 1132       /system/lib/libbcinfo.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab8c0000-ab8c1000 rw-p 0005b000 fd:00 1132       /system/lib/libbcinfo.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab8c1000-ab8f7000 r-xp 00000000 fd:00 1263       /system/lib/libpng.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab8f7000-ab8f8000 ---p 00000000 00:00 0 
01-04 02:18:56.365 E/mono-rt ( 8806): ab8f8000-ab8f9000 r--p 00036000 fd:00 1263       /system/lib/libpng.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab8f9000-ab8fa000 rw-p 00037000 fd:00 1263       /system/lib/libpng.so
01-04 02:18:56.365 E/mono-rt ( 8806): ab8fa000-ab946000 r-xp 00000000 fd:00 1254       /system/lib/libopus.so
01-04 02:18:56.370 E/mono-rt ( 8806): acecd000-acece000 rw-p 00000000 00:00 0 
01-04 02:18:56.370 E/mono-rt ( 8806): acece000-aced0000 r--s 00000000 fd:00 832        /system/fonts/NotoSansBuginese-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): aced0000-aced4000 r--s 00000000 fd:00 917        /system/fonts/NotoSansThaana-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): aced4000-acedc000 r--s 00000000 fd:00 854        /system/fonts/NotoSansGurmukhi-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acedc000-acee1000 r--s 00000000 fd:00 846        /system/fonts/NotoSansGeorgian-Bold.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acee1000-acee6000 r--s 00000000 fd:00 847        /system/fonts/NotoSansGeorgian-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acee6000-acee8000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.370 E/mono-rt ( 8806): acee8000-aceec000 r--s 00000000 fd:00 823        /system/fonts/NotoSansArmenian-Bold.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): aceec000-acef1000 r--s 00000000 fd:00 920        /system/fonts/NotoSansThaiUI-Bold.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acef1000-acf11000 rw-p 00000000 00:04 5431       /dev/ashmem/dalvik-LinearAlloc (deleted)
01-04 02:18:56.370 E/mono-rt ( 8806): acf11000-acf31000 rw-p 00000000 00:04 5430       /dev/ashmem/dalvik-LinearAlloc (deleted)
01-04 02:18:56.370 E/mono-rt ( 8806): acf31000-acf51000 r--s 00000000 00:0e 3119       /dev/__properties__/u:object_r:radio_prop:s0
01-04 02:18:56.370 E/mono-rt ( 8806): acf51000-acf52000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.370 E/mono-rt ( 8806): acf52000-acf53000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.370 E/mono-rt ( 8806): acf53000-acf59000 r--s 00000000 fd:00 921        /system/fonts/NotoSansThaiUI-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acf59000-acf94000 r-xp 00000000 fd:00 1252       /system/lib/libopenjdk.so
01-04 02:18:56.370 E/mono-rt ( 8806): acf94000-acf95000 ---p 00000000 00:00 0 
01-04 02:18:56.370 E/mono-rt ( 8806): acf95000-acf96000 r--p 0003b000 fd:00 1252       /system/lib/libopenjdk.so
01-04 02:18:56.370 E/mono-rt ( 8806): acf96000-acf97000 rw-p 0003c000 fd:00 1252       /system/lib/libopenjdk.so
01-04 02:18:56.370 E/mono-rt ( 8806): acf97000-acf98000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.370 E/mono-rt ( 8806): acf98000-acf9d000 r--s 00000000 fd:00 918        /system/fonts/NotoSansThai-Bold.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acf9d000-acfa3000 r--s 00000000 fd:00 919        /system/fonts/NotoSansThai-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acfa3000-acfa8000 r--s 00000000 fd:00 858        /system/fonts/NotoSansHebrew-Bold.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acfa8000-acfad000 r--s 00000000 fd:00 859        /system/fonts/NotoSansHebrew-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acfad000-acfaf000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.370 E/mono-rt ( 8806): acfaf000-acfb0000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.370 E/mono-rt ( 8806): acfb0000-acfb2000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.370 E/mono-rt ( 8806): acfb2000-acfeb000 r-xp 00000000 fd:00 1204       /system/lib/libjavacore.so
01-04 02:18:56.370 E/mono-rt ( 8806): acfeb000-acfec000 r--p 00038000 fd:00 1204       /system/lib/libjavacore.so
01-04 02:18:56.370 E/mono-rt ( 8806): acfec000-acfed000 rw-p 00039000 fd:00 1204       /system/lib/libjavacore.so
01-04 02:18:56.370 E/mono-rt ( 8806): acfed000-acfee000 rw-p 00000000 00:00 0          [anon:.bss]
01-04 02:18:56.370 E/mono-rt ( 8806): acfee000-acfef000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.370 E/mono-rt ( 8806): acfef000-acff3000 r--s 00000000 fd:00 824        /system/fonts/NotoSansArmenian-Regular.ttf
01-04 02:18:56.370 E/mono-rt ( 8806): acff3000-ad00e000 r--s 00178000 fd:00 970        /system/framework/ext.jar
01-04 02:18:56.370 E/mono-rt ( 8806): ad00e000-ad016000 r-xp 00000000 fd:00 1253       /system/lib/libopenjdkjvm.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad016000-ad017000 r--p 00007000 fd:00 1253       /system/lib/libopenjdkjvm.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad017000-ad018000 rw-p 00008000 fd:00 1253       /system/lib/libopenjdkjvm.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad018000-ad02a000 r-xp 00000000 fd:00 1228       /system/lib/libmediadrm.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad02a000-ad02b000 ---p 00000000 00:00 0 
01-04 02:18:56.371 E/mono-rt ( 8806): ad02b000-ad02d000 r--p 00012000 fd:00 1228       /system/lib/libmediadrm.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad02d000-ad02e000 rw-p 00014000 fd:00 1228       /system/lib/libmediadrm.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad02e000-ad043000 r-xp 00000000 fd:00 1231       /system/lib/libmediandk.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad043000-ad044000 ---p 00000000 00:00 0 
01-04 02:18:56.371 E/mono-rt ( 8806): ad044000-ad045000 r--p 00015000 fd:00 1231       /system/lib/libmediandk.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad045000-ad046000 rw-p 00016000 fd:00 1231       /system/lib/libmediandk.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad046000-ad063000 r-xp 00000000 fd:00 1145       /system/lib/libcamera2ndk.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad063000-ad065000 r--p 0001c000 fd:00 1145       /system/lib/libcamera2ndk.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad065000-ad066000 rw-p 0001e000 fd:00 1145       /system/lib/libcamera2ndk.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad066000-ad0a6000 rw-p 00000000 00:04 5390       /dev/ashmem/dalvik-mark stack (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad0a6000-ad0a7000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0a7000-ad0a8000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0a8000-ad0a9000 r--s 00000000 fd:00 1013       /system/framework/org.apache.http.legacy.boot.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0a9000-ad0aa000 r--s 00004000 fd:00 952        /system/framework/apache-xml.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0aa000-ad0ab000 r--s 00000000 fd:00 975        /system/framework/ims-common.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0ab000-ad0ac000 r--s 00000000 fd:00 1023       /system/framework/voip-common.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0ac000-ad0ad000 r--s 00000000 fd:00 1021       /system/framework/telephony-common.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0ad000-ad0bf000 r-xp 00000000 fd:00 1095       /system/lib/libGLESv3.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0bf000-ad0c0000 r--p 00011000 fd:00 1095       /system/lib/libGLESv3.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0c0000-ad0c1000 rw-p 00012000 fd:00 1095       /system/lib/libGLESv3.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0c1000-ad0da000 r-xp 00000000 fd:00 1108       /system/lib/libandroid.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0da000-ad0db000 ---p 00000000 00:00 0 
01-04 02:18:56.371 E/mono-rt ( 8806): ad0db000-ad0dd000 r--p 00019000 fd:00 1108       /system/lib/libandroid.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0dd000-ad0de000 rw-p 0001b000 fd:00 1108       /system/lib/libandroid.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0de000-ad0df000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0df000-ad0e0000 r--s 00000000 fd:00 972        /system/framework/framework.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0e0000-ad0e1000 r--s 00000000 fd:00 955        /system/framework/bouncycastle.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0e1000-ad0e3000 r--s 00003000 fd:00 966        /system/framework/core-libart.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0e3000-ad0e5000 rw-p 00000000 00:04 62350      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad0e5000-ad0e6000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0e6000-ad0e8000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0e8000-ad0ea000 rw-p 00000000 00:04 62349      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad0ea000-ad0eb000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0eb000-ad0ed000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0ed000-ad0ef000 rw-p 00000000 00:04 62342      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad0ef000-ad0f0000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.371 E/mono-rt ( 8806): ad0f0000-ad0f1000 r--s 00000000 fd:00 965        /system/framework/core-junit.jar
01-04 02:18:56.371 E/mono-rt ( 8806): ad0f1000-ad0f3000 rw-p 00000000 00:04 62341      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad0f3000-ad0f5000 rw-p 00000000 00:04 62340      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad0f5000-ad0f8000 r-xp 00000000 fd:00 1345       /system/lib/libwebviewchromium_plat_support.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0f8000-ad0f9000 r--p 00002000 fd:00 1345       /system/lib/libwebviewchromium_plat_support.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0f9000-ad0fa000 rw-p 00003000 fd:00 1345       /system/lib/libwebviewchromium_plat_support.so
01-04 02:18:56.371 E/mono-rt ( 8806): ad0fa000-ad11a000 rw-p 00000000 00:04 5388       /dev/ashmem/dalvik-large marked objects (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad11a000-ad13a000 rw-p 00000000 00:04 5387       /dev/ashmem/dalvik-large live objects (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad13a000-ad14a000 rw-p 00000000 00:04 5384       /dev/ashmem/dalvik-rosalloc page map (deleted)
01-04 02:18:56.371 E/mono-rt ( 8806): ad14a000-ad16a000 r--s 00000000 00:0e 3093       /dev/__properties__/u:object_r:fingerprint_prop:s0
01-04 02:18:56.371 E/mono-rt ( 8806): ad16a000-ad18a000 r--s 00000000 00:0e 3111       /dev/__properties__/u:object_r:debug_prop:s0
01-04 02:18:56.371 E/mono-rt ( 8806): ad18a000-ad1aa000 r--s 00000000 00:0e 3094       /dev/__properties__/u:object_r:vold_prop:s0
01-04 02:18:56.371 E/mono-rt ( 8806): ad1aa000-ad1ca000 r--s 00000000 00:0e 3091       /dev/__properties__/u:object_r:config_prop:s0
01-04 02:18:56.371 E/mono-rt ( 8806): ad1ca000-ad1cb000 rw-p 00000000 00:00 0          [anon:linker_alloc_vector]
01-04 02:18:56.371 E/mono-rt ( 8806): ad1cb000-ad1cc000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.371 E/mono-rt ( 8806): ad1cc000-ad1ce000 r-xp 00000000 fd:00 1098       /system/lib/libOpenSLES.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1ce000-ad1cf000 r--p 00001000 fd:00 1098       /system/lib/libOpenSLES.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1cf000-ad1d0000 rw-p 00002000 fd:00 1098       /system/lib/libOpenSLES.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1d0000-ad1d1000 rw-p 00000000 00:00 0 
01-04 02:18:56.372 E/mono-rt ( 8806): ad1d1000-ad1d3000 rw-p 00000000 00:04 62339      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad1d3000-ad1d5000 rw-p 00000000 00:04 62338      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad1d5000-ad1d6000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1d6000-ad1d8000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1d8000-ad1da000 rw-p 00000000 00:04 62337      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad1da000-ad1db000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1db000-ad1dd000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1dd000-ad1df000 rw-p 00000000 00:04 62336      /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad1df000-ad1e0000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e0000-ad1e2000 rw-p 00000000 00:00 0          [anon:thread signal stack]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e2000-ad1e3000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e3000-ad1e4000 r--s 00000000 fd:00 1012       /system/framework/okhttp.jar
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e4000-ad1e6000 r-xp 00000000 fd:00 1097       /system/lib/libOpenMAXAL.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e6000-ad1e7000 r--p 00001000 fd:00 1097       /system/lib/libOpenMAXAL.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e7000-ad1e8000 rw-p 00002000 fd:00 1097       /system/lib/libOpenMAXAL.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e8000-ad1e9000 r-xp 00000000 fd:00 1213       /system/lib/libjnigraphics.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1e9000-ad1ea000 r--p 00000000 fd:00 1213       /system/lib/libjnigraphics.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1ea000-ad1eb000 rw-p 00001000 fd:00 1213       /system/lib/libjnigraphics.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad1eb000-ad1ec000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1ec000-ad1ed000 r--s 00000000 fd:00 963        /system/framework/conscrypt.jar
01-04 02:18:56.372 E/mono-rt ( 8806): ad1ed000-ad1ee000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1ee000-ad1ef000 r--s 0001d000 fd:00 967        /system/framework/core-oj.jar
01-04 02:18:56.372 E/mono-rt ( 8806): ad1ef000-ad1f0000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.372 E/mono-rt ( 8806): ad1f0000-ad1f1000 rw-p 00000000 00:04 5739       /dev/ashmem/dalvik-mod union bitmap (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad1f1000-ad211000 r--s 00000000 00:0e 3090       /dev/__properties__/u:object_r:dalvik_prop:s0
01-04 02:18:56.372 E/mono-rt ( 8806): ad211000-ad213000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.372 E/mono-rt ( 8806): ad213000-ad215000 rw-p 00000000 00:04 5400       /dev/ashmem/dalvik-indirect ref table (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad215000-ad216000 rw-p 00000000 00:04 5395       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad216000-ad217000 rw-p 00000000 00:04 5394       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad217000-ad218000 rw-p 00000000 00:04 5393       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
01-04 02:18:56.372 E/mono-rt ( 8806): ad218000-ad219000 r--p 00020000 fd:20 7077       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad219000-ad228000 r-xp 00000000 fd:00 1221       /system/lib/liblz4.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad228000-ad229000 r--p 0000e000 fd:00 1221       /system/lib/liblz4.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad229000-ad22a000 rw-p 0000f000 fd:00 1221       /system/lib/liblz4.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad22a000-ad22b000 rw-p 00000000 00:00 0          [anon:linker_alloc_vector]
01-04 02:18:56.372 E/mono-rt ( 8806): ad22b000-ad22c000 r--p 00018000 fd:20 7076       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad22c000-ad236000 r--p 005b8000 fd:20 7072       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad236000-ad237000 r-xp 00000000 fd:00 1282       /system/lib/libsigchain.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad237000-ad238000 r--p 00000000 fd:00 1282       /system/lib/libsigchain.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad238000-ad239000 rw-p 00001000 fd:00 1282       /system/lib/libsigchain.so
01-04 02:18:56.372 E/mono-rt ( 8806): ad239000-ad23a000 r--p 0000b000 fd:20 7075       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad23a000-ad23b000 r--p 00006000 fd:20 7074       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad23b000-ad23d000 r--p 0007e000 fd:20 7073       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad23d000-ad25d000 r--s 00000000 00:0e 3118       /dev/__properties__/u:object_r:system_prop:s0
01-04 02:18:56.372 E/mono-rt ( 8806): ad25d000-ad25e000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.372 E/mono-rt ( 8806): ad25e000-ad25f000 r--p 00037000 fd:20 7071       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad25f000-ad260000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.372 E/mono-rt ( 8806): ad260000-ad261000 r--p 00038000 fd:20 7070       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad261000-ad262000 r--p 00002000 fd:20 7069       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad262000-ad263000 r--p 0002a000 fd:20 7068       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad263000-ad264000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.372 E/mono-rt ( 8806): ad264000-ad265000 r--p 0002a000 fd:20 7067       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.372 E/mono-rt ( 8806): ad265000-ad285000 r--s 00000000 00:0e 3102       /dev/__properties__/u:object_r:logd_prop:s0
01-04 02:18:56.373 E/mono-rt ( 8806): ad285000-ad286000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.373 E/mono-rt ( 8806): ad286000-ad287000 rw-p 00000000 00:00 0          [anon:linker_alloc_vector]
01-04 02:18:56.373 E/mono-rt ( 8806): ad287000-ad289000 r--p 0011b000 fd:20 7066       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.373 E/mono-rt ( 8806): ad289000-ad28e000 r--p 00202000 fd:20 7065       /data/dalvik-cache/x86/system@[email protected]
01-04 02:18:56.373 E/mono-rt ( 8806): ad28e000-ad293000 rw-p 00000000 fd:00 579        /system/etc/event-log-tags
01-04 02:18:56.373 E/mono-rt ( 8806): ad293000-ad2b3000 r--s 00000000 00:0e 3107       /dev/__properties__/u:object_r:log_tag_prop:s0
01-04 02:18:56.373 E/mono-rt ( 8806): ad2b3000-ad2b6000 r--p 00000000 00:00 0          [anon:atexit handlers]
01-04 02:18:56.373 E/mono-rt ( 8806): ad2b6000-ad2d6000 r--s 00000000 00:0e 3095       /dev/__properties__/u:object_r:default_prop:s0
01-04 02:18:56.373 E/mono-rt ( 8806): ad2d6000-ad2f6000 r--s 00000000 00:0e 3122       /dev/__properties__/properties_serial
01-04 02:18:56.373 E/mono-rt ( 8806): ad2f6000-ad316000 r--s 00000000 00:0e 3122       /dev/__properties__/properties_serial
01-04 02:18:56.373 E/mono-rt ( 8806): ad316000-ad317000 rw-p 00000000 00:00 0          [anon:linker_alloc_vector]
01-04 02:18:56.373 E/mono-rt ( 8806): ad317000-ad318000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.373 E/mono-rt ( 8806): ad318000-ad319000 rw-p 00000000 00:00 0          [anon:linker_alloc_vector]
01-04 02:18:56.373 E/mono-rt ( 8806): ad319000-ad31b000 rw-p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.373 E/mono-rt ( 8806): ad31b000-ad31c000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.373 E/mono-rt ( 8806): ad31c000-ad31d000 rw-p 00000000 00:00 0          [anon:linker_alloc_lob]
01-04 02:18:56.373 E/mono-rt ( 8806): ad31d000-ad31f000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.373 E/mono-rt ( 8806): ad31f000-ad320000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.373 E/mono-rt ( 8806): ad320000-ad321000 r--p 00000000 00:00 0          [anon:linker_alloc]
01-04 02:18:56.373 E/mono-rt ( 8806): ad321000-ad322000 rw-p 00000000 00:00 0          [anon:linker_alloc_small_objects]
01-04 02:18:56.373 E/mono-rt ( 8806): ad322000-ad323000 rw-p 00000000 00:00 0          [anon:arc4random _rsx structure]
01-04 02:18:56.373 E/mono-rt ( 8806): ad323000-ad324000 rw-p 00000000 00:00 0          [anon:arc4random _rs structure]
01-04 02:18:56.373 E/mono-rt ( 8806): ad324000-ad325000 r--p 00000000 00:00 0          [anon:atexit handlers]
01-04 02:18:56.373 E/mono-rt ( 8806): ad325000-ad326000 ---p 00000000 00:00 0          [anon:thread signal stack guard page]
01-04 02:18:56.373 E/mono-rt ( 8806): ad326000-ad328000 rw-p 00000000 00:00 0          [stack:8806]
01-04 02:18:56.373 E/mono-rt ( 8806): ad328000-ad329000 r-xp 00000000 00:00 0          [vdso]
01-04 02:18:56.373 E/mono-rt ( 8806): ad329000-ad3f5000 r-xp 00000000 fd:00 409        /system/bin/linker
01-04 02:18:56.373 E/mono-rt ( 8806): ad3f5000-ad3f8000 r--p 000cb000 fd:00 409        /system/bin/linker
01-04 02:18:56.373 E/mono-rt ( 8806): ad3f8000-ad3f9000 rw-p 000ce000 fd:00 409        /system/bin/linker
01-04 02:18:56.373 E/mono-rt ( 8806): ad3f9000-ad3fb000 rw-p 00000000 00:00 0 
01-04 02:18:56.373 E/mono-rt ( 8806): ad3fb000-ad3fc000 r--p 00000000 00:00 0 
01-04 02:18:56.373 E/mono-rt ( 8806): ad3fc000-ad3fe000 rw-p 00000000 00:00 0 
01-04 02:18:56.373 E/mono-rt ( 8806): ad3fe000-ad402000 r-xp 00000000 fd:00 289        /system/bin/app_process32
01-04 02:18:56.373 E/mono-rt ( 8806): ad402000-ad403000 r--p 00003000 fd:00 289        /system/bin/app_process32
01-04 02:18:56.373 E/mono-rt ( 8806): ad403000-ad404000 rw-p 00000000 00:00 0 
01-04 02:18:56.373 E/mono-rt ( 8806): bf38e000-bf38e000 ---p 00000000 00:00 0 
01-04 02:18:56.373 E/mono-rt ( 8806): bf38e000-bfb8d000 rw-p 00000000 00:00 0 
01-04 02:18:56.373 E/mono-rt ( 8806): 
01-04 02:18:56.373 E/mono-rt ( 8806): No native Android stacktrace (see debuggerd output).
01-04 02:18:56.373 E/mono-rt ( 8806): 
01-04 02:18:56.373 E/mono-rt ( 8806): 
01-04 02:18:56.373 E/mono-rt ( 8806): =================================================================
01-04 02:18:56.373 E/mono-rt ( 8806): Got a SIGSEGV while executing native code. This usually indicates
01-04 02:18:56.373 E/mono-rt ( 8806): a fatal error in the mono runtime or one of the native libraries 
01-04 02:18:56.373 E/mono-rt ( 8806): used by your application.
01-04 02:18:56.373 E/mono-rt ( 8806): =================================================================
01-04 02:18:56.373 E/mono-rt ( 8806): 
01-04 02:18:56.373 F/libc    ( 8806): Fatal signal 11 (SIGSEGV), code 2, fault addr 0xbf38dffc in tid 8806 (izzle.TimingApp)

Throwing FooException makes AppDomain throw JavaProxyThrowable instead of FooException

Steps to Reproduce

  1. Create new XamarinForms project (template from VSforMac for example).
  2. Create class FooException : Exception.
  3. Hook into AppDomain.CurrentDomain.UnhandledException with a method Bar(sender, args) that receives the exception in the args.ExceptionObject property.
  4. Make the AppPage of the app throw this new FooException.
  5. Run the app in iOS: exception received is of type FooException.
  6. Run the app in Android.

Expected Behavior

Exception received by the Bar() method is of type FooException (or at least contains the FooException in the InnerException chain?)

Actual Behavior

Exception received by the Bar() method is of type JavaProxyThrowable, and its message is "Exception of type 'Android.Runtime.JavaProxyThrowable' was thrown". The only bit of "FooException" found in this exception object is in the stack trace, however this is not an acceptable way for the callers to find what exception was really thrown, especially because it would need to be platform-specific code (only Android exhibits this behaviour, other platforms don't).

Version Information

Visual Studio Community 2017 for Mac
Version 7.3.2 (build 12)
Installation UUID: fd06ff65-69de-47ae-8b99-ddf257032b7c
Runtime:
Mono 5.4.1.7 (2017-06/e66d9abbb27) (64-bit)
GTK+ 2.24.23 (Raleigh theme)

Package version: 504010007

NuGet
Version: 4.3.1.4445

.NET Core
Runtime: /usr/local/share/dotnet/dotnet
Runtime Version: 2.0.0
SDK: /usr/local/share/dotnet/sdk/2.0.0/Sdks
SDK Version: 2.0.0
MSBuild SDKs: /Library/Frameworks/Mono.framework/Versions/5.4.1/lib/mono/msbuild/15.0/bin/Sdks

Xamarin.Profiler
Version: 1.6.0
Location: /Applications/Xamarin Profiler.app/Contents/MacOS/Xamarin Profiler

Xamarin.Android
Version: 8.1.0.25 (Visual Studio Community)
Android SDK: /Users/andres/Library/Developer/Xamarin/android-sdk-macosx
Supported Android versions:
7.1 (API level 25)

SDK Tools Version: 26.1.1
SDK Platform Tools Version: 26.0.2
SDK Build Tools Version: 26.0.3

Java SDK: /usr
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

Android Designer EPL code available here:
https://github.com/xamarin/AndroidDesigner.EPL

Apple Developer Tools
Xcode 9.2 (13772)
Build 9C40b

Log File

(I don't believe there's need for a log file)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.