I just launched the paid version of my app and now I need to make a free version of it.. this will only require some minor changes in my code.. but the package name needs to be different..
How do I do this?



private static Boolean _marketCheck = null;
public static boolean useMarketCheck(Activity c)
{
if (_marketCheck == null)
_marketCheck = c.getResources().getBoolean(R.bool.marketCheck);
return _marketCheck;
}<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="marketCheck">false</bool>
<bool name="ads">true</bool>
</resources>
Return to Other Coding-Problems
Users browsing this forum: NeilDouds and 7 guests