①AndroidManifest.xmlに追加。
②Activityで取得
WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
String macAddress = wifiInfo.getMacAddress();
Go to list of users who liked
More than 5 years have passed since last update.
①AndroidManifest.xmlに追加。
②Activityで取得
WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
String macAddress = wifiInfo.getMacAddress();
Register as a new user and use Qiita more conveniently
Go to list of users who liked