Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ If your project targets multiple platforms, keep these packages inside Apple-onl

```xml
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">
<PackageReference Include="AdamE.Firebase.iOS.Core" Version="12.8.0" />
<PackageReference Include="AdamE.Firebase.iOS.Core" Version="12.9.0" />
</ItemGroup>
```

Expand All @@ -167,30 +167,30 @@ Archiving can still be more reliable on macOS or from the command line.

The lists below reflect what is currently published on [nuget.org](https://www.nuget.org/profiles/adamessenmacher) under the `adamessenmacher` owner profile. That is intentionally different from the repo state in [`components.cake`](components.cake): the repo can contain projects or version bumps that have not been published yet.

Firebase `12.8.0` is the current published Firebase package line.
Firebase `12.9.0` is the current published Firebase package line.

### Currently published on nuget.org

#### Firebase packages (`AdamE.Firebase.iOS.*`)

| Package | Version |
| --- | --- |
| `ABTesting` | `12.8.0` |
| `Analytics` | `12.8.0` |
| `AppCheck` | `12.8.0` |
| `AppDistribution` | `12.8.0` |
| `Auth` | `12.8.0` |
| `CloudFirestore` | `12.8.0` |
| `CloudFunctions` | `12.8.0` |
| `CloudMessaging` | `12.8.0` |
| `Core` | `12.8.0` |
| `Crashlytics` | `12.8.0` |
| `Database` | `12.8.0` |
| `InAppMessaging` | `12.8.0` |
| `Installations` | `12.8.0` |
| `PerformanceMonitoring` | `12.8.0` |
| `RemoteConfig` | `12.8.0` |
| `Storage` | `12.8.0` |
| `ABTesting` | `12.9.0` |
| `Analytics` | `12.9.0` |
| `AppCheck` | `12.9.0` |
| `AppDistribution` | `12.9.0` |
| `Auth` | `12.9.0` |
| `CloudFirestore` | `12.9.0` |
| `CloudFunctions` | `12.9.0` |
| `CloudMessaging` | `12.9.0` |
| `Core` | `12.9.0` |
| `Crashlytics` | `12.9.0` |
| `Database` | `12.9.0` |
| `InAppMessaging` | `12.9.0` |
| `Installations` | `12.9.0` |
| `PerformanceMonitoring` | `12.9.0` |
| `RemoteConfig` | `12.9.0` |
| `Storage` | `12.9.0` |

#### Google packages (`AdamE.Google.iOS.*`)

Expand All @@ -207,7 +207,7 @@ These packages are usually consumed transitively rather than referenced directly
| Package | Version |
| --- | --- |
| `AppCheckCore` | `11.2.0` |
| `GoogleAppMeasurement` | `12.8.0` |
| `GoogleAppMeasurement` | `12.9.0` |
| `GoogleDataTransport` | `10.1.0.5` |
| `GoogleUtilities` | `8.1.0.3` |
| `Nanopb` | `3.30910.0.5` |
Expand Down
86 changes: 43 additions & 43 deletions components.cake
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
// Firebase artifacts available to be built. These artifacts generate NuGets.
Artifact FIREBASE_AB_TESTING_ARTIFACT = new Artifact ("Firebase.ABTesting", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "ABTesting");
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Analytics");
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Auth");
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
Artifact FIREBASE_CLOUD_FUNCTIONS_ARTIFACT = new Artifact ("Firebase.CloudFunctions", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFunctions");
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Core");
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Database");
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Installations");
Artifact FIREBASE_PERFORMANCE_MONITORING_ARTIFACT = new Artifact ("Firebase.PerformanceMonitoring", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "PerformanceMonitoring");
Artifact FIREBASE_REMOTE_CONFIG_ARTIFACT = new Artifact ("Firebase.RemoteConfig", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "RemoteConfig");
Artifact FIREBASE_STORAGE_ARTIFACT = new Artifact ("Firebase.Storage", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Storage");
Artifact FIREBASE_APP_DISTRIBUTION_ARTIFACT = new Artifact ("Firebase.AppDistribution", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "AppDistribution");
Artifact FIREBASE_APP_CHECK_ARTIFACT = new Artifact ("Firebase.AppCheck", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "AppCheck");
Artifact FIREBASE_AB_TESTING_ARTIFACT = new Artifact ("Firebase.ABTesting", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "ABTesting");
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Analytics");
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Auth");
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
Artifact FIREBASE_CLOUD_FUNCTIONS_ARTIFACT = new Artifact ("Firebase.CloudFunctions", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFunctions");
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Core");
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Database");
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Installations");
Artifact FIREBASE_PERFORMANCE_MONITORING_ARTIFACT = new Artifact ("Firebase.PerformanceMonitoring", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "PerformanceMonitoring");
Artifact FIREBASE_REMOTE_CONFIG_ARTIFACT = new Artifact ("Firebase.RemoteConfig", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "RemoteConfig");
Artifact FIREBASE_STORAGE_ARTIFACT = new Artifact ("Firebase.Storage", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Storage");
Artifact FIREBASE_APP_DISTRIBUTION_ARTIFACT = new Artifact ("Firebase.AppDistribution", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "AppDistribution");
Artifact FIREBASE_APP_CHECK_ARTIFACT = new Artifact ("Firebase.AppCheck", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "AppCheck");

// Google artifacts available to be built. These artifacts generate NuGets.
Artifact GOOGLE_ANALYTICS_ARTIFACT = new Artifact ("Google.Analytics", "3.20.0.2", "15.0", ComponentGroup.Google, csprojName: "Analytics");
Expand All @@ -26,7 +26,7 @@ Artifact GOOGLE_APP_CHECK_CORE_ARTIFACT = new Artifact ("Google.AppCh
Artifact GOOGLE_SIGN_IN_ARTIFACT = new Artifact ("Google.SignIn", "9.0.0.0", "15.0", ComponentGroup.Google, csprojName: "SignIn");
Artifact GOOGLE_TAG_MANAGER_ARTIFACT = new Artifact ("Google.TagManager", "7.4.0.2", "15.0", ComponentGroup.Google, csprojName: "TagManager");

Artifact GOOGLE_GOOGLE_APP_MEASUREMENT_ARTIFACT = new Artifact ("Google.AppMeasurement", "12.8.0", "15.0", ComponentGroup.Google, csprojName: "GoogleAppMeasurement");
Artifact GOOGLE_GOOGLE_APP_MEASUREMENT_ARTIFACT = new Artifact ("Google.AppMeasurement", "12.9.0", "15.0", ComponentGroup.Google, csprojName: "GoogleAppMeasurement");
Artifact GOOGLE_PROMISES_OBJC_ARTIFACT = new Artifact ("Google.PromisesObjC", "2.4.0.5", "15.0", ComponentGroup.Google, csprojName: "PromisesObjC");
Artifact GOOGLE_GTM_SESSION_FETCHER_ARTIFACT = new Artifact ("Google.GTMSessionFetcher", "3.5.0.5", "15.0", ComponentGroup.Google, csprojName: "GTMSessionFetcher");
Artifact GOOGLE_NANOPB_ARTIFACT = new Artifact ("Google.Nanopb", "3.30910.0.5", "15.0", ComponentGroup.Google, csprojName: "Nanopb");
Expand Down Expand Up @@ -148,68 +148,68 @@ void SetArtifactsPodSpecs ()
{
// Firebase components
FIREBASE_AB_TESTING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseABTesting", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseABTesting", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_ANALYTICS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAnalytics", "12.8.0")
PodSpec.Create ("FirebaseAnalytics", "12.9.0")
Comment thread
AdamEssenmacher marked this conversation as resolved.
};
FIREBASE_AUTH_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAuth", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAuth", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("RecaptchaInterop", "101.0.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_CLOUD_FIRESTORE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseFirestore", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseFirestoreInternal", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseFirestore", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseFirestoreInternal", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("BoringSSL-GRPC", "0.0.37", frameworkSource: FrameworkSource.Pods, frameworkName: "openssl_grpc"),
PodSpec.Create ("gRPC-Core", "1.69.0", frameworkSource: FrameworkSource.Pods, frameworkName: "grpc"),
PodSpec.Create ("gRPC-C++", "1.69.0", frameworkSource: FrameworkSource.Pods, frameworkName: "grpcpp"),
PodSpec.Create ("abseil", "1.20240722.0", frameworkSource: FrameworkSource.Pods, frameworkName: "absl", subSpecs: new [] { "algorithm", "base", "memory", "meta", "strings", "time", "types" }),
};
FIREBASE_CLOUD_FUNCTIONS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseFunctions", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseFunctions", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_CLOUD_MESSAGING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseMessaging", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseMessaging", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_CORE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAppCheckInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAuthInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCore", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreExtension", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreInternal", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseMessagingInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseRemoteConfigInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSharedSwift", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAppCheckInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseAuthInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCore", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreExtension", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseCoreInternal", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseMessagingInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseRemoteConfigInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSharedSwift", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("PromisesSwift", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "Promises", targetName: "PromisesSwift"),
PodSpec.Create ("leveldb-library", "1.22.6", frameworkSource: FrameworkSource.Pods, frameworkName: "leveldb"),
};
FIREBASE_CRASHLYTICS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseCrashlytics", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseCrashlytics", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_DATABASE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseDatabase", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseDatabase", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_IN_APP_MESSAGING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("Firebase", "12.8.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseInAppMessaging", targetName: "FirebaseInAppMessaging", subSpecs: new [] { "InAppMessaging" })
PodSpec.Create ("Firebase", "12.9.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseInAppMessaging", targetName: "FirebaseInAppMessaging", subSpecs: new [] { "InAppMessaging" })
};
FIREBASE_INSTALLATIONS_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseInstallations", "12.8.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSessions", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseInstallations", "12.9.0", frameworkSource: FrameworkSource.Pods),
PodSpec.Create ("FirebaseSessions", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_PERFORMANCE_MONITORING_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebasePerformance", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebasePerformance", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_REMOTE_CONFIG_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseRemoteConfig", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseRemoteConfig", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_STORAGE_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseStorage", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseStorage", "12.9.0", frameworkSource: FrameworkSource.Pods)
};
FIREBASE_APP_DISTRIBUTION_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("Firebase", "12.8.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseAppDistribution", targetName: "FirebaseAppDistribution", subSpecs: new [] { "AppDistribution" })
PodSpec.Create ("Firebase", "12.9.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseAppDistribution", targetName: "FirebaseAppDistribution", subSpecs: new [] { "AppDistribution" })
};
FIREBASE_APP_CHECK_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("FirebaseAppCheck", "12.8.0", frameworkSource: FrameworkSource.Pods)
PodSpec.Create ("FirebaseAppCheck", "12.9.0", frameworkSource: FrameworkSource.Pods)
};

