This commit is contained in:
unknown
2020-03-31 16:41:18 +08:00
parent 6fc9985ad2
commit 91dbfe1862
14 changed files with 190 additions and 91 deletions

View File

@@ -28,13 +28,13 @@ class VoiceForbiddenWhenGuide {
@Before("authorizeTrackPoint()")
fun trackVoiceWhenAuthorize(joinPoint: ProceedingJoinPoint) {
Logger.d(TAG, "trackVoiceWhenAuthorize")
val msg = joinPoint.args[0] as String
if (SharedPreferenceUtil.hasGuide()) {
Logger.d(TAG, "proceed,no interception")
joinPoint.proceed()
} else {
return
}
// Logger.d(TAG, "trackVoiceWhenAuthorize")
// val msg = joinPoint.args[0] as String
// if (SharedPreferenceUtil.hasGuide()) {
// Logger.d(TAG, "proceed,no interception")
// joinPoint.proceed()
// } else {
// return
// }
}
}