Skip to content

Instantly share code, notes, and snippets.

View manojkulkarni30's full-sized avatar
🏠
Working from home

Manoj Sunil Kulkarni manojkulkarni30

🏠
Working from home
View GitHub Profile
@manojkulkarni30
manojkulkarni30 / xamarinandroidbindings.md
Created April 21, 2021 12:49 — forked from JonDouglas/xamarinandroidbindings.md
Xamarin Android Bindings Troubleshooting

Approaching a Xamarin.Android Bindings Case

1. Investigation

One of the best ways to investigate a problematic Xamarin.Android Binding is to first ensure you have the proper tooling available:

@manojkulkarni30
manojkulkarni30 / androidemulator.md
Last active April 2, 2021 09:24
Start Android Emulator From Command Line With Hyper V Feature Enabled
@manojkulkarni30
manojkulkarni30 / GitConfig.md
Created June 24, 2018 13:02
Git Configuration
  • git config --list (View Git Config Settings)
@manojkulkarni30
manojkulkarni30 / CustomButton.md
Last active March 5, 2018 03:50
Custom Button With Line Wrap in Xamarin Forms
using RendererApp;
using RendererApp.iOS;
using Xamarin.Forms;
using Xamarin.Forms.Platform.iOS;
using UIKit;

[assembly: ExportRenderer(typeof(CustomButton), typeof(CustomButtonRenderer))]
namespace RendererApp.iOS
{
@manojkulkarni30
manojkulkarni30 / Sqlite.md
Created January 27, 2018 16:00
SQLite Connection In Xamarin

Android

string path = System.Environment.GetFolderPath(
    System.Environment.SpecialFolder.Personal);
return System.IO.Path.Combine(path, filename);

iOS

string docFolder = Environment.GetFolderPath(Environment.SpecialFolder.Personal);