Skip to content

Commit

Permalink
feat: firebase-ios-sdk 7.2.0 / firebase-android-sdk 26.1.1 (invertase…
Browse files Browse the repository at this point in the history
…#4648)

* feat(app, android): android bill of materials 26.1.1 + android dependencies

* chore(test): regenerate Podfile.lock

result of `yarn tests:ios:pod:install`

* feat(app, ios): bump firebase-ios-sdk to 7.2.0

* fix(admob, ci): workaround admob test device detection issues

* test(firestore, ci): +data fixture separation / +more tests

More test fixture differentiation is necessary for the test-reuse case,
because even though the emulator data is wiped, the app has it's own
firebase persistence and we are not cleaning that up, so future runs
get more and more data unless either the test app is uninstalled/reinstalled
or you just use deterministically separate fixtures like this commit

* test(messaging): fix test reuse case w/auto-init reset

* test(e2e): update podfile, de-integrate pre-compiled firestore

pre-compiled firestore sometimes gives me leveldb symbol collisions on
linking in my local environment. It may be possible to integrate it in
most cases but in some cases it fails, so de-integrating it for now

* test(database, e2e): disable some flaky database tests

* test(admob, e2e): disable rewarded ad loads on ios

they were failing in local testing for some reason

* test(firestore, e2e): add timeout to query snapshot callback test

* test(auth, e2e): let sign-ins rest before testing callbacks

on slower android devices this is necessary to avoid false-negative
test results
  • Loading branch information
mikehardy authored Dec 10, 2020
1 parent 60868aa commit f409f3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
}

dependencies {
classpath("com.android.tools.build:gradle:4.1.0")
classpath("com.android.tools.build:gradle:4.1.1")
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@
},
"sdkVersions": {
"ios": {
"firebase": "~> 7.1.0"
"firebase": "~> 7.2.0"
},
"android": {
"minSdk": 16,
"targetSdk": 30,
"compileSdk": 30,
"buildTools": "30.0.2",
"firebase": "26.0.0",
"playServicesAuth": "18.1.0"
"firebase": "26.1.1",
"playServicesAuth": "19.0.0"
}
}
}

0 comments on commit f409f3a

Please sign in to comment.