This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libsystem_kernel.dylib 0x396521f0 __pthread_kill + 8 | |
libsystem_c.dylib 0x39602ff9 abort + 74 | |
OzQuake 0x008df090 monotouch_unhandled_exception_handler (monotouch-glue.m:1562) | |
OzQuake 0x0082b4a7 mono_invoke_unhandled_exception_hook (mini-exceptions.c:2670) | |
OzQuake 0x00838bb7 mono_thread_abort (mini.c:2821) | |
OzQuake 0x0082ac91 mono_handle_exception_internal (mini-exceptions.c:1697) | |
OzQuake 0x00829d1b mono_handle_exception (mini-exceptions.c:1921) | |
OzQuake 0x008244e1 handle_signal_exception (exceptions-arm.c:529) | |
OzQuake 0x0023afec MonoTouch.ObjCRuntime.Runtime:GetNSObject<T> (.pmcs-compat.Runtime.cs:994) | |
OzQuake 0x00253624 MonoTouch.UIKit.UIControlEventProxy:Activated (.pmcs-compat.UIControl.cs:64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Xamarin.Forms; | |
namespace TheGridTest | |
{ | |
public class App | |
{ | |
public static Page GetMainPage () | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Android.App; | |
using Android.Content; | |
using Android.Widget; | |
using Android.OS; | |
using Android.Net; | |
using System.Threading.Tasks; | |
namespace NetworkCheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Bitmap async GetImageBitmapFromUrl(string url) | |
{ | |
Bitmap imageBitmap = null; | |
using (var webClient = new WebClient()) | |
{ | |
var imageBytes = await webClient.DownloadDataAsync(url); | |
if (imageBytes != null && imageBytes.Length > 0) | |
{ | |
imageBitmap = BitmapFactory.DecodeByteArray(imageBytes, 0, imageBytes.Length); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cleaning: IQX.OneList.Mobile.iOS.IQX (Release|iPhone) | |
Removing output files... | |
Clean complete | |
Building: IQX.OneList.Mobile.Shared.iOS (Release) | |
Performing main compilation... | |
Skipping project since output files are up to date | |
Build complete -- 0 errors, 0 warnings | |
Building: IQX.OneList.Mobile.iOS.Shared (Release) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using NUnit.Framework; | |
using System.ComponentModel; | |
namespace BindingListBug | |
{ | |
[TestFixture] | |
public class BindingListBugTest | |
{ | |
string changedPropertyName = string.Empty; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AirplaneModeService | |
{ | |
public bool Toggle (Context context) | |
{ | |
bool isEnabled = IsAirplaneModeOn (context); | |
// Toggle airplane mode. | |
SetSettings (context, isEnabled ? 1 : 0); | |
// Post an intent to reload. | |
Intent intent = new Intent (Intent.ActionAirplaneModeChanged); | |
intent.PutExtra ("state", !isEnabled); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using Android.App; | |
using Android.Views; | |
using Android.Widget; | |
using R = ClickEvents.Resource; | |
using Android.Text; | |
using System; | |
namespace ClickEvents | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-01-14 12:16:04.235 MoPubSDKBindingTest[4248:60b] Delegate loaded | |
2014-01-14 12:16:04.296 MoPubSDKBindingTest[4248:60b] MOPUB: Interstitial controller is loading ad with MoPub server URL: http://ads.mopub.com/m/ad?v=8&udid=ifa:E6B06DE7-058B-4F9B-B91B-59FEFC9B0D09&id=a1c58c5ac9084eeca746af006c9b4d2c&nv=1.17.0.0&o=p&sc=2.0&z=+0530&mr=1&ct=2&av=1.0&cn=AirTel&iso=in&mnc=45&mcc=404&dn=iPhone6%2C2 | |
2014-01-14 12:16:04.928 MoPubSDKBindingTest[4248:60b] MOPUB: Could not find custom event class named MPGoogleAdMobInterstitialCustomEvent | |
2014-01-14 12:16:04.930 MoPubSDKBindingTest[4248:60b] MOPUB: Interstatial ad view is fetching ad network type: admob_full | |
2014-01-14 12:16:04.931 MoPubSDKBindingTest[4248:60b] MOPUB: Interstitial controller is loading ad with MoPub server URL: http://ads.mopub.com/m/ad?v=8&udid=ifa:E6B06DE7-058B-4F9B-B91B-59FEFC9B0D09&id=a1c58c5ac9084eeca746af006c9b4d2c&nv=1.17.0.0&o=p&sc=2.0&z=+0530&mr=1&ct=2&av=1.0&cn=AirTel&iso=in&mnc=45&mcc=404&dn=iPhone6%2C2&request_id=89dc53de7ce711e3b00000259 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Android.App; | |
using Android.Widget; | |
using Android.OS; | |
using Java.Lang; | |
namespace UnhandledCrash | |
{ | |
[Activity (Label = "UnhandledCrash", MainLauncher = true)] | |
public class MainActivity : Activity |