Commit e73fb8ff901430d098a3a5d59643731948bb8b4e
1 parent
949fe97fc9
Exists in
master
新版本发布
Showing
3 changed files
with
3 additions
and
4 deletions
Show diff stats
.idea/gradle.xml
app/build.gradle
... | ... | @@ -24,8 +24,8 @@ android { |
24 | 24 | applicationId "com.hjx.parent" |
25 | 25 | minSdk 26 |
26 | 26 | targetSdk 32 |
27 | - versionCode 1006 | |
28 | - versionName "1.0.0.6" | |
27 | + versionCode 1007 | |
28 | + versionName "1.0.0.7" | |
29 | 29 | |
30 | 30 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
31 | 31 | } | ... | ... |
libs/common/src/main/java/com/prws/common/net/NetWorks.java
... | ... | @@ -58,7 +58,7 @@ import retrofit2.http.Url; |
58 | 58 | */ |
59 | 59 | public class NetWorks extends RetrofitUtils { |
60 | 60 | //服务器路径 |
61 | - public static final NetService service_url = getMachineRetrofit("http://192.168.3.144:8088").create(NetService.class); | |
61 | + public static final NetService service_url = getMachineRetrofit("https://mgr.hjx.com").create(NetService.class); | |
62 | 62 | |
63 | 63 | //设缓存有效期为1天 |
64 | 64 | protected static final long CACHE_STALE_SEC = 60 * 60 * 24 * 1; | ... | ... |