-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Theme used in the library conflicts with others #68
Comments
Would love to get more info on this as I am attempting to use this library while getting the same errors as above. |
I have not run into this issue. Any input on how we can make this easier for users on the library site would be very welcome. |
`Error:Execution failed for task ':app:processDebugManifest'.
|
Just wanted to update this. The issue is simple: The merge tool is complaining about the theme attribute value (@style/AppTheme) but when I quickly scan the library, I don't see it - so the error it throws is not helpful. It literally means just that - to override the manifest merge (which should fix the issue), add 'tools:replace="android:theme" to your tag. Not Found: /artifact/com.gu/option/1.3 |
Gentlemen I have found a workaround for those facing this issue. It seems to only show up when android:theme is set for the tag. Remove it and add it to each of your activities separately. Worked fine for me. |
If you use this library you get an error that the app theme is already defined (in my own project). To fix this, you can for example add
tools:replace="android:icon, android:label, android:theme, android:name"
in your application tag in the manifest. However, this causes instability with other libraries such ascom.daimajia.slider:library:1.1.5
.Giving the error
Is there a way to make them all work happily together?
The text was updated successfully, but these errors were encountered: