mirror of
http://galexander.org/git/simplesshd.git
synced 2025-03-01 15:31:59 +00:00
Change target API to 29, and enable requestLegacyExternalStorage so that
phones running android 11 (and 10?) can access /sdcard without using 'scoped storage'. NB - when google play forces us to use API 30 (later this year?), will need to switch to new MANAGE_EXTERNA_STORAGE permission.
This commit is contained in:
parent
309587e963
commit
e37a4bed87
@ -25,7 +25,7 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "org.galexander.sshd"
|
applicationId "org.galexander.sshd"
|
||||||
minSdkVersion 17
|
minSdkVersion 17
|
||||||
targetSdkVersion 30
|
targetSdkVersion 29
|
||||||
|
|
||||||
versionCode 26
|
versionCode 26
|
||||||
versionName "26"
|
versionName "26"
|
||||||
|
@ -10,7 +10,8 @@
|
|||||||
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
||||||
<application android:label="SimpleSSHD" android:icon="@drawable/icon"
|
<application android:label="SimpleSSHD" android:icon="@drawable/icon"
|
||||||
android:allowBackup="false" android:banner="@drawable/tvbanner"
|
android:allowBackup="false" android:banner="@drawable/tvbanner"
|
||||||
android:usesCleartextTraffic="true">
|
android:usesCleartextTraffic="true"
|
||||||
|
android:requestLegacyExternalStorage="true">
|
||||||
<activity android:name="SimpleSSHD" android:label="SimpleSSHD"
|
<activity android:name="SimpleSSHD" android:label="SimpleSSHD"
|
||||||
android:launchMode="singleTask">
|
android:launchMode="singleTask">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
Loading…
Reference in New Issue
Block a user