Skip to content

Commit 5829b35

Browse files
committed
Release 2.0.7
1 parent cb425b7 commit 5829b35

File tree

5 files changed

+5
-33
lines changed

5 files changed

+5
-33
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
/build
88
/captures
99
.externalNativeBuild
10-
10+
.idea

.idea/misc.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

aop/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 = '2.0.6'
2+
pluginVersion = '2.0.7'
33
Properties properties = new Properties()
44
if (project.file('local.properties').exists()) {
55
properties.load(project.file('local.properties').newDataInputStream())

aop/src/main/groovy/com/sensorsdata/analytics/android/plugin/SensorsAnalyticsClassVisitor.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ class SensorsAnalyticsClassVisitor extends ClassVisitor implements Opcodes {
119119
}
120120

121121
@Override
122-
protected void onMethodEnter() {
123-
super.onMethodEnter()
122+
protected void onMethodExit(int opcode) {
123+
super.onMethodExit(opcode)
124124

125125
if (isSensorsDataIgnoreTrackOnClick) {
126126
return

aop/src/main/groovy/com/sensorsdata/analytics/android/plugin/SensorsAnalyticsHookConfig.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class SensorsAnalyticsHookConfig {
1515
'(Landroid/view/View;)V',
1616
'android/view/View$OnClickListener',
1717
'trackViewOnClick',
18-
'(Landroid/view/View;)V',
18+
'(Ljava/lang/Object;)V',
1919
1, 1,
2020
[Opcodes.ALOAD]))
2121
sInterfaceMethods.put('onCheckedChanged(Landroid/widget/CompoundButton;Z)V', new SensorsAnalyticsMethodCell(

0 commit comments

Comments
 (0)