Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Lucas1805 · Sep 17, 2016 at 04:18 PM · c#androidconnectioninternetandroidjavaobject

How to get connected wifi BSSID ?

How can I get BSSID (MAC address of the wifi router I'm connecting in) in my Unity Game App on Android and iOS phone?

I have tried these method but none of them working. Please help

*Method 1: This code work fine and get the correct BSSID info but it's only work on Editor, when I build it to Android App it's not working, return string is nothing.

     string mac = "";
     var card = NetworkInterface.GetAllNetworkInterfaces().FirstOrDefault();
     if (card == null)
         return null;
     else
     {
         byte[] bytes = card.GetPhysicalAddress().GetAddressBytes();
         for (int i = 0; i < bytes.Length; i++)
         {
             mac = string.Concat(mac + (string.Format("{0}", bytes[i].ToString("X2"))));
             if (i != bytes.Length - 1)
             {
                 //This is just for formating the final result
                 mac = string.Concat(mac + ":");
             }
         }
         mac = card.GetPhysicalAddress().ToString();
         return mac;
     }

*Method 2: I'm using AndroidJavaClass to call an android function to get BSSID on Android Phone. Since this method not working on Editor, I build and run this on Android Phone but no string is return

     string mac = "";
     AndroidJavaClass jc = new AndroidJavaClass("android.net.wifi.WifiInfo");
     mac = jc.Call<string>("getBSSID");

More specific information about android "android.net.wifi.WifiInfo" class here: https://developer.android.com/reference/android/net/wifi/WifiInfo.html#getBSSID()

I'm new to unity and my English is not very good. Hope you gus can help me.

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Lucas1805 · Sep 18, 2016 at 01:38 PM 0
Share

[UPDATE] I try to add android permission for reading wifi state by modifing "Android$$anonymous$$anifest.xml" file at location "\Assets\Plugins\Android" with the code below

  <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

But it's still desn't work when I build an run it on my android phone. It's Always return nothing (I try by showing it to game screen). Can anyone please help ?

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by daaain · Oct 06, 2017 at 04:07 PM

This question is answered on StackOverflow: https://stackoverflow.com/questions/39566989/how-to-get-bssid-of-wifi-im-connecting-to-in-unity-c

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Unity Like Facebook Page through app 3 Answers

Android Plugin in Unity - No Return Value 0 Answers

How to Implement Java Interface with AndroidJavaProxy 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges