Skip to content

Commit 9141f8b

Browse files
author
monch.chen@yahoo.com
committed
修改SDK版本号判断
1 parent 73e8c82 commit 9141f8b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

VirtualApp/lib/src/main/java/com/lody/virtual/client/core/InvocationStubManager.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,10 @@ private void injectInternal() throws Throwable {
179179
addInjector(new WifiScannerStub());
180180
addInjector(new ShortcutServiceStub());
181181
addInjector(new DevicePolicyManagerStub());
182-
addInjector(new AutoFillManagerStub());
183182
}
183+
if (Build.VERSION.SDK_INT >= 26) {
184+
addInjector(new AutoFillManagerStub());
185+
}
184186
}
185187
}
186188

0 commit comments

Comments
 (0)