Skip to content

Commit

Permalink
Merge pull request #1537 from microsoft/release/4.3.0
Browse files Browse the repository at this point in the history
Start new 4.3.0 version
  • Loading branch information
Anastasia Senyushina authored Jun 17, 2021
2 parents 5a5ec30 + 29fce5c commit 1412516
Show file tree
Hide file tree
Showing 147 changed files with 1,603 additions and 388 deletions.
210 changes: 179 additions & 31 deletions AppCenter-Demo.sln

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions Apps/Contoso.Android.Puppet/ModulePages/AppCenterFragment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class AppCenterFragment : PageFragment
private LogLevel mLogWriteLevel = LogLevel.Verbose;

private Switch AppCenterEnabledSwitch;
private Switch AppCenterNetworkRequestsAllowedSwitch;
private TextView LogLevelLabel;
private EditText LogWriteMessageText;
private EditText LogWriteTagText;
Expand All @@ -54,6 +55,7 @@ public override void OnViewCreated(View view, Bundle savedInstanceState)

// Find views.
AppCenterEnabledSwitch = view.FindViewById(Resource.Id.enabled_app_center) as Switch;
AppCenterNetworkRequestsAllowedSwitch = view.FindViewById(Resource.Id.appcenter_network_requests_allowed) as Switch;
LogLevelLabel = view.FindViewById(Resource.Id.log_level) as TextView;
LogWriteMessageText = view.FindViewById(Resource.Id.write_log_message) as EditText;
LogWriteTagText = view.FindViewById(Resource.Id.write_log_tag) as EditText;
Expand All @@ -65,6 +67,7 @@ public override void OnViewCreated(View view, Bundle savedInstanceState)

// Subscribe to events.
AppCenterEnabledSwitch.CheckedChange += UpdateEnabled;
AppCenterNetworkRequestsAllowedSwitch.CheckedChange += NetworkRequestAllowedChange;
((View)LogLevelLabel.Parent).Click += LogLevelClicked;
((View)LogWriteLevelLabel.Parent).Click += LogWriteLevelClicked;
LogWriteButton.Click += WriteLog;
Expand All @@ -86,6 +89,9 @@ protected override async void UpdateState()
AppCenterEnabledSwitch.CheckedChange -= UpdateEnabled;
AppCenterEnabledSwitch.Checked = await AppCenter.IsEnabledAsync();
AppCenterEnabledSwitch.CheckedChange += UpdateEnabled;
AppCenterNetworkRequestsAllowedSwitch.CheckedChange -= NetworkRequestAllowedChange;
AppCenterNetworkRequestsAllowedSwitch.Checked = AppCenter.IsNetworkRequestsAllowed;
AppCenterNetworkRequestsAllowedSwitch.CheckedChange += NetworkRequestAllowedChange;
LogLevelLabel.Text = LogLevelNames[AppCenter.LogLevel];
LogWriteLevelLabel.Text = LogLevelNames[mLogWriteLevel];
}
Expand Down Expand Up @@ -117,6 +123,11 @@ private async void UpdateEnabled(object sender, CompoundButton.CheckedChangeEven
AppCenterEnabledSwitch.Checked = await AppCenter.IsEnabledAsync();
}

private void NetworkRequestAllowedChange(object sender, CompoundButton.CheckedChangeEventArgs e)
{
AppCenter.IsNetworkRequestsAllowed = e.IsChecked;
}

