From 5a0fff8095cd5356f57c181b7e7b820e0f7efacf Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 20 一月 2022 16:00:14 +0800
Subject: [PATCH] 将项目拆分为两个子项目,监管和督察
---
app/src/main/java/cn/flightfeather/thirdappmodule/CommonApplication.java | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/app/src/main/java/cn/flightfeather/thirdappmodule/CommonApplication.java b/app/src/main/java/cn/flightfeather/thirdappmodule/CommonApplication.java
index 81c7d74..0c7c59e 100644
--- a/app/src/main/java/cn/flightfeather/thirdappmodule/CommonApplication.java
+++ b/app/src/main/java/cn/flightfeather/thirdappmodule/CommonApplication.java
@@ -19,7 +19,6 @@
import cn.flightfeather.thirdappmodule.util.GlobalConfig;
import cn.flightfeather.thirdappmodule.util.crashreport.MyCrashHandler;
import cn.flightfeather.thirdappmodule.util.notification.MyNotificationChannel;
-import cn.flightfeather.thirdappmodule.util.push.PushService;
import cn.flightfeather.thirdappmodule.util.tbs.Tbs;
import retrofit2.Retrofit;
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
@@ -32,8 +31,8 @@
public class CommonApplication extends Application {
// public final String ROOT_URL ="http://192.168.0.200:8080/";
// public final String ROOT_URL_IMAGE ="http://192.168.0.200:8080/images/";
- public final String ROOT_URL ="http://192.168.0.146:8080/";
- public final String ROOT_URL_IMAGE ="http://192.168.0.146:8080/images/";
+ public String ROOT_URL ="http://192.168.0.146:8080/";
+ public String ROOT_URL_IMAGE ="http://192.168.0.146:8080/images/";
public String ROOT_URL_RELEASE = "http://47.100.191.150:9005/";
public String ROOT_URL_RELEASE_IMAGE = ROOT_URL_RELEASE + "images/";
@@ -64,7 +63,7 @@
MyNotificationChannel.Companion.init(this);
//鍒濆鍖栫Щ鍔ㄦ帹閫�
- PushService.Companion.init(this);
+// PushService.Companion.init(this);
if (instance == null) {
instance = this;
--
Gitblit v1.9.3