Skip to content

Instantly share code, notes, and snippets.

@iamswapnilsonar
Last active July 30, 2019 10:31
Show Gist options
  • Save iamswapnilsonar/ce4295496988820573f5 to your computer and use it in GitHub Desktop.
Save iamswapnilsonar/ce4295496988820573f5 to your computer and use it in GitHub Desktop.
package in.google.android.sample;
import android.content.pm.ApplicationInfo;
import android.graphics.drawable.Drawable;
/**
* @author Swapnil Sonar
* @Date 01/07/2015
*/
public class PackageInfoBean {
public CharSequence mAppName = "";
public String mAppPackageName = "";
public String mVersionName = "";
public int mVersionCode = 0;
public Drawable icon;
public String mDataDir = "";
public long cacheSize = 0;
public ApplicationInfo mApplicationInfo;
public String mApkFilePath = "";
public long mApkFileSize = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment