Commit e73fb8ff901430d098a3a5d59643731948bb8b4e

Authored by shixianjie
1 parent 949fe97fc9
Exists in master

新版本发布

... ... @@ -17,6 +17,5 @@
17 17 <option name="resolveExternalAnnotations" value="false" />
18 18 </GradleProjectSettings>
19 19 </option>
20   - <option name="offlineMode" value="true" />
21 20 </component>
22 21 </project>
23 22 \ No newline at end of file
... ...
... ... @@ -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;
... ...