Refine finding default Wi-Fi interface

This commit is contained in:
Mygod
2018-01-05 00:53:55 +08:00
parent dc2db049c7
commit 7e30ddf26d
2 changed files with 19 additions and 6 deletions

View File

@@ -3,8 +3,11 @@ package be.mygod.vpnhotspot
import android.app.Application
import android.app.NotificationChannel
import android.app.NotificationManager
import android.content.SharedPreferences
import android.content.res.Resources
import android.os.Build
import android.preference.PreferenceManager
import java.net.NetworkInterface
class App : Application() {
companion object {
@@ -17,7 +20,19 @@ class App : Application() {
if (Build.VERSION.SDK_INT >= 26) getSystemService(NotificationManager::class.java)
.createNotificationChannel(NotificationChannel(HotspotService.CHANNEL,
"Hotspot Service", NotificationManager.IMPORTANCE_LOW))
pref = PreferenceManager.getDefaultSharedPreferences(this)
val wifiRegexes = resources.getStringArray(Resources.getSystem()
.getIdentifier("config_tether_wifi_regexs", "array", "android"))
.map { it.toPattern() }
wifiInterfaces = NetworkInterface.getNetworkInterfaces().asSequence()
.map { it.name }
.filter { ifname -> wifiRegexes.any { it.matcher(ifname).matches() } }
.sorted().toList().toTypedArray()
val wifiInterface = wifiInterfaces.singleOrNull()
if (wifiInterface != null && pref.getString(HotspotService.KEY_WIFI, null) == null)
pref.edit().putString(HotspotService.KEY_WIFI, wifiInterface).apply()
}
val pref by lazy { PreferenceManager.getDefaultSharedPreferences(this) }
lateinit var pref: SharedPreferences
lateinit var wifiInterfaces: Array<String>
}