Skip to content

Commit 95a69f6

Browse files
authored
Merge branch 'main' into varconst/remove-stlport
2 parents 8715fed + b8b1f19 commit 95a69f6

File tree

97 files changed

+475
-8489
lines changed

Some content is hidden

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

97 files changed

+475
-8489
lines changed

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
required: true
1515
apis:
1616
description: 'CSV of apis to build and test'
17-
default: 'admob,analytics,auth,database,dynamic_links,firestore,functions,installations,instance_id,messaging,remote_config,storage'
17+
default: 'admob,analytics,auth,database,dynamic_links,firestore,functions,installations,messaging,remote_config,storage'
1818
required: true
1919
operating_systems:
2020
description: 'CSV of VMs to run on'

Android/firebase_dependencies.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ def firebaseDependenciesMap = [
2929
'functions' : ['com.google.firebase:firebase-functions:19.2.0'],
3030
'installations' : ['com.google.firebase:firebase-installations:16.3.5',
3131
'com.google.android.gms:play-services-base:17.6.0'],
32-
'instance_id' : ['com.google.firebase:firebase-iid:21.1.0',
33-
'com.google.android.gms:play-services-base:17.6.0'],
3432
'invites' : ['com.google.firebase:firebase-invites:17.0.0'],
3533
// Messaging has an additional local dependency to include.
3634
'messaging' : ['com.google.firebase:firebase-messaging:21.1.0',
@@ -95,9 +93,6 @@ class Dependencies {
9593
def getInstallations() {
9694
libSet.add('installations')
9795
}
98-
def getInstanceId() {
99-
libSet.add('instance_id')
100-
}
10196
def getInvites() {
10297
libSet.add('invites')
10398
}

CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ option(FIREBASE_INCLUDE_FUNCTIONS
4848
option(FIREBASE_INCLUDE_INSTALLATIONS
4949
"Include the Firebase Installations library."
5050
${FIREBASE_INCLUDE_LIBRARY_DEFAULT})
51-
option(FIREBASE_INCLUDE_INSTANCE_ID
52-
"Include the Firebase Instance ID library."
53-
${FIREBASE_INCLUDE_LIBRARY_DEFAULT})
5451
option(FIREBASE_INCLUDE_MESSAGING
5552
"Include the Firebase Cloud Messaging library."
5653
${FIREBASE_INCLUDE_LIBRARY_DEFAULT})
@@ -554,9 +551,6 @@ endif()
554551
if (FIREBASE_INCLUDE_INSTALLATIONS)
555552
add_subdirectory(installations)
556553
endif()
557-
if (FIREBASE_INCLUDE_INSTANCE_ID)
558-
add_subdirectory(instance_id)
559-
endif()
560554
if (FIREBASE_INCLUDE_MESSAGING)
561555
add_subdirectory(messaging)
562556
endif()

app/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,6 @@ endif()
374374
if (NOT ANDROID AND NOT IOS)
375375
# Add the rest subdirectory, so that other libraries can access it
376376
add_subdirectory(rest)
377-
add_subdirectory(instance_id)
378377
endif()
379378

380379
if(FIREBASE_CPP_BUILD_TESTS)
@@ -484,8 +483,6 @@ if (IOS)
484483
${FIREBASE_SOURCE_DIR}/functions/src/include/firebase/functions/callable_reference.h
485484
${FIREBASE_SOURCE_DIR}/functions/src/include/firebase/functions/callable_result.h
486485
${FIREBASE_SOURCE_DIR}/functions/src/include/firebase/functions/common.h)
487-
set(instance_id_HDRS
488-
${FIREBASE_SOURCE_DIR}/instance_id/src/include/firebase/instance_id.h)
489486
set(installations_HDRS
490487
${FIREBASE_SOURCE_DIR}/installations/src/include/firebase/installations.h)
491488
set(messaging_HDRS
@@ -509,7 +506,6 @@ if (IOS)
509506
${dynamic_links_HDRS}
510507
${firestore_HDRS}
511508
${functions_HDRS}
512-
${instance_id_HDRS}
513509
${installations_HDRS}
514510
${messaging_HDRS}
515511
${remote_config_HDRS}

app/instance_id/CMakeLists.txt

Lines changed: 0 additions & 66 deletions
This file was deleted.

app/instance_id/iid_data.fbs

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)