Skip to content

Commit

Permalink
IBase
Browse files Browse the repository at this point in the history
  • Loading branch information
Doris1112 committed Mar 29, 2021
1 parent 3dcb916 commit 86a231c
Show file tree
Hide file tree
Showing 13 changed files with 46 additions and 13 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'com.android.tools.build:gradle:4.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Sep 17 11:47:28 CST 2019
#Mon Jan 11 19:14:29 CST 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class IActivityContainer {
private IActivityContainer() { }

private static IActivityContainer instance;
private List<Activity> activityStack = new ArrayList<>();
private final List<Activity> activityStack = new ArrayList<>();

public static IActivityContainer getInstance() {
if (instance == null){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected void initWidget(View root) {

}

protected final <T extends View> T findViewById(@IdRes int id) {
protected final <T extends View> T $(@IdRes int id) {
if (mRoot != null) {
return mRoot.findViewById(id);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class IAppCrashHandler implements Thread.UncaughtExceptionHandler {
private Thread.UncaughtExceptionHandler mDefaultHandler;
private static IAppCrashHandler instance;
private WeakReference<Context> mContext;
private IBaseLogUtils logUtils;
private final IBaseLogUtils logUtils;

private IAppCrashHandler(IBaseLogUtils logUtils) {
this.logUtils = logUtils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @date 2019/10/29
*/
@SuppressWarnings("unchecked")
public class ICollectionUtil {
public class ICollectionUtils {

/**
* List集合转换为数组
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author Doris
* @date 2019/1/7
*/
public class IStatusBarUtil {
public class IStatusBarUtils {

/**
* 设置状态栏颜色
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @date 2019/10/29
*/
@SuppressWarnings("WeakerAccess")
public class IStreamUtil {
public class IStreamUtils {

/**
* Copy 文件
Expand Down

0 comments on commit 86a231c

Please sign in to comment.