修改策略上报push接收不到的问题

This commit is contained in:
tongchenfei
2020-08-17 15:44:23 +08:00
parent 3e823f1ac5
commit 86c9939475
3 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: 'com.alibaba.arouter'
android {
@@ -38,7 +39,7 @@ dependencies {
implementation rootProject.ext.dependencies.androidxccorektx
implementation rootProject.ext.dependencies.androidxconstraintlayout
implementation rootProject.ext.dependencies.arouter
annotationProcessor rootProject.ext.dependencies.aroutercompiler
kapt rootProject.ext.dependencies.aroutercompiler
implementation rootProject.ext.dependencies.rxjava
implementation rootProject.ext.dependencies.rxandroid

View File

@@ -243,5 +243,5 @@ public class MogoServicePaths {
* 策略上报
*/
@Deprecated
public static final String PATH_STRATEGY_SHARE = "/strategy/share";
public static final String PATH_STRATEGY_SHARE = "/share/strategy";
}

View File

@@ -109,6 +109,8 @@ public class TanluUploadParams {
"eventType='" + eventType + '\'' +
", fromType='" + fromType + '\'' +
", duration=" + duration +
", parentId='" + parentId + '\'' +
", location=" + location +
'}';
}
}