riku
2022-02-18 d59d55575d913646b7a90fca651904ab889c6723
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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()
    }
 
}