Android Open Source - WiFiWar Config






From Project

Back to project page WiFiWar.

License

The source code is released under:

The source Code is set under the Creative Commons by Attribution-ShareAlike 3.0 (see http://creativecommons.org/licenses/by-sa/3.0/de/deed.en ) The Open Street Map Data underly the Open Data Commons ...

If you think the Android project WiFiWar listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 * /* w w w .j av  a2s.c o  m*/
 */
package main;

/**
 * @author arno
 *
 *  This class contains all config data for this application like number of samples, etc.
 */
public class Config {
  
  //Defines the amount of samples to be done per location
  public static int numberOfSamples = 50;
  //Defines the time to wait between two samples in ms
  //public static int scanDelay = 10;
  //Subdirectory of mem. for my Data
  public static final String myDirectory = "WiFiWar"; 

}




Java Source Code List

com.arno.wifiwar.MainActivity.java
com.arno.wifiwar.ScanActivity.java
main.Config.java
main.Logger.java