Skip to content

Commit 948a51a

Browse files
authored
Fix packaging workflow to use new name for messaging_java.aar. (#927)
* Fix packaging workflow to use new name for messaging_java.aar. (Actually just use a wildcard in case it changes again.)
1 parent 75bdd1c commit 948a51a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_scripts/android/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ for product in ${product_list[*]}; do
4949
cp -f "${sourcepath}/${product}/build/Release/${product}.pro" "${destpath}/libs/android/"
5050
# Copy the special messaging aar file, but only if messaging was built.
5151
if [[ "${product}" == "messaging" ]]; then
52-
cp -f "${sourcepath}/messaging/messaging_java/build/outputs/aar/messaging_java-release.aar" "${destpath}/libs/android/firebase_messaging_cpp.aar"
52+
cp -f "${sourcepath}/messaging/messaging_java/build/outputs/aar/messaging_java"*.aar "${destpath}/libs/android/firebase_messaging_cpp.aar"
5353
fi
5454
done
5555
cd "${origpath}"

0 commit comments

Comments
 (0)