Skip to content

Commit

Permalink
修复在支付宝旧版本上功能失效问题
Browse files Browse the repository at this point in the history
  • Loading branch information
pansong291 committed Aug 18, 2019
1 parent 3f39ea5 commit 9d5bb6b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/src/main/java/pansong291/xposed/quickenergy/RpcCall.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ public static Object invoke(ClassLoader loader, String args0, String args1) thro
rpcCallMethod = rpcClazz.getMethod(
ClassMember.rpcCall, String.class, String.class, String.class,
boolean.class, jsonClazz, String.class, boolean.class, h5PageClazz,
int.class, String.class, boolean.class, int.class, String.class);
int.class, String.class, boolean.class, int.class);
}
}catch(Exception e)
{
Log.i(TAG, "get RpcCallMethod err:");
Log.i(TAG, "get Old RpcCallMethod err:");
Log.printStackTrace(TAG, e);
}

if(rpcCallMethod == null)
Expand Down

0 comments on commit 9d5bb6b

Please sign in to comment.