![JAR search and dependency download from the Maven repository](/logo.png)
com.github.cosysoft.device.model.AppInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of device-api Show documentation
Show all versions of device-api Show documentation
A set of tools for operate android device via android debug bridge
The newest version!
package com.github.cosysoft.device.model;
public class AppInfo {
private String packageURI;
private String basePackage;
private String mainActivity;
private String version;
public String getPackageURI() {
return packageURI;
}
public void setPackageURI(String packageURI) {
this.packageURI = packageURI;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getBasePackage() {
return basePackage;
}
public void setBasePackage(String basePackage) {
this.basePackage = basePackage;
}
public String getMainActivity() {
return mainActivity;
}
public void setMainActivity(String mainActivity) {
this.mainActivity = mainActivity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy