update:2021.04.26

fix:
add:加入极光推送,发送正在运行的app信息
This commit is contained in:
FHT
2021-04-26 18:14:14 +08:00
parent d23777e680
commit 5da934cf7e
20 changed files with 1497 additions and 38 deletions

View File

@@ -0,0 +1,18 @@
package com.android.uiuios.network.api;
import com.android.uiuios.network.BaseResponse;
import com.android.uiuios.network.URLPath;
import io.reactivex.Observable;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.POST;
public interface RunningApp {
@FormUrlEncoded
@POST(URLPath.RUN_NEW_APP)
Observable<BaseResponse> sendAppInfo(
@Field("sn") String sn,
@Field("app") String app
);
}