-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from urbanairship/MB-1823
[MB-1823]: Release 2.3.0
- Loading branch information
Showing
17 changed files
with
86 additions
and
85 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// <copyright file="ResolverVer1_1.cs" company="Google Inc."> | ||
// Copyright (C) 2015 Google Inc. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// </copyright> | ||
#if UNITY_ANDROID | ||
|
||
namespace GooglePlayServices | ||
{ | ||
using UnityEngine; | ||
using UnityEditor; | ||
|
||
[InitializeOnLoad] | ||
public class ResolverVer1_2 : ResolverVer1_1 | ||
{ | ||
|
||
private const int MajorVersion = 1; | ||
private const int MinorVersion = 2; | ||
private const int PointVersion = 0; | ||
|
||
static ResolverVer1_2() | ||
{ | ||
PlayServicesResolver.RegisterResolver(new ResolverVer1_2()); | ||
Debug.Log("Registering resolver version " + MajorVersion + "." + | ||
MinorVersion + "." + PointVersion); | ||
PlayServicesResolver.RegisterResolver(new ResolverVer1_2()); | ||
|
||
} | ||
/// <summary> | ||
/// Version of the resolver. | ||
/// </summary> | ||
/// <remarks>The resolver with the greatest version is used when resolving. | ||
/// The value of the verison is calcuated using MakeVersion in DefaultResolver</remarks> | ||
/// <seealso cref="DefaultResolver.MakeVersionNumber"></seealso> | ||
public override int Version() | ||
{ | ||
return MakeVersionNumber(MajorVersion, MinorVersion, PointVersion); | ||
} | ||
|
||
/// <summary> | ||
/// Shoulds the explode the aar file. | ||
/// </summary> | ||
/// <returns><c>true</c>, if explode was shoulded, <c>false</c> otherwise.</returns> | ||
/// <param name="aarFile">The aar file.</param> | ||
internal override bool ShouldExplode(string aarFile) | ||
{ | ||
return base.ShouldExplode(aarFile) || | ||
aarFile.Contains("firebase-common") || | ||
aarFile.Contains("firebase-measurement") || | ||
!SupportsAarFiles; | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version = 2.2.0 | ||
version = 2.3.0 |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
android-plugin-lib/src/main/java/com/urbanairship/unityplugin/UrbanAirshipApplication.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters