I asked the developers of the local app market and they told me their differences with Google’s API:
First, the change that should be done in the manifest:
<uses-permission android:name=“com.farsitel.bazaar.permission.PAY_THROUGH_BAZAAR”></uses-permission>
Second, this:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bindService(new
Intent(“ir.cafebazaar.pardakht.InAppBillingService.BIND”),
mServiceConn, Context.BIND_AUTO_CREATE);
Since I can’t afford the Enterprise edition, my question is if I can
build for Google API and then do these changes afterwards. Apparently I
can alter the manifest, and my question is the second change that is
code which needs to be compiled and added to my APK. Is it possible to
do these to the already-compiled-for-Google-API APK?
Thanks!