A simple App that integrates Wiman SDK
In order to use Wiman SDK you must create your Wiman project and get your SDK key here:
The related documentation is available here:
In SampleAppApplication
add your SDK key
WimanSDK.initialize(this, "YOUR WIMAN SDK KEY");
If you want to show Wiman Wi-Fi networks on google map, please add your Google API KEY in
AndroidManifest.xml
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR GOOGLE MAP KEY" />
Replace the applicationId within build.gradle
with the applicationId you have set during your
Wiman project creation
defaultConfig {
applicationId "YOUR APPLICATIONID"
}