Skip to content

Commit cae42f1

Browse files
committed
Merge with main@origin
2 parents 56284d8 + a62c01a commit cae42f1

File tree

147 files changed

+39655
-1280
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+39655
-1280
lines changed

firebase-firestore/api.txt

Lines changed: 1195 additions & 1 deletion
Large diffs are not rendered by default.

firebase-firestore/firebase-firestore.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ android {
7777
def targetBackend = findProperty("targetBackend") ?: "emulator"
7878
buildConfigField("String", "TARGET_BACKEND", "\"$targetBackend\"")
7979

80-
def targetDatabaseId = findProperty('targetDatabaseId') ?: "(default)"
80+
def targetDatabaseId = findProperty('targetDatabaseId') ?: "enterprise"
8181
buildConfigField("String", "TARGET_DATABASE_ID", "\"$targetDatabaseId\"")
8282

8383
def localProps = new Properties()
@@ -144,6 +144,7 @@ dependencies {
144144
implementation libs.grpc.stub
145145
implementation libs.kotlin.stdlib
146146
implementation libs.kotlinx.coroutines.core
147+
implementation 'com.google.re2j:re2j:1.6'
147148

148149
compileOnly libs.autovalue.annotations
149150
compileOnly libs.javax.annotation.jsr250
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
version=26.0.3
22
latestReleasedVersion=26.0.2
3+
kotlin.options.verbose=true

firebase-firestore/src/androidTest/java/com/google/firebase/firestore/ConformanceTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
import java.util.stream.Collectors;
4949
import org.junit.AfterClass;
5050
import org.junit.BeforeClass;
51+
import org.junit.Ignore;
5152
import org.junit.Test;
5253
import org.junit.runner.RunWith;
5354
import org.junit.runners.Parameterized;
@@ -61,6 +62,7 @@
6162
* com.google.firebase.firestore.conformance}) were modified to support the Android SDK.
6263
*/
6364
@RunWith(Parameterized.class)
65+
@Ignore
6466
public class ConformanceTest {
6567
private static FirebaseFirestore firestore;
6668
private static TestCaseIgnoreList testCaseIgnoreList;

firebase-firestore/src/androidTest/java/com/google/firebase/firestore/PipelineTest.java

Lines changed: 2429 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)