Gradle fail
See original GitHub issueI tried to add the library to my project:
my gradle file is like that:
` apply plugin: ‘com.android.application’
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.package.myAppname"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.tenclouds.fluidbottomnavigation:fluid-bottom-navigation:1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
`
but I have this message: Failed to resolve: com.tenclouds
Any suggestion ?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:6 (2 by maintainers)
Top Results From Across the Web
How to fail/stop task immediately if some conditions are not met
What is a good way to conditionally execute a task? I current have a task called "makerpm", which as the name imply build...
Read more >Recommended way to stop a Gradle build - Stack Overflow
fail. I'd just make it easy to see what exception to catch by throwing standard gradle exception as tim_yates suggested.
Read more >Gradle Goodness: Stop Build After One Failing Test - Mrhaki
We can do this by passing the command-line option --fail-fast when we run the test task in Gradle. With this option Gradle will...
Read more >Reduce build failures and increase build reliability
Gradle Enterprise helps teams to find and fix failed tests and builds much more quickly than with other approaches. Instead of having to...
Read more >Use gradle.buildFinished listener to fail a build (throw ... - GitHub
Use gradle.buildFinished listener to fail a build (throw an exception) #14553. Closed. autonomousapps opened this issue on Sep 18, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
same here
@Nicolas99-9 @jonrysimbolon @alfikr @farahfarah1 Hi. There was a problem with library on maven repository. Please update library version to the newest one using
jitpack.io
repository as it’s described in README file. The newest library version: https://github.com/10clouds/FluidBottomNavigation-android/releases/tag/1.2