From 92b6ebcb089d4dc14ad0a1432dfd0e8a415bd281 Mon Sep 17 00:00:00 2001 From: leafwai Date: Mon, 30 Aug 2021 21:28:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B8=B8=E6=88=8F=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E5=BC=95=E5=AF=BC=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/java/com/gh/common/constant/Config.java | 2 +- .../java/com/gh/gamecenter/retrofit/service/ApiService.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/gh/common/constant/Config.java b/app/src/main/java/com/gh/common/constant/Config.java index f86960d656..80323f7fb8 100644 --- a/app/src/main/java/com/gh/common/constant/Config.java +++ b/app/src/main/java/com/gh/common/constant/Config.java @@ -334,7 +334,7 @@ public class Config { }); RetrofitManager.getInstance(HaloApp.getInstance().getApplication()) - .getApi().getGameGuidePopup(Build.MANUFACTURER, Build.VERSION.RELEASE, Build.MODEL, channel, Constants.API_VERSION) + .getApi().getGameGuidePopup(Build.MANUFACTURER, Build.VERSION.RELEASE, Build.MODEL, channel, BuildConfig.VERSION_NAME) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe(new BiResponse() { diff --git a/app/src/main/java/com/gh/gamecenter/retrofit/service/ApiService.java b/app/src/main/java/com/gh/gamecenter/retrofit/service/ApiService.java index 80aa3ed59b..c9f7977534 100644 --- a/app/src/main/java/com/gh/gamecenter/retrofit/service/ApiService.java +++ b/app/src/main/java/com/gh/gamecenter/retrofit/service/ApiService.java @@ -3275,7 +3275,7 @@ public interface ApiService { /** * 获取引导浮窗 */ - @GET("api_go/games_guide_popup") + @GET("api_go/games/guide_popup") Single getGameGuidePopup( @Query("manufacture") String manufacture, @Query("android_version") String systemVersion,