Does an Android Library need a manifest ,app_name,Icon?

前端 未结 2 1593
天命终不由人
天命终不由人 2021-02-06 21:31

I have an android Library that outputs an aar library. This library will be built into different projectFlavors of Mobile, TV and Wear apps. I think that each of these platforms

相关标签:
2条回答
  • 2021-02-06 21:45

    Any android library needs to have an AndroidManifest.xml file, but a name or an icon is not required. It's only needed when there is an activity that is MAIN and LAUNCHER.

    You simply could use this manifest and your library will work like a charm.

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="[your package]"
        android:versionCode="1"
        android:versionName="1.0" >
    
        <uses-sdk android:minSdkVersion="[min supported version]" />
    
        <application/>
    
    </manifest>
    
    0 讨论(0)
  • 2021-02-06 21:55

    You can go with the AndroidManifest.xml below if you don't need to setup any Android component like Activities or Services or add custom properties.

    <?xml version="1.0" encoding="utf-8"?>
    <manifest package="com.your.library.base.package" />
    
    0 讨论(0)
提交回复
热议问题