Back to project page home.
The source code is released under:
Apache License
If you think the Android project home listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.rajpriya.home.utils; // ww w .j a v a 2s . c om import android.graphics.drawable.Drawable; import android.util.Log; /** * Created by rajkumar on 3/29/14. */ public class PInfo { public String appname = ""; public String pname = ""; public String versionName = ""; public int versionCode = 0; public Drawable icon; public double size; public void prettyPrint() { Log.e("rajpriya", appname + "\t" + pname + "\t" + versionName + "\t" + versionCode); } }