Devlight / NavigationTabStrip

Navigation tab strip with smooth interaction.
Apache License 2.0
2.24k stars 313 forks source link

"Your both lib has same package name" error again! #7

Closed skyfe79 closed 8 years ago

skyfe79 commented 8 years ago

Hello GIGAMOLE,

First of all, Great thank you for sharing this amazing widget 👍 I want to use NavigationTabStrip and NavigationTabBar in the same app. I wrote build.gradle like below:

repositories {
    mavenCentral()
    maven {
        url  'http://dl.bintray.com/gigamole/maven/'
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'

    compile 'com.github.devlight.navigationtabbar:library:+'
    compile 'com.github.devlight.navigationtabstrip:library:+'
}

But it complains that

Error:Execution failed for task ':app:processDebugResources'.
> Error: more than one library with package name 'com.gigamole.library'

So I changed build.gradle like below:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'

    compile 'com.github.devlight.navigationtabstrip:library:1.0.1'
    compile 'com.github.devlight.navigationtabbar:library:1.2.0'
}

But It also complains again there is more than one library with package name 'com.gigamole.library'.

Could you please fix this issue?

Best Regards, Sungcheold Kim.

GIGAMOLE commented 8 years ago

Ok. Wait for fix.

GIGAMOLE commented 8 years ago

You need to clear cache and update to 1.0.2. Thanks.