Skip to main content

Connects nearby devices without Bluetooth, Internet. Presenting Google Wi-Fi Aware !

Google has found a new way to keep nearby devices and users connected as it has launched its "WiFiNanScan App".

Google has spent years developing a very quick and easy way to share content between two Android devices, and it's finally cracked the problem.

So Hi there, This is Mayank and here in this blog, you will get to know about Google's new Wi-Fi Aware App.

Daniel Marcos Schwaycer, a Product Manager on Android, announced Nearby Share yesterday, describing it as "a platform to enable reliable and easy sharing across thousands of Android phone models and billions of people." Sharing content on Android until now has meant searching for a contact, attaching a file to a message, and sending it, but Nearby Share is meant to replace that process entirely.

Nan: Neighbor Awareness Networking

In case you don't know, wi-fi aware is Neighbor Aware Networking (NAN) that let smartphones running on android 8 and above version to "discover and connect" directly to each other without any other type of connectivity between them."
The API discovers the nearby devices and creates a network for sharing data or sending short messages.
As per Google, this wifi network-aware support "higher throughputs rates across longer distance than Bluetooth connections."


What is the WifiNanScan App and how does it work?

WifiNanScan App is designed as a research, demonstration, and testing tool for developers, vendors, universities, and more.

-Using this app, users can send a document to a printer without the need to first log onto the network.

-The app lets users reserve a restaurant and view its menu while walking by it without an internet connection whether it is open or closed.

-The app also helps to automate and timestamp the check-ins and roll-call in a school.

-Using this app, users can replace their physical ID such as a driver’s license or passport with mobile identification. This helps travelers to easily pass the airport security, customs, and immigration process, traffic police without requiring to present a physical ID.

The WifiNanScan App (made by ‘Developed with Google’) Play Store listing gives us a bit more idea about it. “With this app, it is possible to obtain a distance measurement with a precision of about 1 meter with phones up to 15 meters apart. Developers, OEMs, and researchers can use this tool to validate distance/range measurements enabling the development of peer-to-peer ranging and data transfer, find my phone and context-aware applications based on the WiFi Aware/NAN API,” stated the listing.

It is worth adding that some enhancements have been made in Android 12 as well when it comes to Wi-Fi Aware. It includes efficiency improvements and addressing lost connections.









Comments

Popular posts from this blog

Facebook is testing ‘Green Screen’ editing tool for content creators

"Green Screen" will be available as an editing tool for the social media app whereas on Instagram it is available as an AR filter or effect." Facebook is testing a new feature for creators. The new “Green Screen” tool will allow users to add any video or image in the background of the Facebook Stories they create. This option is similar to the one available on Instagram already. However, it will be available as an editing tool for the social media app, whereas on Instagram it is available as an AR filter or effect. This tool was spotted by Mamun Billah via Social Media Today. As per the screenshot shared, the user can see the option in the stories section. The user can choose a photo or video from the Gallery section. When the user chooses the option, it is also labelled as “GREEN SCREEN by Instagram” at the bottom. Here’s the screenshot of the feature Green screen feature comes to facebook stories section! @MattNavarra pic.twitter.com/np9uMuQJaZ — Mamun Billah (@mamun...

Python program to print and add numbers starting 1 onwards till the sum of them is less than 100

Below is the code snippet to print the sum of number from 1 to 100 in Python. Check the indents. #Declaring Variable  sum=0  #Now Running For Loop from 1 to 100   #range(0,n) take 0 and leave the last element 'n'  for i in range (1,101):  #Checking weather sum is less than 100 or not       while((sum+i)<100):           sum+=i           print(sum,'\n')           #Once Printed Sum Now Break The While Loop           break #End Of Program #END OF THE PROGRAM

Java or C++?

Which programming language should I choose ? H ey Folks, If you are reading this blog, most probably you are going to start Competitive coding or you are initiating the journey of programmar. Or maybe you are a professional, Engineer well never mind. In this blog, I will explain to you the keypoint and language you should choose for your Programming Journey or for your Competitive Journey. To the point, if you are planning to start Competitive Programming , and no prior Kowlege of JAVA and I am assuming you are completely beginner, then without any doubt go for C++ . Why I am saying so, let me explain it in the simplest way. In CPP, you can use a lot of libraries helpful in competitive coding, and most important C++ is the most reliable and low latency language. when you will use the STL library to implement your code then you will fall in love with C++.You can easily use the property of Stack, Queue, and Priority Queue using STL and when it comes to program latency ...