Ejemplo n.º 1
0
        protected override Java.Lang.Object DoInBackground(params Java.Lang.Object[] @params)
        {
            var auth = new KiwiLoginService ();
            var postPicture = auth.UploadImage(filepath);
            try{
                Task.WaitAll(postPicture);
            } catch (Exception e) {
                Toast.MakeText(Application.Context, "Error posting", ToastLength.Long).Show();
                System.Console.WriteLine("NULL RETURNED FROM POSTPICTURE");
            }

            Intent intent = new Intent (activity, typeof(CustomCameraActivity));

            return intent;
        }