Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Fix issue 1630 #1809

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion publish/scripts/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function promptQuestionsResult(result) {
writeGoogleServiceGradleHook(result);
echoAndroidManifestChanges(result);
activateAndroidPushNotificationsLib(isSelected(result.messaging) || isSelected(result.external_push_client_only));
activateAndroidMLKitCustomModelLib(isSelected(result.ml_kit) && isSelected(result.ml_kit_custom_model));
activateAndroidMLKitCustomModelLib(isSelected(result.ml_kit) && (isSelected(result.ml_kit_custom_model) || isSelected(result.ml_kit_barcode_scanning)));
}

console.log('Firebase post install completed. To re-run this script, navigate to the root directory of `nativescript-plugin-firebase` in your `node_modules` folder and run: `npm run config`.');
Expand Down