Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
8bfffcea
Commit
8bfffcea
authored
Nov 29, 2017
by
Sylvain Berfini
🐮
Browse files
Fixed AndroidPlatformHelpers for devices using old version of Android
parent
98ef82ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
wrappers/java/classes/tools/AndroidPlatformHelper.java
wrappers/java/classes/tools/AndroidPlatformHelper.java
+3
-2
No files found.
wrappers/java/classes/tools/AndroidPlatformHelper.java
View file @
8bfffcea
...
...
@@ -21,6 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
package
org.linphone.core.tools
;
import
org.linphone.mediastream.Log
;
import
org.linphone.mediastream.Version
;
import
android.net.wifi.WifiManager
;
import
android.net.wifi.WifiManager.MulticastLock
;
...
...
@@ -50,7 +51,7 @@ public class AndroidPlatformHelper {
public
AndroidPlatformHelper
(
Object
ctx_obj
)
{
mContext
=
(
Context
)
ctx_obj
;
WifiManager
wifiMgr
=
mContext
.
getSystemService
(
WifiManager
.
class
);
WifiManager
wifiMgr
=
(
WifiManager
)
mContext
.
getSystemService
(
Context
.
WIFI_SERVICE
);
mPowerManager
=
(
PowerManager
)
mContext
.
getSystemService
(
Context
.
POWER_SERVICE
);
mConnectivityManager
=
(
ConnectivityManager
)
mContext
.
getSystemService
(
Context
.
CONNECTIVITY_SERVICE
);
...
...
@@ -67,7 +68,7 @@ public class AndroidPlatformHelper {
}
public
String
[]
getDnsServers
()
{
if
(
mConnectivityManager
==
null
||
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
M
)
if
(
mConnectivityManager
==
null
||
Build
.
VERSION
.
SDK_
Build
INT
<
Version
.
API23_MARSHMALLOW_60
)
return
null
;
if
(
mConnectivityManager
.
getActiveNetwork
()
==
null
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment