1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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_RELEASE = "http://114.215.109.124:8805/"
        ROOT_URL_RELEASE_IMAGE = ROOT_URL_RELEASE + "images/"
        super.onCreate()
    }
 
}