我跟着this guide设置了一个包含多种构建类型的android项目。由于我在项目中支持GCM,因此在运行调试版本时遇到了麻烦。清单仅设置为生产构建的接收器:
<permission
android:name="com.myapp.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.myapp.permission.C2D_MESSAGE" />
问题是我编译调试时,我的ApplicationId是com.myapp.debug
。有没有办法参数化这个特定的清单部分?