Skip to content

Commit e76aeb5

Browse files
author
weiqiangliu
committed
Release 3.4.1
1 parent 4d26721 commit e76aeb5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

plugin/ext.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project.ext {
2-
pluginVersion = '3.4.0'
2+
pluginVersion = '3.4.1'
33
Properties properties = new Properties()
44
if (project.file('local.properties').exists()) {
55
properties.load(project.file('local.properties').newDataInputStream())

plugin/src/main/groovy/com/sensorsdata/analytics/android/plugin/SensorsAnalyticsTransform.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import java.util.jar.JarOutputStream
4848

4949
class SensorsAnalyticsTransform extends Transform {
5050
private SensorsAnalyticsTransformHelper transformHelper
51-
public static final String VERSION = "3.4.0"
51+
public static final String VERSION = "3.4.1"
5252
public static final String MIN_SDK_VERSION = "5.4.3"
5353
private WaitableExecutor waitableExecutor
5454
private URLClassLoader urlClassLoader

plugin/src/main/groovy/com/sensorsdata/analytics/android/plugin/SensorsAnalyticsTransformHelper.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ class SensorsAnalyticsTransformHelper {
3838
"com.umeng.message",
3939
"com.xiaomi.push",
4040
"com.huawei.hms",
41-
"com.igexin.push",
4241
"cn.jpush.android",
4342
"cn.jiguang",
4443
"com.meizu.cloud.pushsdk",
4544
"com.vivo.push",
46-
"com.igexin.sdk",
45+
"com.igexin",
46+
"com.getui",
4747
"com.xiaomi.mipush.sdk",
4848
"com.heytap.msp.push",
4949
'com.bumptech.glide'])

plugin/src/main/groovy/com/sensorsdata/analytics/android/plugin/push/SensorsPushInjected.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ private static void handleCustomBroadcast(MethodVisitor methodVisitor, String na
185185
if ("onReceive(Landroid/content/Context;Landroid/content/Intent;)V".equals(nameDesc)) {
186186
methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
187187
methodVisitor.visitVarInsn(Opcodes.ALOAD, 1);
188-
methodVisitor.visitVarInsn(Opcodes.ILOAD, 2);
188+
methodVisitor.visitVarInsn(Opcodes.ALOAD, 2);
189189
methodVisitor.visitMethodInsn(Opcodes.INVOKESTATIC, PUSH_TRACK_OWNER, "onBroadcastReceiver",
190190
"(Landroid/content/BroadcastReceiver;Landroid/content/Context;Landroid/content/Intent;)V", false);
191191
}

0 commit comments

Comments
 (0)