turing-tech / MaterialScrollBar

An Android library that brings the Material Design 5.1 sidebar to pre-5.1 devices.
Apache License 2.0
778 stars 126 forks source link

remove "application android:label" from Manifest of library -> preven… #23

Closed Rainer-Lang closed 8 years ago

Rainer-Lang commented 8 years ago

remove "application android:label" from Manifest of library -> prevent "Error: Manifest merger failed"

Is it possible to merge fast and make a new version?

Rainer-Lang commented 8 years ago

Thanks a lot - and for your great lib too.

Rainer-Lang commented 8 years ago

@krimin-killr21 Version isn't populated. Can't get it.

MFlisar commented 8 years ago

you can always manually remove those things for the merger. Here's an example (it shows removing of some of the imported data like label, icon and theme):

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

     <application
        tools:replace="label,icon,theme" >

    </application>

</manifest>
OunmanNgampeerapong commented 6 years ago

Ok