应用程序安装顺序?

app installation order?

首先我已经阅读了这个标题的所有问题,但没有一个对我有帮助:-(

我必须使用我的客户端应用程序连接到基础应用程序并使用权限。如果我先安装客户端应用程序,然后再安装基本应用程序,我会遇到异常。我该如何解决这个问题?如果我删除我的客户端应用程序并重新安装它,问题就解决了,但我如何告诉我的客户,如果基本应用程序尚未安装,我如何阻止他们安装客户端应用程序?

在 Mypackage.IssueFirstLookActivity.onCreate(IssueFirstLookActivity.java:443) 是: mHelper.startSetup(new OnIabSetupFinishedListener()

在 Mypackage.IabHelper.startSetup(IabHelper.java:269) 是 (mContext.bindService(serviceIntent, mServiceConn, Context.BIND_AUTO_CREATE);)

List<ResolveInfo> queryIntentServices = mContext.getPackageManager().queryIntentServices(serviceIntent, 0);
    if (queryIntentServices != null && !queryIntentServices.isEmpty()) {
        // service available to handle that Intent
        mContext.bindService(serviceIntent, mServiceConn, Context.BIND_AUTO_CREATE);
    }

mHelper = new IabHelper(this,mBase64EncodedPublicKey);

    if(myContext.getState() == MyContext.LOGIN_HAS_NOT_PURCHASED_STATE ){
        //      if(1==1){
        mHelper.startSetup(new OnIabSetupFinishedListener() {

            @Override
            public void onIabSetupFinished(IabResult result) {

                // if we were disposed of in the meantime, quit.
                if (mHelper == null) return;

                if (!result.isSuccess()) {
                    // Oh noes, there was a problem.
                    Log.d(TAG, "Problem setting up In-app Billing: " + result);

                    Toast.makeText(IssueFirstLookActivity.this, "Error " + result.toString() ,Toast.LENGTH_LONG).show();

                    // TODO user has not bazaar
                }else{
                    // Hooray, IAB is fully set up!
                    // TODO my new thing
                    //mHelper.queryInventoryAsync(mGotInventoryListener);


                }
            }
        });

堆栈跟踪:

04-10 10:44:42.170: E/AndroidRuntime(2316): FATAL EXCEPTION: main
04-10 10:44:42.170: E/AndroidRuntime(2316): java.lang.RuntimeException: Unable to start activity ComponentInfo{Mypackage.IssueFirstLookActivity}: java.lang.SecurityException: Not allowed to bind to service 
Intent { act="Base app permission" pkg=base app package }
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2211)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ActivityThread.access0(ActivityThread.java:141)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.os.Handler.dispatchMessage(Handler.java:99)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.os.Looper.loop(Looper.java:137)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ActivityThread.main(ActivityThread.java:5103)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at java.lang.reflect.Method.invokeNative(Native Method)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at java.lang.reflect.Method.invoke(Method.java:525)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at dalvik.system.NativeStart.main(Native Method)
04-10 10:44:42.170: E/AndroidRuntime(2316): Caused by: java.lang.SecurityException: Not allowed to bind to service Intent { act="Base app permission" pkg=base app package }
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ContextImpl.bindServiceAsUser(ContextImpl.java:1478)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ContextImpl.bindService(ContextImpl.java:1448)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.content.ContextWrapper.bindService(ContextWrapper.java:496)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at Mypackage.IabHelper.startSetup(IabHelper.java:269)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at Mypackage.IssueFirstLookActivity.onCreate(IssueFirstLookActivity.java:443)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.Activity.performCreate(Activity.java:5133)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
04-10 10:44:42.170: E/AndroidRuntime(2316):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2175)
04-10 10:44:42.170: E/AndroidRuntime(2316):     ... 11 more

如果我正确解释了您编辑的 Intent,它至少包含了包,这意味着 Android 5.0 "can't bind to an implicit Intent" 问题应该无关紧要。 OTOH,如果您缺少权限,我曾期待更多关于权限的信息。

如果客户端应用程序和基础应用程序都是您的,particularly on Android 5.0+,您可以将 <permission> 元素放在两个应用程序中,应该没问题。 Xaver Kapeller 在评论中指出的安全漏洞是因为,在 Android 5.0 之前,any 应用程序可以尝试重新定义您的自定义权限。但是,如果客户端应用程序和基础应用程序来自不同的作者,或者具有不同的签名密钥,则它们不能同时尝试声明 <permission>.

but how can I tell this to my customers,

假设您不能让两个应用都声明 <permission>...

选项 #1:首先不要有多个应用程序尝试以这种方式连接。

选项 #2:在产品列表中非常非常仔细地解释(例如,Play 商店)。

选项 #3:当您的客户端应用程序运行时(通过 PackageManager)查找您的基础应用程序,并向用户解释客户端应用程序实际上是基础应用程序的插件,因此基础应用程序需要首先安装。

how can I prevent them from installing client app if the base app has not installed?

只有一开始就没有两个应用程序。