├── Certificates └── Android │ ├── README.txt │ ├── XamarinGoogleAuth.keystore │ └── XamarinGoogleAuth.keyInfo ├── Xamarin_GoogleAuth.iOS ├── Resources │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Images.xcassets │ │ └── AppIcons.appiconset │ │ │ ├── Icon-76.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ └── Contents.json │ └── LaunchScreen.storyboard ├── Entitlements.plist ├── Configuration.cs ├── Main.cs ├── packages.config ├── AuthViewController.designer.cs ├── Info.plist ├── AuthViewController.cs ├── AppDelegate.cs ├── Main.storyboard └── Xamarin_GoogleAuth.iOS.csproj ├── Xamarin_GoogleAuth.Android ├── Resources │ ├── drawable-hdpi │ │ └── Icon.png │ ├── drawable-mdpi │ │ └── Icon.png │ ├── values │ │ └── Strings.xml │ ├── drawable-xhdpi │ │ └── Icon.png │ ├── drawable-xxhdpi │ │ └── Icon.png │ ├── drawable-xxxhdpi │ │ └── Icon.png │ ├── layout │ │ └── Main.axml │ ├── AboutResources.txt │ └── Resource.designer.cs ├── Configuration.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── packages.config ├── Assets │ └── AboutAssets.txt ├── GoogleAuthInterceptor.cs ├── MainActivity.cs └── Xamarin_GoogleAuth.Android.csproj ├── Xamarin_GoogleAuth ├── Authentication │ ├── GoogleOAuthToken.cs │ ├── IGoogleAuthenticatorDelegate.cs │ └── GoogleAuthenticator.cs ├── Services │ ├── GoogleEmail.cs │ └── GoogleService.cs ├── packages.config ├── Properties │ └── AssemblyInfo.cs └── Xamarin_GoogleAuth.csproj ├── README.md ├── .gitignore └── Xamarin-GoogleAuth.sln /Certificates/Android/README.txt: -------------------------------------------------------------------------------- 1 | Keystore password = woodenmoose 2 | Key alias = XamarinGoogleAuth 3 | Key password = woodenmoose -------------------------------------------------------------------------------- /Certificates/Android/XamarinGoogleAuth.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Certificates/Android/XamarinGoogleAuth.keystore -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/ITunesArtwork -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/ITunesArtwork@2x -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Login with Google 4 | 5 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.Android/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/drawable-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.Android/Resources/drawable-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimLariviere/Sample-XamarinAuth-Google/HEAD/Xamarin_GoogleAuth.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Certificates/Android/XamarinGoogleAuth.keyInfo: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2017-08-21T00:00:00 4 | Mon Aug 21 10:36:35 CEST 2017 au : Wed Aug 14 10:36:35 CEST 2047 5 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth/Authentication/GoogleOAuthToken.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin_GoogleAuth.Authentication 2 | { 3 | public class GoogleOAuthToken 4 | { 5 | public string TokenType { get; set; } 6 | public string AccessToken { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth/Services/GoogleEmail.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin_GoogleAuth.Services 2 | { 3 | public class GoogleEmail 4 | { 5 | public GoogleEmailData Data { get; set; } 6 | } 7 | 8 | public class GoogleEmailData 9 | { 10 | public string Email { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sample-XamarinAuth-Google 2 | Sample app using Xamarin.Auth to authenticate the users against Google on Android and iOS. 3 | Make use of the IsUsingNativeUI flag to comply to Google's new policy for OAuth on native apps. 4 | 5 | See blog post for more information: http://timothelariviere.com/2017/09/01/authenticate-users-through-google-with-xamarin-auth -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Configuration.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin_GoogleAuth.iOS 2 | { 3 | public static class Configuration 4 | { 5 | public const string ClientId = "723962257721-lcjvps5ag42butfd44tojo01cuj85d8t.apps.googleusercontent.com"; 6 | public const string Scope = "email"; 7 | public const string RedirectUrl = "com.woodenmoose.xamarin.googleauth:/oauth2redirect"; 8 | } 9 | } -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Configuration.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin_GoogleAuth.Droid 2 | { 3 | public static class Configuration 4 | { 5 | public const string ClientId = "723962257721-ql0tki3si3s22l1lsovimivkmnrfm6rr.apps.googleusercontent.com"; 6 | public const string Scope = "email"; 7 | public const string RedirectUrl = "com.woodenmoose.xamarin.googleauth:/oauth2redirect"; 8 | } 9 | } -------------------------------------------------------------------------------- /Xamarin_GoogleAuth/Authentication/IGoogleAuthenticatorDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin_GoogleAuth.Authentication 4 | { 5 | public interface IGoogleAuthenticationDelegate 6 | { 7 | void OnAuthenticationCompleted(GoogleOAuthToken token); 8 | void OnAuthenticationFailed(string message, Exception exception); 9 | void OnAuthenticationCanceled(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using UIKit; 2 | 3 | namespace Xamarin_GoogleAuth.iOS 4 | { 5 | public class Application 6 | { 7 | // This is the main entry point of the application. 8 | static void Main (string[] args) 9 | { 10 | // if you want to use a different Application Delegate class from "AppDelegate" 11 | // you can specify it here. 12 | UIApplication.Main (args, null, "AppDelegate"); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- 1 | #pragma warning disable 1591 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | [assembly: global::Android.Runtime.ResourceDesignerAttribute("Xamarin_GoogleAuth.Droid.Resource", IsApplication=true)] 13 | 14 | namespace Xamarin_GoogleAuth.Droid 15 | { 16 | 17 | 18 | [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] 19 | public partial class Resource 20 | { 21 | 22 | static Resource() 23 | { 24 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 25 | } 26 | 27 | public static void UpdateIdValues() 28 | { 29 | global::Xamarin.Auth.Resource.Animation.slide_in_right = global::Xamarin_GoogleAuth.Droid.Resource.Animation.slide_in_right; 30 | global::Xamarin.Auth.Resource.Animation.slide_out_left = global::Xamarin_GoogleAuth.Droid.Resource.Animation.slide_out_left; 31 | global::Xamarin.Auth.Resource.Drawable.ic_arrow_back = global::Xamarin_GoogleAuth.Droid.Resource.Drawable.ic_arrow_back; 32 | global::Xamarin.Auth.Resource.Id.webview = global::Xamarin_GoogleAuth.Droid.Resource.Id.webview; 33 | global::Xamarin.Auth.Resource.Layout.activity_webview = global::Xamarin_GoogleAuth.Droid.Resource.Layout.activity_webview; 34 | global::Xamarin.Auth.Resource.String.title_activity_webview = global::Xamarin_GoogleAuth.Droid.Resource.String.title_activity_webview; 35 | } 36 | 37 | public partial class Animation 38 | { 39 | 40 | // aapt resource value: 0x7f040000 41 | public const int slide_in_right = 2130968576; 42 | 43 | // aapt resource value: 0x7f040001 44 | public const int slide_out_left = 2130968577; 45 | 46 | static Animation() 47 | { 48 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 49 | } 50 | 51 | private Animation() 52 | { 53 | } 54 | } 55 | 56 | public partial class Attribute 57 | { 58 | 59 | static Attribute() 60 | { 61 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 62 | } 63 | 64 | private Attribute() 65 | { 66 | } 67 | } 68 | 69 | public partial class Drawable 70 | { 71 | 72 | // aapt resource value: 0x7f020000 73 | public const int ic_arrow_back = 2130837504; 74 | 75 | // aapt resource value: 0x7f020001 76 | public const int Icon = 2130837505; 77 | 78 | static Drawable() 79 | { 80 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 81 | } 82 | 83 | private Drawable() 84 | { 85 | } 86 | } 87 | 88 | public partial class Id 89 | { 90 | 91 | // aapt resource value: 0x7f060001 92 | public const int googleLoginButton = 2131099649; 93 | 94 | // aapt resource value: 0x7f060000 95 | public const int webview = 2131099648; 96 | 97 | static Id() 98 | { 99 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 100 | } 101 | 102 | private Id() 103 | { 104 | } 105 | } 106 | 107 | public partial class Layout 108 | { 109 | 110 | // aapt resource value: 0x7f030000 111 | public const int activity_webview = 2130903040; 112 | 113 | // aapt resource value: 0x7f030001 114 | public const int Main = 2130903041; 115 | 116 | static Layout() 117 | { 118 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 119 | } 120 | 121 | private Layout() 122 | { 123 | } 124 | } 125 | 126 | public partial class String 127 | { 128 | 129 | // aapt resource value: 0x7f050001 130 | public const int googleLogin = 2131034113; 131 | 132 | // aapt resource value: 0x7f050000 133 | public const int title_activity_webview = 2131034112; 134 | 135 | static String() 136 | { 137 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 138 | } 139 | 140 | private String() 141 | { 142 | } 143 | } 144 | } 145 | } 146 | #pragma warning restore 1591 147 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth/Xamarin_GoogleAuth.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 7 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908} 8 | Library 9 | Xamarin_GoogleAuth 10 | Xamarin_GoogleAuth 11 | v4.6 12 | Profile44 13 | 10.0 14 | 15 | 16 | 17 | 18 | true 19 | full 20 | false 21 | bin\Debug 22 | DEBUG; 23 | prompt 24 | 4 25 | false 26 | 27 | 28 | full 29 | true 30 | bin\Release 31 | prompt 32 | 4 33 | false 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | ..\packages\Newtonsoft.Json.10.0.3\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll 46 | 47 | 48 | ..\packages\PCLCrypto.2.0.147\lib\portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10\PCLCrypto.dll 49 | 50 | 51 | ..\packages\PInvoke.BCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll 52 | 53 | 54 | ..\packages\PInvoke.Kernel32.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll 55 | 56 | 57 | ..\packages\PInvoke.NCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll 58 | 59 | 60 | ..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll 61 | 62 | 63 | ..\packages\Validation.2.2.8\lib\portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10\Validation.dll 64 | 65 | 66 | ..\packages\Xamarin.Auth.1.5.0.3\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+XamarinIOS10\Xamarin.Auth.dll 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.suo 8 | *.user 9 | *.userosscache 10 | *.sln.docstates 11 | 12 | # User-specific files (MonoDevelop/Xamarin Studio) 13 | *.userprefs 14 | 15 | # Build results 16 | [Dd]ebug/ 17 | [Dd]ebugPublic/ 18 | [Rr]elease/ 19 | [Rr]eleases/ 20 | x64/ 21 | x86/ 22 | bld/ 23 | [Bb]in/ 24 | [Oo]bj/ 25 | [Ll]og/ 26 | 27 | # Visual Studio 2015 cache/options directory 28 | .vs/ 29 | # Uncomment if you have tasks that create the project's static files in wwwroot 30 | #wwwroot/ 31 | 32 | # MSTest test Results 33 | [Tt]est[Rr]esult*/ 34 | [Bb]uild[Ll]og.* 35 | 36 | # NUNIT 37 | *.VisualState.xml 38 | TestResult.xml 39 | 40 | # Build Results of an ATL Project 41 | [Dd]ebugPS/ 42 | [Rr]eleasePS/ 43 | dlldata.c 44 | 45 | # .NET Core 46 | project.lock.json 47 | project.fragment.lock.json 48 | artifacts/ 49 | **/Properties/launchSettings.json 50 | 51 | *_i.c 52 | *_p.c 53 | *_i.h 54 | *.ilk 55 | *.meta 56 | *.obj 57 | *.pch 58 | *.pdb 59 | *.pgc 60 | *.pgd 61 | *.rsp 62 | *.sbr 63 | *.tlb 64 | *.tli 65 | *.tlh 66 | *.tmp 67 | *.tmp_proj 68 | *.log 69 | *.vspscc 70 | *.vssscc 71 | .builds 72 | *.pidb 73 | *.svclog 74 | *.scc 75 | 76 | # Chutzpah Test files 77 | _Chutzpah* 78 | 79 | # Visual C++ cache files 80 | ipch/ 81 | *.aps 82 | *.ncb 83 | *.opendb 84 | *.opensdf 85 | *.sdf 86 | *.cachefile 87 | *.VC.db 88 | *.VC.VC.opendb 89 | 90 | # Visual Studio profiler 91 | *.psess 92 | *.vsp 93 | *.vspx 94 | *.sap 95 | 96 | # TFS 2012 Local Workspace 97 | $tf/ 98 | 99 | # Guidance Automation Toolkit 100 | *.gpState 101 | 102 | # ReSharper is a .NET coding add-in 103 | _ReSharper*/ 104 | *.[Rr]e[Ss]harper 105 | *.DotSettings.user 106 | 107 | # JustCode is a .NET coding add-in 108 | .JustCode 109 | 110 | # TeamCity is a build add-in 111 | _TeamCity* 112 | 113 | # DotCover is a Code Coverage Tool 114 | *.dotCover 115 | 116 | # Visual Studio code coverage results 117 | *.coverage 118 | *.coveragexml 119 | 120 | # NCrunch 121 | _NCrunch_* 122 | .*crunch*.local.xml 123 | nCrunchTemp_* 124 | 125 | # MightyMoose 126 | *.mm.* 127 | AutoTest.Net/ 128 | 129 | # Web workbench (sass) 130 | .sass-cache/ 131 | 132 | # Installshield output folder 133 | [Ee]xpress/ 134 | 135 | # DocProject is a documentation generator add-in 136 | DocProject/buildhelp/ 137 | DocProject/Help/*.HxT 138 | DocProject/Help/*.HxC 139 | DocProject/Help/*.hhc 140 | DocProject/Help/*.hhk 141 | DocProject/Help/*.hhp 142 | DocProject/Help/Html2 143 | DocProject/Help/html 144 | 145 | # Click-Once directory 146 | publish/ 147 | 148 | # Publish Web Output 149 | *.[Pp]ublish.xml 150 | *.azurePubxml 151 | # TODO: Comment the next line if you want to checkin your web deploy settings 152 | # but database connection strings (with potential passwords) will be unencrypted 153 | *.pubxml 154 | *.publishproj 155 | 156 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 157 | # checkin your Azure Web App publish settings, but sensitive information contained 158 | # in these scripts will be unencrypted 159 | PublishScripts/ 160 | 161 | # NuGet Packages 162 | *.nupkg 163 | # The packages folder can be ignored because of Package Restore 164 | **/packages/* 165 | # except build/, which is used as an MSBuild target. 166 | !**/packages/build/ 167 | # Uncomment if necessary however generally it will be regenerated when needed 168 | #!**/packages/repositories.config 169 | # NuGet v3's project.json files produces more ignorable files 170 | *.nuget.props 171 | *.nuget.targets 172 | 173 | # Microsoft Azure Build Output 174 | csx/ 175 | *.build.csdef 176 | 177 | # Microsoft Azure Emulator 178 | ecf/ 179 | rcf/ 180 | 181 | # Windows Store app package directories and files 182 | AppPackages/ 183 | BundleArtifacts/ 184 | Package.StoreAssociation.xml 185 | _pkginfo.txt 186 | 187 | # Visual Studio cache files 188 | # files ending in .cache can be ignored 189 | *.[Cc]ache 190 | # but keep track of directories ending in .cache 191 | !*.[Cc]ache/ 192 | 193 | # Others 194 | ClientBin/ 195 | ~$* 196 | *~ 197 | *.dbmdl 198 | *.dbproj.schemaview 199 | *.jfm 200 | *.pfx 201 | *.publishsettings 202 | orleans.codegen.cs 203 | 204 | # Since there are multiple workflows, uncomment next line to ignore bower_components 205 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 206 | #bower_components/ 207 | 208 | # RIA/Silverlight projects 209 | Generated_Code/ 210 | 211 | # Backup & report files from converting an old project file 212 | # to a newer Visual Studio version. Backup files are not needed, 213 | # because we have git ;-) 214 | _UpgradeReport_Files/ 215 | Backup*/ 216 | UpgradeLog*.XML 217 | UpgradeLog*.htm 218 | 219 | # SQL Server files 220 | *.mdf 221 | *.ldf 222 | *.ndf 223 | 224 | # Business Intelligence projects 225 | *.rdl.data 226 | *.bim.layout 227 | *.bim_*.settings 228 | 229 | # Microsoft Fakes 230 | FakesAssemblies/ 231 | 232 | # GhostDoc plugin setting file 233 | *.GhostDoc.xml 234 | 235 | # Node.js Tools for Visual Studio 236 | .ntvs_analysis.dat 237 | node_modules/ 238 | 239 | # Typescript v1 declaration files 240 | typings/ 241 | 242 | # Visual Studio 6 build log 243 | *.plg 244 | 245 | # Visual Studio 6 workspace options file 246 | *.opt 247 | 248 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 249 | *.vbw 250 | 251 | # Visual Studio LightSwitch build output 252 | **/*.HTMLClient/GeneratedArtifacts 253 | **/*.DesktopClient/GeneratedArtifacts 254 | **/*.DesktopClient/ModelManifest.xml 255 | **/*.Server/GeneratedArtifacts 256 | **/*.Server/ModelManifest.xml 257 | _Pvt_Extensions 258 | 259 | # Paket dependency manager 260 | .paket/paket.exe 261 | paket-files/ 262 | 263 | # FAKE - F# Make 264 | .fake/ 265 | 266 | # JetBrains Rider 267 | .idea/ 268 | *.sln.iml 269 | 270 | # CodeRush 271 | .cr/ 272 | 273 | # Python Tools for Visual Studio (PTVS) 274 | __pycache__/ 275 | *.pyc 276 | 277 | # Cake - Uncomment if you are using it 278 | # tools/** 279 | # !tools/packages.config 280 | 281 | # Telerik's JustMock configuration file 282 | *.jmconfig 283 | 284 | # BizTalk build output 285 | *.btp.cs 286 | *.btm.cs 287 | *.odx.cs 288 | *.xsd.cs 289 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.Android/Xamarin_GoogleAuth.Android.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 7 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63} 8 | Library 9 | Xamarin_GoogleAuth.Droid 10 | Assets 11 | Resources 12 | Resource 13 | Resources\Resource.designer.cs 14 | True 15 | True 16 | v7.1 17 | Xamarin_GoogleAuth.Android 18 | Properties\AndroidManifest.xml 19 | 20 | 21 | 22 | 23 | true 24 | full 25 | false 26 | bin\Debug 27 | DEBUG; 28 | prompt 29 | 4 30 | None 31 | false 32 | 33 | 34 | full 35 | true 36 | bin\Release 37 | prompt 38 | 4 39 | false 40 | false 41 | armeabi-v7a;x86 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | ..\packages\Xamarin.Android.Support.Annotations.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll 51 | 52 | 53 | ..\packages\Xamarin.Android.Support.Compat.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll 54 | 55 | 56 | ..\packages\Xamarin.Android.Support.CustomTabs.25.4.0.2\lib\MonoAndroid70\Xamarin.Android.Support.CustomTabs.dll 57 | 58 | 59 | ..\packages\Xamarin.Auth.1.5.0.3\lib\MonoAndroid10\Xamarin.Auth.dll 60 | 61 | 62 | 63 | 64 | Xamarin_GoogleAuth 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | Designer 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 96 | 97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /Xamarin-GoogleAuth.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26730.8 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin_GoogleAuth.Android", "Xamarin_GoogleAuth.Android\Xamarin_GoogleAuth.Android.csproj", "{C8E3540A-3004-4055-925A-EB9ED4E9CC63}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin_GoogleAuth.iOS", "Xamarin_GoogleAuth.iOS\Xamarin_GoogleAuth.iOS.csproj", "{F80DF0CC-0EDE-424B-B98D-38255E752A17}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin_GoogleAuth", "Xamarin_GoogleAuth\Xamarin_GoogleAuth.csproj", "{4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Debug|Any CPU = Debug|Any CPU 15 | Debug|ARM = Debug|ARM 16 | Debug|iPhone = Debug|iPhone 17 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 18 | Debug|x64 = Debug|x64 19 | Debug|x86 = Debug|x86 20 | Release|Any CPU = Release|Any CPU 21 | Release|ARM = Release|ARM 22 | Release|iPhone = Release|iPhone 23 | Release|iPhoneSimulator = Release|iPhoneSimulator 24 | Release|x64 = Release|x64 25 | Release|x86 = Release|x86 26 | EndGlobalSection 27 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 28 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 29 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|Any CPU.Build.0 = Debug|Any CPU 30 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 31 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|ARM.ActiveCfg = Debug|Any CPU 32 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|ARM.Build.0 = Debug|Any CPU 33 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|ARM.Deploy.0 = Debug|Any CPU 34 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|iPhone.ActiveCfg = Debug|Any CPU 35 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|iPhone.Build.0 = Debug|Any CPU 36 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|iPhone.Deploy.0 = Debug|Any CPU 37 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 38 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 39 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 40 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|x64.ActiveCfg = Debug|Any CPU 41 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|x64.Build.0 = Debug|Any CPU 42 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|x64.Deploy.0 = Debug|Any CPU 43 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|x86.ActiveCfg = Debug|Any CPU 44 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|x86.Build.0 = Debug|Any CPU 45 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Debug|x86.Deploy.0 = Debug|Any CPU 46 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|Any CPU.ActiveCfg = Release|Any CPU 47 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|Any CPU.Build.0 = Release|Any CPU 48 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|Any CPU.Deploy.0 = Release|Any CPU 49 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|ARM.ActiveCfg = Release|Any CPU 50 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|ARM.Build.0 = Release|Any CPU 51 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|ARM.Deploy.0 = Release|Any CPU 52 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|iPhone.ActiveCfg = Release|Any CPU 53 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|iPhone.Build.0 = Release|Any CPU 54 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|iPhone.Deploy.0 = Release|Any CPU 55 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 56 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 57 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 58 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|x64.ActiveCfg = Release|Any CPU 59 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|x64.Build.0 = Release|Any CPU 60 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|x64.Deploy.0 = Release|Any CPU 61 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|x86.ActiveCfg = Release|Any CPU 62 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|x86.Build.0 = Release|Any CPU 63 | {C8E3540A-3004-4055-925A-EB9ED4E9CC63}.Release|x86.Deploy.0 = Release|Any CPU 64 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|Any CPU.ActiveCfg = Debug|iPhone 65 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|ARM.ActiveCfg = Debug|iPhone 66 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|iPhone.ActiveCfg = Debug|iPhone 67 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|iPhone.Build.0 = Debug|iPhone 68 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 69 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 70 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|x64.ActiveCfg = Debug|iPhone 71 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Debug|x86.ActiveCfg = Debug|iPhone 72 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|Any CPU.ActiveCfg = Release|iPhone 73 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|ARM.ActiveCfg = Release|iPhone 74 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|iPhone.ActiveCfg = Release|iPhone 75 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|iPhone.Build.0 = Release|iPhone 76 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 77 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 78 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|x64.ActiveCfg = Release|iPhone 79 | {F80DF0CC-0EDE-424B-B98D-38255E752A17}.Release|x86.ActiveCfg = Release|iPhone 80 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 81 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|Any CPU.Build.0 = Debug|Any CPU 82 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|ARM.ActiveCfg = Debug|Any CPU 83 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|ARM.Build.0 = Debug|Any CPU 84 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|iPhone.ActiveCfg = Debug|Any CPU 85 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|iPhone.Build.0 = Debug|Any CPU 86 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 87 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 88 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|x64.ActiveCfg = Debug|Any CPU 89 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|x64.Build.0 = Debug|Any CPU 90 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|x86.ActiveCfg = Debug|Any CPU 91 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Debug|x86.Build.0 = Debug|Any CPU 92 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|Any CPU.ActiveCfg = Release|Any CPU 93 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|Any CPU.Build.0 = Release|Any CPU 94 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|ARM.ActiveCfg = Release|Any CPU 95 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|ARM.Build.0 = Release|Any CPU 96 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|iPhone.ActiveCfg = Release|Any CPU 97 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|iPhone.Build.0 = Release|Any CPU 98 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 99 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 100 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|x64.ActiveCfg = Release|Any CPU 101 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|x64.Build.0 = Release|Any CPU 102 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|x86.ActiveCfg = Release|Any CPU 103 | {4FAABF6D-8B2A-4ED5-9351-9EAC0121D908}.Release|x86.Build.0 = Release|Any CPU 104 | EndGlobalSection 105 | GlobalSection(SolutionProperties) = preSolution 106 | HideSolutionNode = FALSE 107 | EndGlobalSection 108 | GlobalSection(ExtensibilityGlobals) = postSolution 109 | SolutionGuid = {A6454AFA-0E34-4131-9C2D-371C5F5FA38B} 110 | EndGlobalSection 111 | EndGlobal 112 | -------------------------------------------------------------------------------- /Xamarin_GoogleAuth.iOS/Xamarin_GoogleAuth.iOS.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 7 | {F80DF0CC-0EDE-424B-B98D-38255E752A17} 8 | Exe 9 | Xamarin_GoogleAuth.iOS 10 | Resources 11 | Xamarin_GoogleAuth.iOS 12 | 13 | 14 | 15 | 16 | true 17 | full 18 | false 19 | bin\iPhoneSimulator\Debug 20 | DEBUG; 21 | prompt 22 | 4 23 | false 24 | i386 25 | None 26 | true 27 | true 28 | 29 | 30 | full 31 | true 32 | bin\iPhone\Release 33 | prompt 34 | 4 35 | Entitlements.plist 36 | ARMv7, ARM64 37 | false 38 | iPhone Developer 39 | 40 | 41 | full 42 | true 43 | bin\iPhoneSimulator\Release 44 | prompt 45 | 4 46 | i386 47 | false 48 | None 49 | 50 | 51 | true 52 | full 53 | false 54 | bin\iPhone\Debug 55 | DEBUG; 56 | prompt 57 | 4 58 | false 59 | ARMv7, ARM64 60 | Entitlements.plist 61 | true 62 | iPhone Developer 63 | true 64 | 65 | 66 | 67 | ..\packages\PCLCrypto.2.0.147\lib\xamarinios10\PCLCrypto.dll 68 | 69 | 70 | ..\packages\PInvoke.BCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll 71 | 72 | 73 | ..\packages\PInvoke.Kernel32.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll 74 | 75 | 76 | ..\packages\PInvoke.NCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll 77 | 78 | 79 | ..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll 80 | 81 | 82 | 83 | 84 | 85 | 86 | ..\packages\Validation.2.2.8\lib\dotnet\Validation.dll 87 | 88 | 89 | ..\packages\Xamarin.Auth.1.5.0.3\lib\Xamarin.iOS10\Xamarin.Auth.dll 90 | 91 | 92 | 93 | 94 | 95 | Xamarin_GoogleAuth 96 | 97 | 98 | 99 | 100 | false 101 | 102 | 103 | false 104 | 105 | 106 | false 107 | 108 | 109 | false 110 | 111 | 112 | false 113 | 114 | 115 | false 116 | 117 | 118 | false 119 | 120 | 121 | false 122 | 123 | 124 | false 125 | 126 | 127 | false 128 | 129 | 130 | false 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | Designer 144 | 145 | 146 | 147 | Designer 148 | 149 | 150 | 151 | 152 | 153 | 154 | AuthViewController.cs 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 164 | 165 | 166 | 167 | --------------------------------------------------------------------------------