File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
src/main/java/net/sourceforge/smallbasic Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ android {
99 applicationId ' net.sourceforge.smallbasic'
1010 minSdkVersion 16
1111 targetSdkVersion 33
12- versionCode 55
13- versionName ' 12.25 '
14- resConfigs ' en'
12+ versionCode 57
13+ versionName ' 12.26 '
14+ resConfigs ' en'
1515 }
1616
1717 signingConfigs {
Original file line number Diff line number Diff line change @@ -913,8 +913,8 @@ private final class Storage {
913913 private final String _media ;
914914
915915 private Storage () {
916- String external = "" ;
917- String media = "" ;
916+ String external = null ;
917+ String media = null ;
918918
919919 String path = Environment .getExternalStorageDirectory ().getAbsolutePath ();
920920 if (isPublicStorage (path )) {
@@ -949,15 +949,15 @@ private Storage() {
949949 }
950950
951951 public String getExternal () {
952- return _external ;
952+ return _external != null ? _external : "" ;
953953 }
954954
955955 public String getInternal () {
956- return _internal ;
956+ return _internal != null ? _internal : "" ;
957957 }
958958
959959 public String getMedia () {
960- return _media ;
960+ return _media != null ? _media : "" ;
961961 }
962962
963963 private boolean isPublicStorage (String dir ) {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
55 mavenCentral()
66 }
77 dependencies {
8- classpath ' com.android.tools.build:gradle:7.3.1 '
8+ classpath ' com.android.tools.build:gradle:7.4.2 '
99 }
1010}
1111
You can’t perform that action at this time.
0 commit comments