在我的项目gradle上,我宣布了两种口味:
<div [innerHTML]="post.body"></div>
现在我需要包含并使用外部jar库来获得第二种味道。 我该怎么办?
答案 0 :(得分:1)
使用implementation
<flavor-name>Implementation <library>
非常简单
假设您想仅为com.android.support:design:27.1.1
风格添加second
。您可以按如下方式实现:
dependencies {
...
secondImplementation 'com.android.support:design:27.1.1'
...
}