Cordova overriding build.gradle
I have a cordova project and due to an error I'm getting when building for android, I need to change the order of the plugin repositories listed in build.gradle
.
This is what cordova spits out by default:
allprojects
repositories
jcenter()
maven
url "https://maven.google.com"
And I need to change it to reverse the oder of the repositories like this:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
Since build.gradle
is an auto generated file, I don't want to edit it by handle (it's also not currently in source control).
Based on the cordova docs, I see that they do support editing it through the build-extras.gradle
file. I tried creating one of these in the same directory as build.gradle
with the following contents:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
but it didn't work. There doesn't seem to be a lot of documentation on the build-extras.gradle
file regarding the syntax and what is allowed in it. Do you just put the part of build.gradle
that you want to replace?
Is what I'm trying to do even possible?
cordova repository build.gradle
add a comment |
I have a cordova project and due to an error I'm getting when building for android, I need to change the order of the plugin repositories listed in build.gradle
.
This is what cordova spits out by default:
allprojects
repositories
jcenter()
maven
url "https://maven.google.com"
And I need to change it to reverse the oder of the repositories like this:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
Since build.gradle
is an auto generated file, I don't want to edit it by handle (it's also not currently in source control).
Based on the cordova docs, I see that they do support editing it through the build-extras.gradle
file. I tried creating one of these in the same directory as build.gradle
with the following contents:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
but it didn't work. There doesn't seem to be a lot of documentation on the build-extras.gradle
file regarding the syntax and what is allowed in it. Do you just put the part of build.gradle
that you want to replace?
Is what I'm trying to do even possible?
cordova repository build.gradle
See answer here
– pauloya
Nov 29 '18 at 15:10
Yeah I posted that question in github. :) I haven't tried the solution yet but if it works I'll post back here.
– d512
Nov 30 '18 at 3:35
add a comment |
I have a cordova project and due to an error I'm getting when building for android, I need to change the order of the plugin repositories listed in build.gradle
.
This is what cordova spits out by default:
allprojects
repositories
jcenter()
maven
url "https://maven.google.com"
And I need to change it to reverse the oder of the repositories like this:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
Since build.gradle
is an auto generated file, I don't want to edit it by handle (it's also not currently in source control).
Based on the cordova docs, I see that they do support editing it through the build-extras.gradle
file. I tried creating one of these in the same directory as build.gradle
with the following contents:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
but it didn't work. There doesn't seem to be a lot of documentation on the build-extras.gradle
file regarding the syntax and what is allowed in it. Do you just put the part of build.gradle
that you want to replace?
Is what I'm trying to do even possible?
cordova repository build.gradle
I have a cordova project and due to an error I'm getting when building for android, I need to change the order of the plugin repositories listed in build.gradle
.
This is what cordova spits out by default:
allprojects
repositories
jcenter()
maven
url "https://maven.google.com"
And I need to change it to reverse the oder of the repositories like this:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
Since build.gradle
is an auto generated file, I don't want to edit it by handle (it's also not currently in source control).
Based on the cordova docs, I see that they do support editing it through the build-extras.gradle
file. I tried creating one of these in the same directory as build.gradle
with the following contents:
allprojects
repositories
maven
url "https://maven.google.com"
jcenter()
but it didn't work. There doesn't seem to be a lot of documentation on the build-extras.gradle
file regarding the syntax and what is allowed in it. Do you just put the part of build.gradle
that you want to replace?
Is what I'm trying to do even possible?
cordova repository build.gradle
cordova repository build.gradle
asked Nov 12 '18 at 14:58
d512d512
13.4k115464
13.4k115464
See answer here
– pauloya
Nov 29 '18 at 15:10
Yeah I posted that question in github. :) I haven't tried the solution yet but if it works I'll post back here.
– d512
Nov 30 '18 at 3:35
add a comment |
See answer here
– pauloya
Nov 29 '18 at 15:10
Yeah I posted that question in github. :) I haven't tried the solution yet but if it works I'll post back here.
– d512
Nov 30 '18 at 3:35
See answer here
– pauloya
Nov 29 '18 at 15:10
See answer here
– pauloya
Nov 29 '18 at 15:10
Yeah I posted that question in github. :) I haven't tried the solution yet but if it works I'll post back here.
– d512
Nov 30 '18 at 3:35
Yeah I posted that question in github. :) I haven't tried the solution yet but if it works I'll post back here.
– d512
Nov 30 '18 at 3:35
add a comment |
1 Answer
1
active
oldest
votes
I can confirm that using cordova-android 7.1.4 solves this problem, as it generated a build.gradle
file with the correct order.
I got the answer from https://github.com/apache/cordova-android/issues/548
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264783%2fcordova-overriding-build-gradle%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I can confirm that using cordova-android 7.1.4 solves this problem, as it generated a build.gradle
file with the correct order.
I got the answer from https://github.com/apache/cordova-android/issues/548
add a comment |
I can confirm that using cordova-android 7.1.4 solves this problem, as it generated a build.gradle
file with the correct order.
I got the answer from https://github.com/apache/cordova-android/issues/548
add a comment |
I can confirm that using cordova-android 7.1.4 solves this problem, as it generated a build.gradle
file with the correct order.
I got the answer from https://github.com/apache/cordova-android/issues/548
I can confirm that using cordova-android 7.1.4 solves this problem, as it generated a build.gradle
file with the correct order.
I got the answer from https://github.com/apache/cordova-android/issues/548
answered Nov 30 '18 at 14:36
pauloyapauloya
1,94412548
1,94412548
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264783%2fcordova-overriding-build-gradle%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See answer here
– pauloya
Nov 29 '18 at 15:10
Yeah I posted that question in github. :) I haven't tried the solution yet but if it works I'll post back here.
– d512
Nov 30 '18 at 3:35