gpt4 book ai didi

android - "adbd cannot run as root in production builds"即使选择了 'debug' 构建变体?

转载 作者:太空狗 更新时间:2023-10-29 16:10:40 25 4
gpt4 key购买 nike

我正在尝试将 Android 模拟器指向本地 VM,为此我需要 adb root。但是,我收到此错误:

$ adb root
adbd cannot run as root in production builds

然而,我正在运行的 p2p-app 构建变体是 debug:

enter image description here

p2p-app 模块的 build.gradle 包括以下内容:

android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
debuggable false
signingConfig signingConfigs.release
}

debug {
testCoverageEnabled = true
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
debuggable true
versionNameSuffix '-' + gitBranchName()
applicationIdSuffix '.fifa'
ext.betaDistributionReleaseNotesFilePath = "fabric-changelog.txt"
ext.betaDistributionGroupAliases = "android-engineers"

}
}
}

由于 debug 变体具有 debuggable true,我希望它可以获得对模拟器的 root 访问权限?

最佳答案

ADB root is not working on emulator 之后,我设法通过从 Google APIs 系统镜像创建模拟器来克服这个限制,而不是 Google Play(见下面的屏幕截图)。

enter image description here

有了这个模拟器,我能够adb root:

$ adb root
restarting adbd as root

关于android - "adbd cannot run as root in production builds"即使选择了 'debug' 构建变体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53674704/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com