Using the new “manifestmerger” property in Android

前端 未结 4 803
情话喂你
情话喂你 2020-11-30 00:55

In the newest version of ADT (version 20 preview 3), they say that it\'s possible to make the libraries\' manifest file become mergeable with projects that use them:

相关标签:
4条回答
  • 2020-11-30 01:32

    FYI: manifestmerger.enabled=true won't merge the manifest files if you are using eclipse export signed App. As noted here it seems to be a bug. http://code.google.com/p/android/issues/detail?id=34623

    It was a bit of a hassle for me to set up merging correctly as well. (restarting eclipse, open close project..) To find out if merging is working take a look at the file in ../Your_Main_Project/bin/AndroidManifest.xml. If merging worked you will see the complete result in this file.

    EDIT: This bug was fixed in ADT v20.0.1 (Juli 2012): http://developer.android.com/tools/sdk/eclipse-adt.html

    0 讨论(0)
  • 2020-11-30 01:42

    Add the following line to your project.properties file of your application project.

    manifestmerger.enabled=true 
    

    Introduced with Android SDK Tools, Revision 20 (June 2012):
    https://developer.android.com/studio/releases/sdk-tools

    Build System
        * Added automatic merging of library project manifest files into the including project's manifest.       Enable this feature with the manifestmerger.enabled property.

    0 讨论(0)
  • 2020-11-30 01:50

    If you want to merge android library project manifest and your current project manifest, you have to add manifestmerger.enabled=true in your project.properties file where you referred your library project. But, you should be confirmed some point like ADT version, Also Minimum and target SDK should be same as library project.

    0 讨论(0)
  • 2020-11-30 01:56

    I was facing some errors during manifest merging (R.java file went missing) so alternately I explicitly copied the manifest contents (e.g. I copied just the activity contents) from the library project manifest and put them in my main project manifest. That resolved the error and everything seems to be working well so far. Let me know if anyone feels this is not a recommended alternative to manifest merging.

    0 讨论(0)
提交回复
热议问题