|
|
@@ -3,6 +3,8 @@ package com.sheep.jiuyan.samllsheep.wxutil;
|
|
|
import android.content.Context;
|
|
|
import android.content.Intent;
|
|
|
|
|
|
+import com.sheep.gamegroup.util.LogUtil;
|
|
|
+
|
|
|
public class WXAPIUtil {
|
|
|
|
|
|
public static void handle(Context context, Intent newIntent) {
|
|
|
@@ -12,6 +14,7 @@ public class WXAPIUtil {
|
|
|
} else {
|
|
|
newIntent.setClassName(context, "com.sheep.jiuyan.samllsheep.wxutil.WXUmengEntryActivity");
|
|
|
}
|
|
|
+ LogUtil.logI("Jump to "+newIntent.getComponent().getClassName());
|
|
|
context.startActivity(newIntent);
|
|
|
}
|
|
|
|