// Google components
Expand Down Expand Up @@ -240,7 +240,7 @@ void SetArtifactsPodSpecs ()
PodSpec.Create ("GoogleTagManager", "7.4.0")
};
GOOGLE_GOOGLE_APP_MEASUREMENT_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("GoogleAppMeasurement", "12.8.0")
PodSpec.Create ("GoogleAppMeasurement", "12.9.0")
};
GOOGLE_PROMISES_OBJC_ARTIFACT.PodSpecs = new [] {
PodSpec.Create ("PromisesObjC", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FBLPromises", targetName: "PromisesObjC"),
Expand Down
2 changes: 1 addition & 1 deletion scripts/FirebaseBindingAudit/BindingSurfaceCoverage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace FirebaseBindingAudit;

internal static class FirebasePackageVersions
{
public const string DefaultFirebasePackageVersion = "12.8.0";
public const string DefaultFirebasePackageVersion = "12.9.0";
}

internal sealed class BindingSurfaceCoverageManifest
Expand Down
6 changes: 3 additions & 3 deletions source/Firebase/ABTesting/ABTesting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<SupportedOSPlatformVersion>15.0</SupportedOSPlatformVersion>
<RootNamespace>Firebase.ABTesting</RootNamespace>
<AssemblyName>Firebase.ABTesting</AssemblyName>
<AssemblyVersion>12.8.0</AssemblyVersion>
<FileVersion>12.8.0</FileVersion>
<AssemblyVersion>12.9.0</AssemblyVersion>
<FileVersion>12.9.0</FileVersion>
Comment thread
AdamEssenmacher marked this conversation as resolved.
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<CompressBindingResourcePackage>true</CompressBindingResourcePackage>
Expand All @@ -27,7 +27,7 @@
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>12.8.0</PackageVersion>
<PackageVersion>12.9.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down
8 changes: 4 additions & 4 deletions source/Firebase/Analytics/Analytics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<SupportedOSPlatformVersion>15.0</SupportedOSPlatformVersion>
<RootNamespace>Firebase.Analytics</RootNamespace>
<AssemblyName>Firebase.Analytics</AssemblyName>
<AssemblyVersion>12.8.0</AssemblyVersion>
<FileVersion>12.8.0</FileVersion>
<AssemblyVersion>12.9.0</AssemblyVersion>
<FileVersion>12.9.0</FileVersion>
Comment thread
AdamEssenmacher marked this conversation as resolved.
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProcessEnums>true</ProcessEnums>
Expand All @@ -28,7 +28,7 @@
<PackageLicenseFile>License.md</PackageLicenseFile>
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageVersion>12.8.0</PackageVersion>
<PackageVersion>12.9.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\AssemblyInfo.cs" />
Expand Down Expand Up @@ -57,7 +57,7 @@
<ObjcBindingApiDefinition Include="Enums.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AdamE.Google.iOS.GoogleAppMeasurement" Version="12.8.0" />
<PackageReference Include="AdamE.Google.iOS.GoogleAppMeasurement" Version="12.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" PrivateAssets="None" />
Expand Down
2 changes: 1 addition & 1 deletion source/Firebase/Analytics/Analytics.targets
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<_FirebaseAnalyticsAssemblyName>Firebase.Analytics, Version=12.8.0, Culture=neutral, PublicKeyToken=null</_FirebaseAnalyticsAssemblyName>
<_FirebaseAnalyticsAssemblyName>Firebase.Analytics, Version=12.9.0, Culture=neutral, PublicKeyToken=null</_FirebaseAnalyticsAssemblyName>
Comment thread
AdamEssenmacher marked this conversation as resolved.
</PropertyGroup>
</Project>
Loading
Loading