Flutter: gradle issue
up vote
0
down vote
favorite
i have this problem when running my flutter app
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.android.support:support-v4' has different
version for the compile (26.1.0) and runtime (27.1.1) classpath. You
should manually set the same version via DependencyResolution
* Try:
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.
* Get more help at https://help.gradle.org
BUILD FAILED in 0s
and i tried to solve it by adding
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
}
but it doesn't work
Finished with error: Gradle task assembleDebug failed with exit code 1
android gradle flutter
add a comment |
up vote
0
down vote
favorite
i have this problem when running my flutter app
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.android.support:support-v4' has different
version for the compile (26.1.0) and runtime (27.1.1) classpath. You
should manually set the same version via DependencyResolution
* Try:
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.
* Get more help at https://help.gradle.org
BUILD FAILED in 0s
and i tried to solve it by adding
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
}
but it doesn't work
Finished with error: Gradle task assembleDebug failed with exit code 1
android gradle flutter
did you try running flutter clean before?
– diegoveloper
Nov 11 at 1:40
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
i have this problem when running my flutter app
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.android.support:support-v4' has different
version for the compile (26.1.0) and runtime (27.1.1) classpath. You
should manually set the same version via DependencyResolution
* Try:
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.
* Get more help at https://help.gradle.org
BUILD FAILED in 0s
and i tried to solve it by adding
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
}
but it doesn't work
Finished with error: Gradle task assembleDebug failed with exit code 1
android gradle flutter
i have this problem when running my flutter app
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDebugBuild'.
> Android dependency 'com.android.support:support-v4' has different
version for the compile (26.1.0) and runtime (27.1.1) classpath. You
should manually set the same version via DependencyResolution
* Try:
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.
* Get more help at https://help.gradle.org
BUILD FAILED in 0s
and i tried to solve it by adding
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
}
but it doesn't work
Finished with error: Gradle task assembleDebug failed with exit code 1
android gradle flutter
android gradle flutter
asked Nov 10 at 12:12
Pondikpa Tchabao
3218
3218
did you try running flutter clean before?
– diegoveloper
Nov 11 at 1:40
add a comment |
did you try running flutter clean before?
– diegoveloper
Nov 11 at 1:40
did you try running flutter clean before?
– diegoveloper
Nov 11 at 1:40
did you try running flutter clean before?
– diegoveloper
Nov 11 at 1:40
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
draft saved
draft discarded
draft saved
draft discarded
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
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238827%2fflutter-gradle-issue%23new-answer', 'question_page');
}
);
Post as a guest
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
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
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
did you try running flutter clean before?
– diegoveloper
Nov 11 at 1:40