Skip to content

Commit

Permalink
更新版本号 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HChenX committed Sep 8, 2024
1 parent 1d380c5 commit c490f89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
id 'maven-publish'
}

def defVersion = 'v.1.0.1'
int defVersionCode = 2024081700
def defVersion = 'v.1.0.2'
int defVersionCode = 2024090800

group = 'com.github.HChenX'
version = defVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public static List<AppData> getInstalledPackages(Context context, int flag) {
} catch (Throwable e) {
AndroidLog.logE(TAG, e);
}
return appDataList;
return new ArrayList<>();
}

public static List<AppData> getInstalledPackages(int flag) {
Expand Down Expand Up @@ -187,10 +187,11 @@ public static List<AppData> getPackagesByCode(Context context, ICode iCode) {
appDataList.add(addAppData(get, packageManager));
}
}
return appDataList;
} catch (Throwable e) {
AndroidLog.logE(TAG, e);
}
return appDataList;
return new ArrayList<>();
}

public static List<AppData> getPackagesByCode(ICode iCode) {
Expand Down

0 comments on commit c490f89

Please sign in to comment.