We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2344398 commit 5e304aeCopy full SHA for 5e304ae
build_scripts/android/package.sh
@@ -53,5 +53,9 @@ for product in ${product_list[*]}; do
53
done
54
# Copy the top-level Proguard files in as well.
55
cp -f "${sourcepath}/${product}/build/Release/${product}.pro" "${destpath}/libs/android/"
56
+ # Copy the special messaging aar file, but only if messaging was built.
57
+ if [[ "${product}" == "messaging" ]]; then
58
+ cp -f "${sourcepath}/messaging/messaging_java/build/outputs/aar/messaging_java-release.aar" "${destpath}/libs/android/firebase_messaging_cpp.aar"
59
+ fi
60
61
cd "${origpath}"
0 commit comments