Skip to content

Commit e883ab4

Browse files
Googlercynthiajiang
authored andcommitted
Initial import of the Firebase Unity SDK - 416612622 Fix C# Composite Formatting placeholders in UIHandlerAuto... by Googler <[email protected]>
- 416601653 Add url property to FirebaseStorage class in Unity interf... by Googler <[email protected]> - 416348956 Update the Unity version for M108 release (8.7.0) by amaurice <[email protected]> - 416346517 Update the Android version numbers used by the Firebase U... by amaurice <[email protected]> - 415607818 Publish new EDM4U 1.2.168 to GPR by chkuang <[email protected]> - 413436798 Update Crashlytics Android dependency to latest version by Googler <[email protected]> - 410907284 Update the Unity version to 8.6.2 by amaurice <[email protected]> - 410895597 Another fix for Messaging Android ANR issue, manually cop... by amaurice <[email protected]> - 408663179 Update the Unity version to 8.6.1 by amaurice <[email protected]> - 408652329 Update spelling error in Unity release notes by Googler <[email protected]> - 408648568 Pin the necessary version of the Crashlytics ndk by amaurice <[email protected]> - 407940176 Fix for Messaging Android ANR issue, manually copied for ... by amaurice <[email protected]> - 407661291 Update the Unity version for M106 release (8.6.0) by amaurice <[email protected]> - 407384971 Update the release notes entry announcing Firestore's GA by Googler <[email protected]> - 407104478 Add Firestore release notes entry: Released to general av... by Googler <[email protected]> - 407094960 Update the release notes entry for the iOS crash due to t... by Googler <[email protected]> - 406975110 Define ios_minimum_os for the Unity build by amaurice <[email protected]> - 406364173 Update generated sources. by Googler <[email protected]> - 406363191 Fix a comment in types.i that used '#' when it should hav... by Googler <[email protected]> PiperOrigin-RevId: 416612622
1 parent b270703 commit e883ab4

File tree

9 files changed

+610
-330
lines changed

9 files changed

+610
-330
lines changed

cmake/android_dependencies.cmake

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,44 +16,44 @@
1616

1717
set(FIREBASE_APP_ANDROID_DEPS
1818
"com.google.firebase:firebase-common:20.0.0"
19-
"com.google.firebase:firebase-analytics:19.0.0"
19+
"com.google.firebase:firebase-analytics:20.0.0"
2020
)
2121

2222
set(FIREBASE_ANALYTICS_ANDROID_DEPS
23-
"com.google.firebase:firebase-analytics:19.0.0"
23+
"com.google.firebase:firebase-analytics:20.0.0"
2424
)
2525

2626
set(FIREBASE_AUTH_ANDROID_DEPS
2727
"com.google.firebase:firebase-auth:21.0.1"
28-
"com.google.firebase:firebase-analytics:19.0.0"
28+
"com.google.firebase:firebase-analytics:20.0.0"
2929
)
3030

3131
set(FIREBASE_DATABASE_ANDROID_DEPS
32-
"com.google.firebase:firebase-database:20.0.0"
33-
"com.google.firebase:firebase-analytics:19.0.0"
32+
"com.google.firebase:firebase-database:20.0.3"
33+
"com.google.firebase:firebase-analytics:20.0.0"
3434
)
3535

3636
set(FIREBASE_DYNAMIC_LINKS_ANDROID_DEPS
3737
"com.google.android.gms:play-services-appinvite:18.0.0"
38-
"com.google.firebase:firebase-analytics:19.0.0"
38+
"com.google.firebase:firebase-analytics:20.0.0"
3939
)
4040

4141
set(FIREBASE_FUNCTIONS_ANDROID_DEPS
42-
"com.google.firebase:firebase-functions:20.0.0"
43-
"com.google.firebase:firebase-analytics:19.0.0"
42+
"com.google.firebase:firebase-functions:20.0.1"
43+
"com.google.firebase:firebase-analytics:20.0.0"
4444
)
4545

4646
set(FIREBASE_MESSAGING_ANDROID_DEPS
47-
"com.google.firebase:firebase-messaging:22.0.0"
48-
"com.google.firebase:firebase-analytics:19.0.0"
47+
"com.google.firebase:firebase-messaging:23.0.0"
48+
"com.google.firebase:firebase-analytics:20.0.0"
4949
)
5050

