Analytics cookies. We use analytics cookies to understand how you use our websites so we can make them better, e.g. They're used to gather information about the pages you visit and how many clicks you need to accomplish a task. Viewing Inventor 2020 Data. Inventor 2020 Online Help and Local Help page. Inventor LT 2020 Language Packs. Autodesk Inventor 2020 Remote Content Libraries. Mold Design Content Libraries for Autodesk Inventor Professional 2020. Hotfix: Inventor 2020 and 2020.1: Polish only: fix a data corruption issue in the Unfold feature for Sheet Metal. Creating an App Inventor App begins in your browser where you design how the app will look. In questo video vedremo come sia possibile lavorare con MIT App Inventor 2 in locale (offline, senza connessione ad internet) Il progetto si chiama AI2U e lo.

WiFi Manager Extension

See the App Inventor Extensions document about how to use an App Inventor Extension.
For questions about this extension or bug reports please start a new thread in the App Inventor Extensions forum. Thank you.
For feature requests please contact me by email. To be a sponsor of a new method already is possible starting from only 10 USD! With your contribution you will help the complete App Inventor community. Thank you.

Dec 22th, 2015: Version 1: initial release.

July 7th, 2016: Version 2: macAddress method added.

How to clean uninstall and reinstall Autodesk Desktop App. To perform a clean uninstall of the Autodesk Desktop App follow the steps below: Open Task manager (Ctrl + Shift + Esc). Open the Services tab and stop AdAppMgrSvc. Open the Details tab and close the following processes: AdAppMgrSvc.exe AdAppMgrUpdater.exe Open 'Control Panel' and uninstall Autodesk Desktop App. Right-click on the. Emma and the Inventor 1.0 for Mac can be downloaded from our website for free. This free app can be installed on Mac OS X 10.6.6 or later. This Mac download was scanned by our built-in antivirus and was rated as safe. The program lies within Games, more precisely Puzzle. The unique identifier for this application's bundle is com.trickysoftware. How to use MIT AppInventor 2 without having to be connected to the internet or logging with a google account or suffering from slow speed and possibly data loss.

Aug 11th, 2016: Version 2a: avoid DX execution failed error: build each extension separately

Nov 27th, 2016: Version 3: BSSID method added

Feb 25th, 2017: Version 3a: bugfix IllegalArgumentException: Receiver not registered: null while switching screens

May 10th, 2017: Version 3b: bugfix IllegalArgumentException: Receiver not registered while switching screens

Aug 14th, 2017: Version 4: correspondingRSSIs, SignalStrength, ConnectionInfo, Is5GHzBandSupported added

Aug 16th, 2017: Version 5: correspondingBSSIs added

Dec 6th, 2017: Version 5a: bugfix configuredSSIDs, see also here. Thank you Edgar for the error report.

Offline

Dec 14th, 2017: Version 5b: bugfix ConnectSSID, see also here. Thank you again Edgar for the error report.

Apr 8th, 2018: Version 6: new method AccessPointIP added

Apr 13th, 2018: Version 7: connect without password

Aug 29th, 2018: Version 8: Disconnect method added

Nov 6th, 2018: Version 9: Dnsservers method added

Jan 23th, 2019: Version 10: SDK 26 update: dangerous permission android.permission.ACCESS_COARSE_LOCATION removed. What is a dangerous permission? The method AvailableSSIDs including its corresponding event have been removed.

Jan 28th, 2019: Version 11: AvailableSSIDs added again. Additionally example project provided about how to use it together with the location sensor and GPS enabled.

Oct 21th, 2019: Version 12: AfterWifiNegotiation event added

Oct 21th, 2019: Version 13: RemoveSSID added

Oct 21th, 2019: Version 14: LocalIP: returns wifi ip if its enabled else the cellular one

Description

Some useful blocks to use in a wireless lan.
Required permissions: android.permission.ACCESS_WIFI_STATE, android.permission.CHANGE_WIFI_STATE

Properties


Returns whether Success Message should be suppressed.


Specifies whether Success Message should be suppressed.


Returns whether Warning Message should be suppressed.


Specifies whether Warning Message should be suppressed.

Methods


Return the local IP Address. Returns wifi ip if its enabled else the cellular one.
Sponsor of this block is Marius. Thank you!


Return the MAC Address of the device.
Sponsor of this block is Niko. Thank you!


Get current WiFi state: true or false.


Enable WiFi.
You can hide the success message after setting the suppressSuccessMessage property to false.
Note: to be able to test this block, you have to build the app, because the permission CHANGE_WIFI_STATE is not available in the companion app.
Note: starting from Android 10, this method does not work anymore, see also this stackoverflow answer. For Android 10 you might want to try this Activity Starter solution.


Disable WiFi.
You can hide the success message after setting the suppressSuccessMessage property to false.
Note: to be able to test this block, you have to build the app, because the permission CHANGE_WIFI_STATE is not available in the companion app. Note: starting from Android 10, this method does not work anymore, see also this stackoverflow answer.


