@Override
public Object call(Object who, Method method, Object... args) throws Throwable {
if (isFakeLocationEnable()) {
List<VCell> cells = VirtualLocationManager.get().getAllCell(getAppUserId(), getAppPkg());
if (cells != null) {
List<CellInfo> result = new ArrayList<CellInfo>();
for (VCell cell : cells) {
result.add(createCellInfo(cell));
}
return result;
}
}
return super.call(who, method, args);
}
MethodProxies.java 文件源码
java
阅读 38
收藏 0
点赞 0
评论 0
项目:TPlayer
作者:
评论列表
文章目录