-
public class AndroidModel
Represents a specific Android device model based on the available device build information Created by dyoung on 8/28/14.
-
-
Constructor Summary
Constructors Constructor Description AndroidModel(String version, String buildNumber, String model, String manufacturer)
-
Method Summary
Modifier and Type Method Description static AndroidModel
forThisDevice()
String
getVersion()
void
setVersion(String mVersion)
String
getBuildNumber()
String
getModel()
String
getManufacturer()
void
setBuildNumber(String mBuildNumber)
void
setModel(String mModel)
void
setManufacturer(String mManufacturer)
int
matchScore(AndroidModel otherModel)
Calculates a qualitative match score between two different Android device models for the purposes of how likely they are to have similar Bluetooth signal level responses String
toString()
-
-
Method Detail
-
forThisDevice
static AndroidModel forThisDevice()
-
getVersion
String getVersion()
-
setVersion
void setVersion(String mVersion)
-
getBuildNumber
String getBuildNumber()
-
getManufacturer
String getManufacturer()
-
setBuildNumber
void setBuildNumber(String mBuildNumber)
-
setManufacturer
void setManufacturer(String mManufacturer)
-
matchScore
int matchScore(AndroidModel otherModel)
Calculates a qualitative match score between two different Android device models for the purposes of how likely they are to have similar Bluetooth signal level responses
-
-
-
-