Skip to content

Commit 50cd19b

Browse files
committed
Integrate Latest @ 197965599
Changes to all ... - Update Firebase dependencies to latest versions. - Rename library files to libfirebase_*.a. CL: 197965599
1 parent 9d82cb2 commit 50cd19b

File tree

18 files changed

+40
-40
lines changed

18 files changed

+40
-40
lines changed

admob/testapp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:15.0.2'
95-
compile 'com.google.firebase:firebase-ads:15.0.1'
94+
compile 'com.google.firebase:firebase-core:16.0.0'
95+
compile 'com.google.firebase:firebase-ads:16.0.0'
9696
compile 'com.google.android.gms:play-services-base:15.0.1'
9797
}
9898

admob/testapp/jni/Android.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ $(FIREBASE_CPP_SDK_DIR)/libs/android/$(TARGET_ARCH_ABI)/$(STL)
2525

2626
include $(CLEAR_VARS)
2727
LOCAL_MODULE:=firebase_app
28-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libapp.a
28+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_app.a
2929
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3030
include $(PREBUILT_STATIC_LIBRARY)
3131

3232
include $(CLEAR_VARS)
3333
LOCAL_MODULE:=firebase_admob
34-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libadmob.a
34+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_admob.a
3535
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3636
include $(PREBUILT_STATIC_LIBRARY)
3737

analytics/testapp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:15.0.2'
95-
compile 'com.google.firebase:firebase-analytics:15.0.2'
94+
compile 'com.google.firebase:firebase-core:16.0.0'
95+
compile 'com.google.firebase:firebase-analytics:16.0.0'
9696
compile 'com.google.android.gms:play-services-base:15.0.1'
9797
}
9898

analytics/testapp/jni/Android.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ $(FIREBASE_CPP_SDK_DIR)/libs/android/$(TARGET_ARCH_ABI)/$(STL)
2525

2626
include $(CLEAR_VARS)
2727
LOCAL_MODULE:=firebase_app
28-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libapp.a
28+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_app.a
2929
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3030
include $(PREBUILT_STATIC_LIBRARY)
3131

3232
include $(CLEAR_VARS)
3333
LOCAL_MODULE:=firebase_analytics
34-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libanalytics.a
34+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_analytics.a
3535
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3636
include $(PREBUILT_STATIC_LIBRARY)
3737

auth/testapp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:15.0.2'
95-
compile 'com.google.firebase:firebase-auth:15.1.0'
94+
compile 'com.google.firebase:firebase-core:16.0.0'
95+
compile 'com.google.firebase:firebase-auth:16.0.1'
9696
compile 'com.google.android.gms:play-services-base:15.0.1'
9797
}
9898

auth/testapp/jni/Android.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ $(FIREBASE_CPP_SDK_DIR)/libs/android/$(TARGET_ARCH_ABI)/$(STL)
2525

2626
include $(CLEAR_VARS)
2727
LOCAL_MODULE:=firebase_app
28-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libapp.a
28+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_app.a
2929
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3030
include $(PREBUILT_STATIC_LIBRARY)
3131

3232
include $(CLEAR_VARS)
3333
LOCAL_MODULE:=firebase_auth
34-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libauth.a
34+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_auth.a
3535
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3636
include $(PREBUILT_STATIC_LIBRARY)
3737

database/testapp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ android {
9292
}
9393

9494
dependencies {
95-
compile 'com.google.firebase:firebase-core:15.0.2'
96-
compile 'com.google.firebase:firebase-auth:15.1.0'
97-
compile 'com.google.firebase:firebase-database:15.0.1'
95+
compile 'com.google.firebase:firebase-core:16.0.0'
96+
compile 'com.google.firebase:firebase-auth:16.0.1'
97+
compile 'com.google.firebase:firebase-database:16.0.1'
9898
}
9999

100100
apply plugin: 'com.google.gms.google-services'

database/testapp/jni/Android.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ $(FIREBASE_CPP_SDK_DIR)/libs/android/$(TARGET_ARCH_ABI)/$(STL)
2525

2626
include $(CLEAR_VARS)
2727
LOCAL_MODULE:=firebase_app
28-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libapp.a
28+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_app.a
2929
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3030
include $(PREBUILT_STATIC_LIBRARY)
3131

3232
include $(CLEAR_VARS)
3333
LOCAL_MODULE:=firebase_auth
34-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libauth.a
34+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_auth.a
3535
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3636
include $(PREBUILT_STATIC_LIBRARY)
3737

3838
include $(CLEAR_VARS)
3939
LOCAL_MODULE:=firebase_database
40-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libdatabase.a
40+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_database.a
4141
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
4242
include $(PREBUILT_STATIC_LIBRARY)
4343

dynamic_links/testapp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ android {
9191
}
9292

9393
dependencies {
94-
compile 'com.google.firebase:firebase-core:15.0.2'
95-
compile 'com.google.firebase:firebase-invites:15.0.1'
94+
compile 'com.google.firebase:firebase-core:16.0.0'
95+
compile 'com.google.firebase:firebase-invites:16.0.0'
9696
compile 'com.google.android.gms:play-services-base:15.0.1'
9797
}
9898

dynamic_links/testapp/jni/Android.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ $(FIREBASE_CPP_SDK_DIR)/libs/android/$(TARGET_ARCH_ABI)/$(STL)
2525

2626
include $(CLEAR_VARS)
2727
LOCAL_MODULE:=firebase_app
28-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libapp.a
28+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_app.a
2929
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3030
include $(PREBUILT_STATIC_LIBRARY)
3131

3232
include $(CLEAR_VARS)
3333
LOCAL_MODULE:=firebase_dynamic_links
34-
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libdynamic_links.a
34+
LOCAL_SRC_FILES:=$(FIREBASE_LIBRARY_PATH)/libfirebase_dynamic_links.a
3535
LOCAL_EXPORT_C_INCLUDES:=$(FIREBASE_CPP_SDK_DIR)/include
3636
include $(PREBUILT_STATIC_LIBRARY)
3737

0 commit comments

Comments
 (0)