private void LogLevelClicked(object sender, EventArgs e)
{
var intent = new Intent(Activity.ApplicationContext, typeof(LogLevelActivity));
Expand Down
2 changes: 1 addition & 1 deletion Apps/Contoso.Android.Puppet/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.puppet" android:versionCode="95" android:versionName="4.2.0-SNAPSHOT" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.puppet" android:versionCode="97" android:versionName="4.3.0-SNAPSHOT" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" />
<application android:label="SXPuppet" android:icon="@drawable/Icon" android:theme="@style/PuppetTheme">
</application>
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.0-SNAPSHOT")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: AssemblyInformationalVersion("4.3.0-SNAPSHOT")]
14 changes: 14 additions & 0 deletions Apps/Contoso.Android.Puppet/Resources/layout/AppCenter.axml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,20 @@
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="@string/AppCenterNetworkRequestsAllowed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp" />
<Switch
android:id="@+id/appcenter_network_requests_allowed"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
Expand Down
1 change: 1 addition & 0 deletions Apps/Contoso.Android.Puppet/Resources/values/Strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<string name="AppCenterWriteUserId">Write User Id</string>
<string name="AppCenterUserId">User Id</string>
<string name="AnalyticsEnabled">Analytics Enabled</string>
<string name="AppCenterNetworkRequestsAllowed">Allow network requests</string>
<string name="AnalyticsEventName">Event Name</string>
<string name="AnalyticsProperties">Properties</string>
<string name="AnalyticsAddProperty">Add Property</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Contoso.Forms.Demo.Droid</RootNamespace>
<AssemblyName>Contoso.Forms.Demo.Droid</AssemblyName>
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v11.0</TargetFrameworkVersion>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
Expand Down Expand Up @@ -61,7 +61,7 @@
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
<AndroidSupportedAbis>armeabi-v7a</AndroidSupportedAbis>
<AndroidSupportedAbis>armeabi-v7a;x86;arm64-v8a;x86_64</AndroidSupportedAbis>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand All @@ -70,14 +70,14 @@
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)'=='GooglePlay' ">
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)'!='GooglePlay' ">
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.3.0" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -114,8 +114,5 @@
<ItemGroup>
<AndroidEnvironment Include="AndroidEnvironment.cfg" />
</ItemGroup>
<ItemGroup>
<GoogleServicesJson Include="google-services.json" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.forms.demo" android:versionName="4.2.0" android:versionCode="89">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.forms.demo" android:versionName="4.3.0" android:versionCode="90">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" />
<application android:label="ACFDemo">
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.0")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: AssemblyInformationalVersion("4.3.0")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.3.0" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Demo.UWP" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Demo.UWP" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.3.0.0" />
<mp:PhoneIdentity PhoneProductId="fbe02dcf-2c7d-4740-9c2b-0df5e15916e5" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.Forms.Demo.UWP</DisplayName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: ComVisible(false)]
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.3.0" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<key>CFBundleIdentifier</key>
<string>com.microsoft.appcenter.xamarin.forms.ios.demo</string>
<key>CFBundleVersion</key>
<string>4.2.0</string>
<string>4.3.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
Expand Down Expand Up @@ -39,7 +39,7 @@
<key>CFBundleName</key>
<string>ACFDemo</string>
<key>CFBundleShortVersionString</key>
<string>4.2.0</string>
<string>4.3.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,30 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Copyright>Microsoft Corp. All rights reserved.</Copyright>
<Company>Microsoft Corporation</Company>
<Version>4.2.0</Version>
<Version>4.3.0</Version>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<FileVersion>4.2.0.0</FileVersion>
<FileVersion>4.3.0.0</FileVersion>
<Configurations>Debug;Release;GooglePlay</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GooglePlay|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\GooglePlay</OutputPath>
<DefineConstants>TRACE;GOOGLEPLAY;NETSTANDARD;NETSTANDARD2_0;</DefineConstants>
<WarningLevel>4</WarningLevel>
<NoWarn>1701;1702</NoWarn>
<IntermediateOutputPath>obj\GooglePlay</IntermediateOutputPath>
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<ItemGroup Condition=" '$(Configuration)'!='GooglePlay' ">
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)'=='GooglePlay' ">
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<TableView Intent="Form">
<TableSection Title="AppCenter Settings">
<SwitchCell Text="AppCenter Enabled" On="true" x:Name="AppCenterEnabledSwitchCell" OnChanged="UpdateEnabled" OnColor="{StaticResource SwitchCellOnColor}" />
<SwitchCell Text="Allow network requests" On="true" x:Name="AllowedNetworkRequestSwitchCell" OnChanged="AllowedNetworkRequestEnabled" />
</TableSection>
<TableSection Title="Startup type">
<ViewCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ protected override async void OnAppearing()
{
base.OnAppearing();
AppCenterEnabledSwitchCell.On = await AppCenter.IsEnabledAsync();
AllowedNetworkRequestSwitchCell.On = AppCenter.IsNetworkRequestsAllowed;
if (Application.Current.Properties.ContainsKey(Constants.UserId) && Application.Current.Properties[Constants.UserId] is string id)
{
UserIdEntry.Text = id;
Expand All @@ -44,6 +45,11 @@ protected override async void OnAppearing()
};
}

