Skip to content

Commit

Permalink
new version 1.6
Browse files Browse the repository at this point in the history
documentation for showWifiListener method
  • Loading branch information
jflavio11 committed Aug 18, 2017
1 parent 1181aa9 commit 495bcd8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wificonnector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
defaultConfig {
minSdkVersion rootProject.ext.minSdk
targetSdkVersion rootProject.ext.targetSdk
versionCode 14
versionName "1.4"
versionCode 16
versionName "1.6"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,12 @@ private void createShowWifiListBroadcastListener() {
}
}

/**
* Tries to scan available wifi networks. After {@link ShowWifiListReceiver} gets results (or not), it automatically unregister the
* current broadcast listener so is not necessary to explicitly call {@link #unregisterShowWifiListListener()}.
*
* @param showWifiListener interface that will give the results
*/
public void showWifiList(ShowWifiListener showWifiListener) {
this.showWifiListListener = showWifiListener;
wifiLog("show wifi list");
Expand Down

0 comments on commit 495bcd8

Please sign in to comment.