We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a70e50 commit b4a2b60Copy full SHA for b4a2b60
2 files changed
SmartFileBrowser/build.gradle
@@ -34,7 +34,7 @@ android {
34
}
35
36
group = 'ir.smartdevelopers'
37
-version = '2.0.9'
+version = '2.1.1'
38
39
dependencies {
40
SmartFileBrowser/src/main/java/ir/smartdevelopers/smartfilebrowser/customClasses/FileUtil.java
@@ -66,6 +66,7 @@ public static String getExternalStoragePath(Context context){
66
public static int getChildFileCount(File file){
67
int count=0;
68
File[] innerFiles=file.listFiles();
69
+ if(innerFiles == null) return 0;
70
for (File f:innerFiles){
71
if (f.isFile()){
72
count++;
0 commit comments