question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I 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:closed
  • Created 5 years ago
  • Reactions:1
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

5reactions
jonrysimboloncommented, Jan 23, 2019

same here

0reactions
jakubjodelkacommented, Dec 20, 2019

@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

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found