Back to project page Chopping.
The source code is released under:
Apache License
If you think the Android project Chopping 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.chopping.application; //from www . j av a 2 s .co m /** * Common interface that represent an application. */ public interface IApp { /** * Package-name. Android application needs. * @return Package-name for Android applications. */ String getPackageName(); /** * Location of the application to download. * @return The url in string for the application. */ String getStoreUrl(); }