File tree Expand file tree Collapse file tree 3 files changed +6
-14
lines changed
Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ apply plugin: 'com.android.application'
22
33android {
44 // app can use the API features included in this API level and lower.
5- compileSdkVersion 29
5+ compileSdkVersion 30
66
77 // can override some attributes in main/AndroidManifest.xml
88 defaultConfig {
99 applicationId ' net.sourceforge.smallbasic'
1010 minSdkVersion 16
11- targetSdkVersion 29
12- versionCode 43
13- versionName " 12.21 "
11+ targetSdkVersion 30
12+ versionCode 44
13+ versionName " 12.22 "
1414 resConfigs " en"
1515 }
1616
Original file line number Diff line number Diff line change 99 <application android : label =" @string/app_name"
1010 android : hasCode =" true"
1111 android : hardwareAccelerated =" true"
12- android : requestLegacyExternalStorage =" true"
1312 android : usesCleartextTraffic =" true"
1413 android : hasFragileUserData =" true"
1514 android : icon =" @drawable/ic_launcher" >
Original file line number Diff line number Diff line change @@ -536,15 +536,8 @@ void Runtime::loadConfig() {
536536 }
537537 s = settings.get (PATH_KEY);
538538 if (s) {
539- const char *legacy = getenv (" LEGACY_DIR" );
540- if (storage != nullptr && legacy != nullptr && strcmp (legacy, s->c_str ()) == 0 ) {
541- // don't restore the legacy folder
542- trace (" path = %s" , storage);
543- chdir (storage);
544- } else {
545- trace (" path = %s" , s->c_str ());
546- chdir (s->c_str ());
547- }
539+ trace (" path = %s" , s->c_str ());
540+ chdir (s->c_str ());
548541 }
549542 s = settings.get (MUTE_AUDIO_KEY);
550543 if (s && s->toInteger () == 1 ) {
You can’t perform that action at this time.
0 commit comments