在Android studio中以调试模式更改app的UID

时间:2015-01-05 09:58:22

标签: android debugging android-studio uid

我想测试两个具有相同UID的应用之间的共享数据。如何更改android studio中的应用程序的UID,并为两个不同的应用程序设置相同的UID?

1 个答案:

答案 0 :(得分:1)

您需要使用sharedUserId,它将在两个不同的应用之间共享数据。

在清单中:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="string"
          android:sharedUserId="your_uid_in_string" // change here..
          android:sharedUserLabel="string resource" 
          android:versionCode="integer"

Manifest Elements for Android Developers