Version 20 released!

This commit is contained in:
Ziver Koc 2014-08-13 14:23:47 +02:00
parent 56771a000e
commit 4ae0a588c4
3 changed files with 4 additions and 9 deletions

Binary file not shown.

View file

@ -8,8 +8,8 @@ android {
applicationId "com.ericsson.uecontrol"
minSdkVersion 15
targetSdkVersion 19
versionCode 20
versionName "1.0.20"
versionCode 21
versionName "1.0.21"
}
buildTypes {
release {

View file

@ -8,11 +8,6 @@ import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.os.Build;
import android.preference.PreferenceManager;
import android.telephony.CellInfo;
import android.telephony.CellInfoCdma;
import android.telephony.CellInfoGsm;
import android.telephony.CellInfoLte;
import android.telephony.CellInfoWcdma;
import android.telephony.NeighboringCellInfo;
import android.telephony.TelephonyManager;
import android.telephony.gsm.GsmCellLocation;
@ -171,7 +166,7 @@ public class CSVWriter {
}
return "n/a";
}
private static String getCellId(CellInfo cell){
/* private static String getCellId(CellInfo cell){
int cid = Integer.MAX_VALUE;
if(cell instanceof CellInfoGsm)
cid = ((CellInfoGsm) cell).getCellIdentity().getCid();
@ -186,7 +181,7 @@ public class CSVWriter {
return "n/a";
else
return ""+cid;
}
}*/
//******************* WIFI ********************************************
private static WifiInfo getWifiInfo(){