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();
| }
|
|