没做啥

This commit is contained in:
lyy
2016-09-27 21:16:30 +08:00
parent 1154470759
commit 3496022c60
12 changed files with 589 additions and 380 deletions

View File

@@ -1,14 +1,15 @@
package com.arialyy.simple.base;
import android.app.Application;
import com.arialyy.frame.core.AbsFrame;
/**
* Created by Lyy on 2016/9/27.
*/
public class BaseApplication extends Application {
@Override public void onCreate() {
super.onCreate();
AbsFrame.init(this);
}
@Override public void onCreate() {
super.onCreate();
AbsFrame.init(this);
}
}