我在libs文件夹中有一个库。我需要将该库添加到特定的产品风格。以前我们有编译但最新版本已弃用并添加了“ API ”
此前:
dependencies {
....
market1Compile project(path: ':lib', configuration: 'market1Release')
market2Compile project(path: ':lib', configuration: 'market2Release')
}
立即
api files('libs/AF-Android-SDK-v2.3.1.17.jar')
如何添加到特定的味道。任何人帮助我!!
答案 0 :(得分:-1)
将本地库放在依赖项中。 像这样:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:background="@drawable/demo"
android:text="custom"
/>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:text="default"
/>
</LinearLayout>