两个应用程序使用 sharedUserID - createPackageContext 问题
Two Application's using sharedUserID - createPackageContext issue
我有两个独立的应用程序。我希望 appB 能够访问 appA 代码中的数据库。我不想在这种情况下使用内容提供商。
我已阅读关于此的 post 并按照说明进行操作
(Share SQLite database between 2 android apps?).
我做了什么:
AppA 的 Android 清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.micode.primaryapplication">
<application
android:sharedUserId="com.micode.sharedid"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
AppB 的 Android 清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.micode.secondaryapplication">
<application
android:sharedUserId="com.micode.sharedid"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
AppA创建数据库,AppB需要访问数据库。
AppB中使用了以下代码:
package com.micode.secondaryapplication;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
Button btnExit;
TextView txtViewDisplay;
Context sharedContext;
SQLiteDatabase db = null;
private static String DBNAME = "Contacts.db";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setupContext();
}
private void setupContext()
{
try {
sharedContext = this.createPackageContext("com.micode.primaryapplication", Context.CONTEXT_INCLUDE_CODE);
if (sharedContext == null) {
return;
}
} catch (Exception e) {
String error = e.getMessage();
System.out.println(error);
return;
}
}
我已经尝试使用完全相同的签名密钥构建这两个应用程序,即 Build/Generate 签名 APK 并在安装之前卸载了任何以前的实例。
我也在尝试 运行 在调试模式下进行此操作,即在调试模式下安装 AppA,然后在调试模式下安装 AppB。
在后一种情况下,我看到以下错误:
从 com.micode.primaryapplication(uid 10226)请求代码成为 运行 进程 com.micode.secondaryapplication(uid 10227)
执行以下行时出现此错误。
this.createPackageContext("com.micode.primaryapplication", Context.CONTEXT_INCLUDE_CODE);
这让我相信问题出在安装上,即在我看来,shareduserid 已被忽略,因此这两个应用程序没有共享相同的 UID,而是具有唯一的 UID。
明确地说,我只有两个应用程序在使用这些共享用户 ID。
非常感谢任何帮助...
首先,我真的不推荐这种技术。 sharedUserId
主要用于预装应用程序。特别是,一旦您发布了一个应用程序,您将永远无法更改 sharedUserId
(包括定义一个您之前没有的应用程序)。如果您更改 sharedUserId
,并且用户从旧的 sharedUserId
升级到新的,您的应用程序将无法再访问您应用程序自己的文件,因为它们归旧的 sharedUserId
所有.
也就是说,android:sharedUserId
is an attribute on <manifest>
,而不是 <application>
。
我有两个独立的应用程序。我希望 appB 能够访问 appA 代码中的数据库。我不想在这种情况下使用内容提供商。
我已阅读关于此的 post 并按照说明进行操作 (Share SQLite database between 2 android apps?).
我做了什么:
AppA 的 Android 清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.micode.primaryapplication">
<application
android:sharedUserId="com.micode.sharedid"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
AppB 的 Android 清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.micode.secondaryapplication">
<application
android:sharedUserId="com.micode.sharedid"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
AppA创建数据库,AppB需要访问数据库。
AppB中使用了以下代码:
package com.micode.secondaryapplication;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
Button btnExit;
TextView txtViewDisplay;
Context sharedContext;
SQLiteDatabase db = null;
private static String DBNAME = "Contacts.db";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setupContext();
}
private void setupContext()
{
try {
sharedContext = this.createPackageContext("com.micode.primaryapplication", Context.CONTEXT_INCLUDE_CODE);
if (sharedContext == null) {
return;
}
} catch (Exception e) {
String error = e.getMessage();
System.out.println(error);
return;
}
}
我已经尝试使用完全相同的签名密钥构建这两个应用程序,即 Build/Generate 签名 APK 并在安装之前卸载了任何以前的实例。
我也在尝试 运行 在调试模式下进行此操作,即在调试模式下安装 AppA,然后在调试模式下安装 AppB。
在后一种情况下,我看到以下错误:
从 com.micode.primaryapplication(uid 10226)请求代码成为 运行 进程 com.micode.secondaryapplication(uid 10227)
执行以下行时出现此错误。
this.createPackageContext("com.micode.primaryapplication", Context.CONTEXT_INCLUDE_CODE);
这让我相信问题出在安装上,即在我看来,shareduserid 已被忽略,因此这两个应用程序没有共享相同的 UID,而是具有唯一的 UID。
明确地说,我只有两个应用程序在使用这些共享用户 ID。
非常感谢任何帮助...
首先,我真的不推荐这种技术。 sharedUserId
主要用于预装应用程序。特别是,一旦您发布了一个应用程序,您将永远无法更改 sharedUserId
(包括定义一个您之前没有的应用程序)。如果您更改 sharedUserId
,并且用户从旧的 sharedUserId
升级到新的,您的应用程序将无法再访问您应用程序自己的文件,因为它们归旧的 sharedUserId
所有.
也就是说,android:sharedUserId
is an attribute on <manifest>
,而不是 <application>
。