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

Commit 4cf770b

Browse files
authored
chore: bump io.fabric.tools:gradle to 1.25.4
After we merged NativeScript/android#1177 apps with `nativescript-plugin-firebase` fails to build for android with following error: ``` 11:49:28 11:49:28 11:49:28 FAILURE: Build failed with an exception. 11:49:28 11:49:28 * What went wrong: 11:49:28 The Android Gradle plugin supports only Crashlytics Gradle plugin version 1.25.4 and higher. Project 'examples' is using version 1.25.1. 11:49:28 11:49:28 * Try: 11:49:28 Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. 11:49:28 11:49:28 * Get more help at https://help.gradle.org 11:49:28 11:49:28 BUILD FAILED in 8s 11:49:28 Command ./gradlew failed with exit code 1 ``` This PR bump version of io.fabric.tools:gradle to 1.25.4, which I hope will solve the problem.
1 parent c7c6e45 commit 4cf770b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

publish/scripts/installer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ module.exports = function($logger, $projectData) {
897897
let dependenciesNode = buildGradleContent.indexOf("dependencies", 0);
898898
if (dependenciesNode > -1) {
899899
dependenciesNode = buildGradleContent.indexOf("}", dependenciesNode);
900-
buildGradleContent = buildGradleContent.substr(0, dependenciesNode - 1) + ' classpath "io.fabric.tools:gradle:1.25.1"\\n' + buildGradleContent.substr(dependenciesNode - 1);
900+
buildGradleContent = buildGradleContent.substr(0, dependenciesNode - 1) + ' classpath "io.fabric.tools:gradle:1.25.4"\\n' + buildGradleContent.substr(dependenciesNode - 1);
901901
}
902902
}
903903

0 commit comments

Comments
 (0)