请告诉我如何指定排除以删除" fingerprint"等模块。我尝试过使用排除组:' android.hardware',模块:'指纹'但没有奏效。 感谢您的帮助。
<root>: 45486
<default>: 1
android: 23585
accessibilityservice: 7
accounts: 6
animation: 64
app: 365
bluetooth: 6
content: 356
pm: 31
res: 101
database: 66
sqlite: 10
graphics: 352
drawable: 123
shapes: 3
pdf: 3
hardware: 20
display: 3
fingerprint: 11
location: 12
media: 287
audiofx: 8
browse: 19
session: 92
net: 68
http: 1
wifi: 12
opengl: 40
答案 0 :(得分:1)
在gradle文件中
dependencies {
compile('gradle dependency name') {
exclude module: 'module name'
}
}