diff options
author | Alexander Tkachev | 2016-07-19 18:43:00 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | a13e03e988f85a67366f2ffe39bae67576e425bc (patch) | |
tree | 5c41114e9bc54ca203877c76d48bb245d1b653c0 /dists/android | |
parent | 0c1c274abdbdb4183d9a08669082227aa912b1ea (diff) | |
download | scummvm-rg350-a13e03e988f85a67366f2ffe39bae67576e425bc.tar.gz scummvm-rg350-a13e03e988f85a67366f2ffe39bae67576e425bc.tar.bz2 scummvm-rg350-a13e03e988f85a67366f2ffe39bae67576e425bc.zip |
CLOUD: Add Networking::Connection::isLimited()
`false` everywhere by default, but works on Android (`true` if not
Wi-Fi).
Diffstat (limited to 'dists/android')
-rw-r--r-- | dists/android/AndroidManifest.xml | 2 | ||||
-rw-r--r-- | dists/android/AndroidManifest.xml.in | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml index c091039266..64870a459b 100644 --- a/dists/android/AndroidManifest.xml +++ b/dists/android/AndroidManifest.xml @@ -40,6 +40,8 @@ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" android:required="true"/> + <uses-feature android:name="android.hardware.screen.landscape" android:required="false" /> diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in index 7eaece9d1f..9601425c74 100644 --- a/dists/android/AndroidManifest.xml.in +++ b/dists/android/AndroidManifest.xml.in @@ -40,6 +40,8 @@ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" android:required="true"/> + <uses-feature android:name="android.hardware.screen.landscape" android:required="false" /> |