5151
set(FIREBASE_REMOTE_CONFIG_ANDROID_DEPS
52-
"com.google.firebase:firebase-config:21.0.0"
53-
"com.google.firebase:firebase-analytics:19.0.0"
52+
"com.google.firebase:firebase-config:21.0.1"
53+
"com.google.firebase:firebase-analytics:20.0.0"
5454
)
5555

5656
set(FIREBASE_STORAGE_ANDROID_DEPS
5757
"com.google.firebase:firebase-storage:20.0.0"
58-
"com.google.firebase:firebase-analytics:19.0.0"
58+
"com.google.firebase:firebase-analytics:20.0.0"
5959
)

docs/readme.md

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,60 @@ Support
163163

164164
Release Notes
165165
-------------
166-
### 8.5.0:
166+
### UNRELEASED
167+
- Changes
168+
- Storage: Added a method to access the url of a storage instance.
169+
170+
### 8.7.0:
171+
- Changes
172+
- General (iOS): Fixed an intermittent crash on iOS 15 caused by
173+
constructing C++ objects during Objective-C's `+load` method.
174+
([#706](https://github.com/firebase/firebase-cpp-sdk/pull/706))
175+
([#783](https://github.com/firebase/firebase-cpp-sdk/pull/783))
176+
- Crashlytics (Android): Fixed a bug that prevented some Crashlytics session
177+
files from being removed after the session ended. All session-specific
178+
files are now properly cleaned up.
179+
([#737](https://github.com/firebase/firebase-cpp-sdk/issues/737))
180+
181+
### 8.6.2:
167182
- Changes
168-
- General (iOS): iOS SDKs are now built using Xcode 13.0.0.
183+
- Messaging (Android): Clean up callbacks on termination, to possibly fix
184+
ANR issues in CheckAndFixDependenciesAsync
185+
([#1160](https://github.com/firebase/quickstart-unity/issues/1160)).
186+
187+
### 8.6.1:
188+
- Changes
189+
- Crashlytics (Android): Updated the pinned dependency to fix a missing
190+
method error
191+
([#1177](https://github.com/firebase/quickstart-unity/issues/1177)).
192+
193+
### 8.6.0:
194+
- Changes
195+
- General (Android): Minimum SDK version is now 19.
196+
- General: Variant double type now supports 64-bit while saving to json.
197+
([#1133](https://github.com/firebase/quickstart-unity/issues/1133)).
198+
- Firestore: Released to general availability for Android and iOS (desktop
199+
support remains in beta).
200+
- Firestore (iOS): Fixed intermittent crashes and empty results when
201+
retrieving the contents of a document.
202+
([#1171](https://github.com/firebase/quickstart-unity/issues/1171)).
203+
- Firestore (iOS): Fixed intermittent "start after" query filters failing
204+
to have any effects on the queries.
205+
- Firestore (iOS): Fixed intermittent cases where specifying
206+
ServerTimestampBehavior.Previous would return empty values instead of the
207+
previous values.
169208
- Crashlytics: Improved crash reporting for Unity Android apps using the
170209
IL2CPP scripting backend. To display symbolicated IL2CPP stack traces in
171210
the Crashlytics console, Android customers will need to upload symbol
172211
files for their builds. See the [Getting Started with Crashlytics Unity]
173212
(https://firebase.google.com/docs/crashlytics/get-started?platform=unity)
174-
Guild for more details.
213+
Guide for more details.
214+
- Messaging (Android): Fixed crash resulting in ANR on termination.
215+
([#1151](https://github.com/firebase/quickstart-unity/issues/1151)).
216+
217+
### 8.5.0:
218+
- Changes
219+
- General (iOS): iOS SDKs are now built using Xcode 13.0.0.
175220
- Firestore: Fixed an issue where the `Equals()` and `GetHashCode()` methods
176221
of `DocumentSnapshot` would sometimes be inconsistent
177222
([#8647](https://github.com/firebase/firebase-ios-sdk/pull/8647)).

0 commit comments

Comments
 (0)