void AllowedNetworkRequestEnabled(System.Object sender, Xamarin.Forms.ToggledEventArgs e)
{
AppCenter.IsNetworkRequestsAllowed = e.Value;
}

async void ChangeStartType(object sender, PropertyChangedEventArgs e)
{
// IOS sends an event every time user rests their selection on an item without hitting "done", and the only event they send when hitting "done" is that the control is no longer focused.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="96" android:versionName="4.2.0-SNAPSHOT" package="com.microsoft.appcenter.xamarin.forms.puppet">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="98" android:versionName="4.3.0-SNAPSHOT" package="com.microsoft.appcenter.xamarin.forms.puppet">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="28" />
<application android:label="ACFPuppet">
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.0-SNAPSHOT")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: AssemblyInformationalVersion("4.3.0-SNAPSHOT")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Puppet.U" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Puppet.U" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.3.0.0" />
<mp:PhoneIdentity PhoneProductId="55497ed8-b2ac-4485-ba79-e2b65bb720ed" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.Forms.Puppet.UWP</DisplayName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<key>CFBundleIdentifier</key>
<string>com.microsoft.appcenter.xamarin.forms.ios.puppet</string>
<key>CFBundleShortVersionString</key>
<string>4.2.0</string>
<string>4.3.0</string>
<key>CFBundleVersion</key>
<string>4.2.0</string>
<string>4.3.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<TableView Intent="Form">
<TableSection Title="AppCenter Settings">
<SwitchCell Text="AppCenter Enabled" On="true" x:Name="AppCenterEnabledSwitchCell" OnChanged="UpdateEnabled" />
<SwitchCell Text="Allow network requests" On="true" x:Name="AllowedNetworkRequestSwitchCell" OnChanged="AllowedNetworkRequestEnabled" />
</TableSection>
<TableSection Title="Startup type">
<ViewCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ protected override async void OnAppearing()
{
base.OnAppearing();
AppCenterEnabledSwitchCell.On = await AppCenter.IsEnabledAsync();
AllowedNetworkRequestSwitchCell.On = AppCenter.IsNetworkRequestsAllowed;
if (Application.Current.Properties.ContainsKey(Constants.UserId) && Application.Current.Properties[Constants.UserId] is string id)
{
UserIdEntry.Text = id;
Expand Down Expand Up @@ -87,5 +88,10 @@ private void SaveStorageSize_Clicked(object sender, System.EventArgs e)
AppCenterLog.Error(LogTag, "Wrong number value for the max storage size.");
}
}

void AllowedNetworkRequestEnabled(System.Object sender, Xamarin.Forms.ToggledEventArgs e)
{
AppCenter.IsNetworkRequestsAllowed = e.Value;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.0-SNAPSHOT")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: AssemblyInformationalVersion("4.3.0-SNAPSHOT")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.UWP.Demo/Contoso.UWP.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.3.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.3.0" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.8" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Apps/Contoso.UWP.Demo/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.UWP.Demo" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.UWP.Demo" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.3.0.0" />
<mp:PhoneIdentity PhoneProductId="3bda7e44-ab20-4885-b6a0-121b9f9e33d7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.UWP.Demo</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion Apps/Contoso.UWP.Demo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyFileVersion("4.3.0.0")]
[assembly: ComVisible(false)]
Loading

0 comments on commit 1412516

Please sign in to comment.