File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 17
17
#
18
18
# Args:
19
19
# NAME: The name to use for the generated files.
20
- # INPUT: The input binary to embed into the source file.
20
+ # INPUT: The input binary to embed into the source file. Please ensure that
21
+ # the input binary is uniquely named across all embedded resources used
22
+ # in the project. This is because the generated C++ source files strip
23
+ # out the directories which can cause conflicts when caching these
24
+ # embedded resources in the C++ layer (observed on Android API <= 21).
25
+ # See https://github.com/firebase/firebase-cpp-sdk/pull/289.
21
26
# CPP_NAMESPACE: The namespace to use in the generated files.
22
27
# OUTPUT_DIRECTORY: Where the generated files should be written to.
23
28
function (binary_to_array NAME INPUT CPP_NAMESPACE OUTPUT_DIRECTORY)
Original file line number Diff line number Diff line change @@ -571,6 +571,12 @@ code.
571
571
572
572
## Release Notes
573
573
574
+ ### 7.1.1
575
+ - Changes
576
+ - General (Android): Use non-conflicting file names for embedded resources
577
+ in Android builds. This fixes segfault crashes on old Android devices
578
+ (Android 5 and below).
579
+
574
580
### 7.1.0
575
581
- Changes
576
582
- General (iOS): Re-enabled Bitcode in iOS builds
You can’t perform that action at this time.
0 commit comments