You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I add compile 'com.codemybrainsout.onboarding:onboarder:1.0.4'
in my dependencies but it has Error
`Error:Execution failed for task ':app:processDebugManifest'.
Manifest merger failed with multiple errors, see logs`
How can I fix it?
Please help me
Thank you ;)
The text was updated successfully, but these errors were encountered:
In my case it was related to midSdkVersion of the project which was 14 for mine. This library needs midSdk of 15 and thus manifest merger throws exception. For solving the issue you can ignore this by adding <manifest> ... <uses-sdk tools:overrideLibrary="com.codemybrainsout.onboarder" /> ... </manifest> to your main AndroidManifest file. Or you can increase minSdk to at least 15.
I add
compile 'com.codemybrainsout.onboarding:onboarder:1.0.4'
in my dependencies but it has Error
`Error:Execution failed for task ':app:processDebugManifest'.
How can I fix it?
Please help me
Thank you ;)
The text was updated successfully, but these errors were encountered: