forked from GitLiveApp/firebase-kotlin-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'GitLiveApp/master' into feature/gitlive…
…-master-tracking
- Loading branch information
Showing
8 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
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
3 changes: 1 addition & 2 deletions
3
...ore/src/androidMain/kotlin/dev/gitlive/firebase/firestore/internal/callbackExecutorMap.kt
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,8 +1,7 @@ | ||
package dev.gitlive.firebase.firestore.internal | ||
|
||
import com.google.firebase.firestore.FirebaseFirestore | ||
import java.util.concurrent.ConcurrentHashMap | ||
import java.util.concurrent.Executor | ||
|
||
// Since on iOS Callback threads are set as settings, we store the settings explicitly here as well | ||
internal val callbackExecutorMap = ConcurrentHashMap<FirebaseFirestore, Executor>() | ||
internal val callbackExecutorMap = ConcurrentHashMap<com.google.firebase.firestore.FirebaseFirestore, Executor>() |
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
6 changes: 4 additions & 2 deletions
6
firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/metrics/Trace.kt
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
6 changes: 3 additions & 3 deletions
6
firebase-perf/src/androidMain/kotlin/dev/gitlive/firebase/perf/session/PerfSession.kt
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,7 +1,7 @@ | ||
package dev.gitlive.firebase.perf.session | ||
|
||
import com.google.firebase.perf.session.PerfSession | ||
import com.google.firebase.perf.session.PerfSession as AndroidPerfSession | ||
|
||
public val PerfSession.android: PerfSession get() = android | ||
public val PerfSession.android: AndroidPerfSession get() = android | ||
|
||
public class PerfSession internal constructor(internal val android: PerfSession) | ||
public class PerfSession internal constructor(internal val android: AndroidPerfSession) |