在我的android项目中,我有一个带默认包名的默认风格,例如:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.my.default"
android:installLocation="auto">
在我的build.gradle
中,我添加了另一种包含不同名称的风味:
productFlavors {
another {
applicationId 'com.my.another' // This could override the package name defines in the `AndroidManifest.xml`
}
}
将APK安装到我的设备后,我想附加ndk-gdb
,我就会遇到这样的问题:
com.my.default
,一切都很好。com.my.another
,则ndk-gdb
会失败,因为它正在查找com.my.default
中定义的AndroidManifest.xml
。AndroidManifest.xml
中的包名称手动更改为com.my.another
,则ndk-gdb
可以正常工作。我的问题:有没有办法在不改变ndk-debug
的情况下使用AndroidManifest.xml
调试风格制作的APK?
答案 0 :(得分:0)
Android在最新的ndk-r10e https://code.google.com/p/android/issues/detail?id=56189
中解决了这个问题