Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
Update to latest libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Feb 28, 2018
1 parent b845b76 commit c309221
Show file tree
Hide file tree
Showing 47 changed files with 19,768 additions and 27,380 deletions.
60 changes: 30 additions & 30 deletions MyShop.Android/Helpers/Settings.cs
Expand Up @@ -5,40 +5,40 @@
namespace MyShop.Droid.Helpers
{
/// <summary>
/// This is the Settings static class that can be used in your Core solution or in any
/// of your client applications. All settings are laid out the same exact way with getters
/// and setters.
/// </summary>
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
/// <summary>
/// This is the Settings static class that can be used in your Core solution or in any
/// of your client applications. All settings are laid out the same exact way with getters
/// and setters.
/// </summary>
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
#region Setting Constants
#region Setting Constants
private const string SettingsKey = "settings_key";
private static readonly string SettingsDefault = string.Empty;
private const string SettingsKey = "settings_key";
private static readonly string SettingsDefault = string.Empty;
#endregion
#endregion
public static string GeneralSettings
{
get
{
return AppSettings.GetValueOrDefault<string>(SettingsKey, SettingsDefault);
}
set
{
AppSettings.AddOrUpdateValue<string>(SettingsKey, value);
}
}
public static string GeneralSettings
{
get
{
return AppSettings.GetValueOrDefault(SettingsKey, SettingsDefault);
}
set
{
AppSettings.AddOrUpdateValue(SettingsKey, value);
}
}
}
}
}*/
257 changes: 158 additions & 99 deletions MyShop.Android/MyShop.Android.csproj

Large diffs are not rendered by default.

104 changes: 61 additions & 43 deletions MyShop.Android/MyShop.Android.csproj.bak

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion MyShop.Android/Properties/AndroidManifest.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" package="com.refractored.myshoppe" android:installLocation="auto" android:versionCode="2">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" />
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="26" />
<application android:label="My Shoppe" android:icon="@drawable/ic_launcher" android:theme="@style/MyTheme">
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyDHUElg0FU_KUcYLE9-NlNFqYimpaFlBDA" />
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
Expand Down

0 comments on commit c309221

Please sign in to comment.