android – 如何为发布和调试版本提供不同的清单文件?

前端之家收集整理的这篇文章主要介绍了android – 如何为发布和调试版本提供不同的清单文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在 Android Studio中为我的APK的调试版和发行版提供不同的清单文件

通常我不需要这样的东西但是在调试模式下,我的应用程序在不同的用户ID和进程中运行,这在清单中定义.我附加了我的调试清单所具有的差异:

--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,5 +1,6 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.mridang.address"
+    android:sharedUserId="com.mridang.dashclock"
     android:versionCode="10"
     android:versionName="1.0" >

@@ -14,6 +15,7 @@
     <application
         android:allowBackup="true"
         android:icon="@drawable/ic_launcher"
+        android:process="com.mridang.dashclock"
         android:label="@string/application_name"
         android:theme="@android:style/Theme.Holo.Light.DarkActionBar" >

我正在失去理智,它隐藏了调试清单文件并在构建之前将其弹出,如果可能有两个单独的清单,那就太棒了.

解决方法

在src /下创建一个“debug”文件夹并将其放在那里: https://github.com/androidfu/Now-Playing/tree/master/app/src

我的“发布”清单是在src / main /中,但我很确定你是否需要两个完全独立的清单文件,你可以使用src / release /和src / debug /.

原文链接:https://www.f2er.com/android/317506.html

猜你在找的Android相关文章