Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
1>Starting deploy AVD_for_Nexus_5_by_Google ...
1>Deploying AVD_for_Nexus_5_by_Google ...
1>Build started.
1>Project "JistTV.Droid.csproj" (Install target(s)):
1>Building with tools version "15.0".
1>Project file contains ToolsVersion="4.0". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424.
1>Target "RedirectMonoAndroidSdkPaths" in file "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\Xamarin\Xamarin.Android.Sdk.props" from project "C:\Entwicklung\Apps\JistTV\Ankhor\slicenow\application\JistTV\JistTV\JistTV.Droid\JistTV.Droid.csproj" (entry point):
1>Set Property: MonoAndroidToolsDirectory=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\Xamarin\Android
1>Set Property:
This file has been truncated, but you can view the full file.
1>Project 'JistClient' is not up to date. Input file 'c:\entwicklung\apps\jisttv\ankhor\slicenow\application\jisttv\jistclient\haodevice.cs' is modified after output file ''.
Failed to resolve all items referenced by 'JistTV\JistTV.APITester\JistTV.APITester.csproj'. This message can typically be ignored. The issue may be resolved by fully restoring and building the solution. If the unresolved item is a project reference this can lead to an incomplete NuGet restore result and missing package references. To ensure that restore is able to find all projects verify that all projects are referenced correctly and exist on disk.
Failed to resolve all items referenced by 'JistClient\JistClient.csproj'. This message can typically be ignored. The issue may be resolved by fully restoring and building the solution. If the unresolved item is a project reference this can lead to an incomplete NuGet restore result and missing package references. To ensure that restore is able to find all projects verify that all projects ar
This file has been truncated, but you can view the full file.
1>Project 'JistClient' is not up to date. Input file 'c:\entwicklung\apps\jisttv\ankhor\slicenow\application\jisttv\jistclient\haodevice.cs' is modified after output file ''.
Failed to resolve all items referenced by 'JistTV\JistTV.APITester\JistTV.APITester.csproj'. This message can typically be ignored. The issue may be resolved by fully restoring and building the solution. If the unresolved item is a project reference this can lead to an incomplete NuGet restore result and missing package references. To ensure that restore is able to find all projects verify that all projects are referenced correctly and exist on disk.
Failed to resolve all items referenced by 'JistClient\JistClient.csproj'. This message can typically be ignored. The issue may be resolved by fully restoring and building the solution. If the unresolved item is a project reference this can lead to an incomplete NuGet restore result and missing package references. To ensure that restore is able to find all projects verify that all projects ar
private static bool IsAppInBackground(Context context)
{
var isInBackground = true;
var am = (ActivityManager) context.GetSystemService(Context.ActivityService);
if (Build.VERSION.SdkInt > BuildVersionCodes.KitkatWatch)
{
var runningProcesses =
new List<ActivityManager.RunningAppProcessInfo>(am.RunningAppProcesses);
foreach (var processInfo in runningProcesses)
using (var httpClient = new HttpClient())
{
using (var request = new HttpRequestMessage(HttpMethod.Get,
"http://www.burkharts.net/QuoteMyDaySampleData.json"))
{
using (var response = await httpClient.SendAsync(request))
{
Stream contentStream = await (response.Content.ReadAsStreamAsync());
var json = new JsonSerializer();
using (var reader = new StreamReader(contentStream))
namespace Logging
{
using System;
using System.Diagnostics;
using System.Threading;
public interface ILogSink
{
void Log(string message);
}
public class LoginPageModel : ReactiveObject, IBasePageModel
{
public ReactiveCommand<Unit, bool> SignInCommmand;
public ReactiveCommand<Unit, bool> CreateAccountCommmand;
public ReactiveCommand<Unit, bool> ForgotPassWordCommmand;
public extern bool IsBusy { [ObservableAsProperty] get; }
[Reactive]