Skip to content

Commit 5fdcd8f

Browse files
committed
Merge pull request xamarin#138 from gonzalonm/fix_mobile_crm
Fix mobile crm
1 parent 6f34af0 commit 5fdcd8f

File tree

2 files changed

+133
-68
lines changed

2 files changed

+133
-68
lines changed

MobileCRM/MobileCRM.Android/MainActivity.cs

+71-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
using Android.App;
1+
using Android;
2+
using Android.App;
23
using Android.OS;
3-
using Xamarin.Forms.Platform.Android;
44
using Xamarin.Forms;
55
using Xamarin;
6-
using MobileCRM.Shared.Pages;
76
using MobileCRM;
8-
using Android.Graphics.Drawables;
97
using Android.Content.PM;
8+
using Android.Gms.Common;
9+
using Android.Support.V4.App;
10+
using Android.Support.V4.Content;
11+
using Android.Views;
12+
using Android.Widget;
13+
1014
/*
1115
1216
Welcome to the Xamarin.Forms MobileCRM sample app for Android.
@@ -28,18 +32,77 @@ at the bottom of the window to edit the XML directly.
2832
*/
2933
namespace MobileCRMAndroid
3034
{
31-
[Activity (Label = "MobileCRM", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
35+
[Activity(Label = "MobileCRM", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
3236
public class MainActivity : Xamarin.Forms.Platform.Android.FormsApplicationActivity
3337
{
34-
protected override void OnCreate (Bundle bundle)
38+
const int RequestAccessFineLocation = 1;
39+
bool wasInitialized = false;
40+
41+
protected override void OnCreate(Bundle bundle)
3542
{
36-
base.OnCreate (bundle);
43+
base.OnCreate(bundle);
3744

45+
// init Forms components
3846
MobileCRMApp.Init(typeof(MobileCRMApp).Assembly);
3947
Forms.Init(this, bundle);
4048
FormsMaps.Init(this, bundle);
4149

42-
LoadApplication (new App ());
50+
// check for permissions in Runtime
51+
var permissionCheck = ContextCompat.CheckSelfPermission(this, Manifest.Permission.AccessFineLocation);
52+
if (!permissionCheck.Equals(Permission.Granted))
53+
{
54+
// there is no granted permission to ACCESS_FINE_LOCATION. Requesting it in runtime
55+
ActivityCompat.RequestPermissions(this, new string[] { Manifest.Permission.AccessFineLocation }, RequestAccessFineLocation);
56+
}
57+
else
58+
{
59+
// the permission was granted in the past
60+
InitApp();
61+
}
62+
}
63+
64+
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, Permission[] grantResults)
65+
{
66+
if (requestCode != RequestAccessFineLocation) return;
67+
68+
// If request is cancelled, the result arrays are empty.
69+
if (grantResults.Length > 0 && grantResults[0] == Permission.Granted)
70+
{
71+
// permission was granted
72+
// Start app
73+
wasInitialized = true;
74+
InitApp();
75+
}
76+
else
77+
{
78+
// permission denied
79+
// close app
80+
Finish();
81+
}
82+
}
83+
84+
public override bool OnPrepareOptionsMenu(IMenu menu)
85+
{
86+
return wasInitialized && base.OnPrepareOptionsMenu(menu);
87+
}
88+
89+
private void InitApp()
90+
{
91+
if (IsGooglePlayServicesInstalled())
92+
{
93+
LoadApplication(new App());
94+
}
95+
else
96+
{
97+
Toast.MakeText(this, "Google Play Service is not installed", ToastLength.Long).Show();
98+
}
99+
}
100+
101+
private bool IsGooglePlayServicesInstalled()
102+
{
103+
var googleApiAvailability = GoogleApiAvailability.Instance;
104+
var status = googleApiAvailability.IsGooglePlayServicesAvailable(this);
105+
return status == ConnectionResult.Success;
43106
}
44107
}
45108
}

MobileCRM/MobileCRM.sln

+62-60
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2012
4-
VisualStudioVersion = 12.0.30501.0
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MobileCRM.Android", "MobileCRM.Android\MobileCRM.Android.csproj", "{83491F6D-BA09-477D-9DC0-3E670794579F}"
77
EndProject
@@ -14,6 +14,12 @@ EndProject
1414
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MobileCRM.Services", "MobileCRM.Services\MobileCRM.Services.csproj", "{ABDE5DEF-A5D7-410A-B9BE-FF897688EB8F}"
1515
EndProject
1616
Global
17+
GlobalSection(SharedMSBuildProjectFiles) = preSolution
18+
MobileCRM.Shared\MobileCRM.Shared.projitems*{2ddbd0eb-9989-4194-86d0-216f141cb69a}*SharedItemsImports = 13
19+
MobileCRM.Shared\MobileCRM.Shared.projitems*{6a02aba0-ee87-4c04-a065-bef98d7f4e53}*SharedItemsImports = 4
20+
MobileCRM.Shared\MobileCRM.Shared.projitems*{83491f6d-ba09-477d-9dc0-3e670794579f}*SharedItemsImports = 4
21+
MobileCRM.Shared\MobileCRM.Shared.projitems*{91cd0edb-85f3-4281-b340-1da6977c233b}*SharedItemsImports = 4
22+
EndGlobalSection
1723
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1824
Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
1925
Ad-Hoc|ARM = Ad-Hoc|ARM
@@ -41,58 +47,6 @@ Global
4147
Release|x86 = Release|x86
4248
EndGlobalSection
4349
GlobalSection(ProjectConfigurationPlatforms) = postSolution
44-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
45-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Any CPU.Build.0 = Ad-Hoc|iPhone
46-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
47-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|ARM.Build.0 = Ad-Hoc|iPhone
48-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
49-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
50-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhone.Deploy.0 = Ad-Hoc|iPhone
51-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
52-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
53-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Ad-Hoc|iPhoneSimulator
54-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhone
55-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhone
56-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Mixed Platforms.Deploy.0 = Ad-Hoc|iPhone
57-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
58-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|x86.Build.0 = Ad-Hoc|iPhone
59-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
60-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Any CPU.Build.0 = AppStore|iPhone
61-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|ARM.ActiveCfg = AppStore|iPhone
62-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|ARM.Build.0 = AppStore|iPhone
63-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
64-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhone.Build.0 = AppStore|iPhone
65-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhone.Deploy.0 = AppStore|iPhone
66-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
67-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
68-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhoneSimulator.Deploy.0 = AppStore|iPhoneSimulator
69-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhone
70-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhone
71-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Mixed Platforms.Deploy.0 = AppStore|iPhone
72-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|x86.ActiveCfg = AppStore|iPhone
73-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|x86.Build.0 = AppStore|iPhone
74-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|Any CPU.ActiveCfg = Debug|iPhone
75-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|ARM.ActiveCfg = Debug|iPhone
76-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhone.ActiveCfg = Debug|iPhone
77-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhone.Build.0 = Debug|iPhone
78-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhone.Deploy.0 = Debug|iPhone
79-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
80-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
81-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhoneSimulator.Deploy.0 = Debug|iPhoneSimulator
82-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhoneSimulator
83-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|Mixed Platforms.Deploy.0 = Debug|iPhoneSimulator
84-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|x86.ActiveCfg = Debug|iPhone
85-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|Any CPU.ActiveCfg = Release|iPhone
86-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|ARM.ActiveCfg = Release|iPhone
87-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhone.ActiveCfg = Release|iPhone
88-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhone.Build.0 = Release|iPhone
89-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhone.Deploy.0 = Release|iPhone
90-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
91-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
92-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhoneSimulator.Deploy.0 = Release|iPhoneSimulator
93-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|Mixed Platforms.ActiveCfg = Release|iPhone
94-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|Mixed Platforms.Deploy.0 = Release|iPhone
95-
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|x86.ActiveCfg = Release|iPhone
9650
{83491F6D-BA09-477D-9DC0-3E670794579F}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
9751
{83491F6D-BA09-477D-9DC0-3E670794579F}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
9852
{83491F6D-BA09-477D-9DC0-3E670794579F}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
@@ -125,6 +79,8 @@ Global
12579
{83491F6D-BA09-477D-9DC0-3E670794579F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
12680
{83491F6D-BA09-477D-9DC0-3E670794579F}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU
12781
{83491F6D-BA09-477D-9DC0-3E670794579F}.Debug|x86.ActiveCfg = Debug|Any CPU
82+
{83491F6D-BA09-477D-9DC0-3E670794579F}.Debug|x86.Build.0 = Debug|Any CPU
83+
{83491F6D-BA09-477D-9DC0-3E670794579F}.Debug|x86.Deploy.0 = Debug|Any CPU
12884
{83491F6D-BA09-477D-9DC0-3E670794579F}.Release|Any CPU.ActiveCfg = Release|Any CPU
12985
{83491F6D-BA09-477D-9DC0-3E670794579F}.Release|Any CPU.Build.0 = Release|Any CPU
13086
{83491F6D-BA09-477D-9DC0-3E670794579F}.Release|ARM.ActiveCfg = Release|Any CPU
@@ -190,6 +146,58 @@ Global
190146
{91CD0EDB-85F3-4281-B340-1DA6977C233B}.Release|x86.ActiveCfg = Release|x86
191147
{91CD0EDB-85F3-4281-B340-1DA6977C233B}.Release|x86.Build.0 = Release|x86
192148
{91CD0EDB-85F3-4281-B340-1DA6977C233B}.Release|x86.Deploy.0 = Release|x86
149+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
150+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Any CPU.Build.0 = Ad-Hoc|iPhone
151+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
152+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|ARM.Build.0 = Ad-Hoc|iPhone
153+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
154+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
155+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhone.Deploy.0 = Ad-Hoc|iPhone
156+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
157+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
158+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Ad-Hoc|iPhoneSimulator
159+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhone
160+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhone
161+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|Mixed Platforms.Deploy.0 = Ad-Hoc|iPhone
162+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
163+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Ad-Hoc|x86.Build.0 = Ad-Hoc|iPhone
164+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
165+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Any CPU.Build.0 = AppStore|iPhone
166+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|ARM.ActiveCfg = AppStore|iPhone
167+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|ARM.Build.0 = AppStore|iPhone
168+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
169+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhone.Build.0 = AppStore|iPhone
170+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhone.Deploy.0 = AppStore|iPhone
171+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
172+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
173+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|iPhoneSimulator.Deploy.0 = AppStore|iPhoneSimulator
174+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhone
175+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhone
176+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|Mixed Platforms.Deploy.0 = AppStore|iPhone
177+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|x86.ActiveCfg = AppStore|iPhone
178+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.AppStore|x86.Build.0 = AppStore|iPhone
179+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|Any CPU.ActiveCfg = Debug|iPhone
180+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|ARM.ActiveCfg = Debug|iPhone
181+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhone.ActiveCfg = Debug|iPhone
182+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhone.Build.0 = Debug|iPhone
183+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhone.Deploy.0 = Debug|iPhone
184+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
185+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
186+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|iPhoneSimulator.Deploy.0 = Debug|iPhoneSimulator
187+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhoneSimulator
188+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|Mixed Platforms.Deploy.0 = Debug|iPhoneSimulator
189+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Debug|x86.ActiveCfg = Debug|iPhone
190+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|Any CPU.ActiveCfg = Release|iPhone
191+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|ARM.ActiveCfg = Release|iPhone
192+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhone.ActiveCfg = Release|iPhone
193+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhone.Build.0 = Release|iPhone
194+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhone.Deploy.0 = Release|iPhone
195+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
196+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
197+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|iPhoneSimulator.Deploy.0 = Release|iPhoneSimulator
198+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|Mixed Platforms.ActiveCfg = Release|iPhone
199+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|Mixed Platforms.Deploy.0 = Release|iPhone
200+
{6A02ABA0-EE87-4C04-A065-BEF98D7F4E53}.Release|x86.ActiveCfg = Release|iPhone
193201
{ABDE5DEF-A5D7-410A-B9BE-FF897688EB8F}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
194202
{ABDE5DEF-A5D7-410A-B9BE-FF897688EB8F}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
195203
{ABDE5DEF-A5D7-410A-B9BE-FF897688EB8F}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
@@ -239,12 +247,6 @@ Global
239247
{ABDE5DEF-A5D7-410A-B9BE-FF897688EB8F}.Release|x86.ActiveCfg = Release|Any CPU
240248
{ABDE5DEF-A5D7-410A-B9BE-FF897688EB8F}.Release|x86.Build.0 = Release|Any CPU
241249
EndGlobalSection
242-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
243-
MobileCRM.Shared\MobileCRM.Shared.projitems*{2ddbd0eb-9989-4194-86d0-216f141cb69a}*SharedItemsImports = 13
244-
MobileCRM.Shared\MobileCRM.Shared.projitems*{83491f6d-ba09-477d-9dc0-3e670794579f}*SharedItemsImports = 4
245-
MobileCRM.Shared\MobileCRM.Shared.projitems*{91cd0edb-85f3-4281-b340-1da6977c233b}*SharedItemsImports = 4
246-
MobileCRM.Shared\MobileCRM.Shared.projitems*{6a02aba0-ee87-4c04-a065-bef98d7f4e53}*SharedItemsImports = 4
247-
EndGlobalSection
248250
GlobalSection(SolutionProperties) = preSolution
249251
HideSolutionNode = FALSE
250252
EndGlobalSection

0 commit comments

Comments
 (0)