lmw
2023-06-16 03972ad1d3ce6ffe0be0395c0a4d5dcb4474031f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.luck.picture.lib.app;
 
import android.content.Context;
 
/**
 * @author:luck
 * @date:2019-12-03 15:14
 * @describe:IApp
 */
public interface IApp {
    /**
     * 获取全局应用Application
     *
     * @return
     */
    Context getAppContext();
}