Get current WiFi SSID (Service Set Identifier).
Note; Starting with Android 8.1 (API 27), apps must be granted the ACCESS_COARSE_LOCATION (or ACCESS_FINE_LOCATION) permission in order to obtain the SSID or BSSID. Apps that target API 29 or higher (Android 10) must be granted ACCESS_FINE_LOCATION. See also this stackoverflow answer.
Therefore just drag a location sensor component into your project and additionally ask for permission ACCESS_FINE_LOCATION.


Get current WiFi BSSID (the MAC address of the access point).
Thank you burrowmoor for being the sponsor of this method.
Note; Starting with Android 8.1 (API 27), apps must be granted the ACCESS_COARSE_LOCATION (or ACCESS_FINE_LOCATION) permission in order to obtain the SSID or BSSID. Apps that target API 29 or higher (Android 10) must be granted ACCESS_FINE_LOCATION. See also this stackoverflow answer.
Therefore just drag a location sensor component into your project and additionally ask for permission ACCESS_FINE_LOCATION.


Connect to a SSID (Service Set Identifier).
If you provide a non existing SSID or wrong password, this just will be ignored and the device will try to connect to a known SSID instead.
Note: Starting from version 7 it is also possible to connect to an open network, i.e. a SSID, which does not have a password. Thank you Robert for being the sponsor of this enhancement.
Note: to be able to test this block, you have to build the app, because the permission CHANGE_WIFI_STATE is not available in the companion app.


Get a list of configured SSIDs (Service Set Identifiers). WiFi must be enabled for this.


Get a list of available SSIDs (Service Set Identifiers). WiFi must be enabled for this.
Note: to be able to test this block, you have to build the app, because the permission CHANGE_WIFI_STATE is not available in the companion app.
Note: Precondition to use this method is to add a location sensor component into your project. Also GPS must be enabled. See the example project about how to use it..


Get current connection info.
For details, see also WiFiInfo documentation.


Check, if 5 GHz Band is supported. Returns true or false.

App Inventor Offline Mac


Get signal strength (RSSI) in a range between 0 and 100.
This algorithm is used to calculate the signal strength..


Get IP address of the access point.
Thank you Eric for being the sponsor of this method.


Disconnect.
Note: after disconnecting the device might reconnect automatically to the next available known network.
Thank you Wei Zheng for being the sponsor of this method.

App inventor offline mac computer


Return a list of DNS servers (primary and secondary) of the current network.
Note: The method returns the IP address of the gateway router when DNS is not configured inside the router.
Thank you Gabriel for being the sponsor of this method.


Remove a SSID from the network list. Note: starting from Android M, apps are not allowed to remove networks that they did not create.

Events

App Inventor Offline Download


Event indicating that Available SSIDs (Service Set Identifiers) have been scanned.
A list of the available SSIDs is provided in parameter availableSSIDs. The SSID having the best signal is provided in parameter bestSSID. A list of the corresponding RSSIs is provided in parameter correspondingRSSI. A list of corresponding BSSIs is provided in parameter correspondingBSSIs.
Thank you Tal for being the sponsor of the correspondingRSSI and correspondingBSSI functionality.


Check if the negotiation with the WifiConfiguration was successful, Returns true or false.

Example App: WiFi Test


Example App: Get Available SSIDs

Note: Precondition to use the AvailableSSID method is

  1. to add a location sensor component into the project
  2. to enable GPS and
  3. to build the app to test its functionality


Screenshot

Test

Tested successfully on Samsung Galaxy A5 (2017) running Android 8.0.

Questions and Answers

Q1: Please check TaifunWiFi.SSID in Android 9. When I build it with Android 9 (Samsung S9), the result of TaifunWiFi.SSID is <unknown ssid>. But, if I build it with Android 5, the TaifunWiFi.SSID works well. Thank you.
A: You might want to try the example project 'Get Available SSIDs' downloadable from the download section below, which adds a location sensor into the project to get the permission ACCESS_COARSE_LOCATION. Additionally please enable GPS and try using the method SSID again for Android 9 devices. See also here.

For questions about App Inventor,
please ask in the App Inventor community.Thank you.

Terms and Conditions

Mit App Inventor App Download

  • Have fun and use this extension in your App Inventor projects! Pura Vida!
  • THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  • This is is the only authorized place to download this extension. It is not allowed to host this extension somewhere else and offer it for others to download, be it on another website or market place or similar. The reason is, everybody should be able to have the opportunity to donate something in case you like my work. You are allowed to provide a link to this site, so others can download the extension here. You will find the most up to date version always here including documentation and usage examples. Thank you for your kind understanding.

Download


Developing and maintaining snippets, tutorials and extensions for App Inventor takes a lot of time.
I hope it saved some of your time. If yes, then you might consider to donate a small amount!

or donate some mBTC to Address:
1Jd8kXLHu2Vkuhi15TWHiQm4uE9AGPYxi8
Thank you! Taifun

Download TaifunWiFi extension (aix file)
Download WiFi Test (aia file)
Download Available SSIDs Test (aia file)
Back to top of page ...


This work by Pura Vida Apps is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License
with attribution (name=Pura Vida Apps and link to the source site) required.