package com.flightfeather.ducha
|
|
import cn.flightfeather.thirdappmodule.CommonApplication
|
|
/**
|
* @author riku
|
* Date: 2021/7/29
|
*/
|
class DuChaApplication : CommonApplication() {
|
|
override fun onCreate() {
|
released = false
|
ROOT_URL = "http://192.168.0.146:8080/"
|
ROOT_URL_IMAGE = ROOT_URL + "images/"
|
|
// ROOT_URL_RELEASE = "http://114.215.109.124:8805/"
|
ROOT_URL_RELEASE_IMAGE = ROOT_URL_RELEASE + "images/"
|
super.onCreate()
|
}
|
|
}
|