studio 打包问题

来源:互联网 发布:如何用艾瑞查数据 编辑:程序博客网 时间:2024/05/23 15:33

在app的AndroidManifest.xml中做如下修改:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    package="com.leo.kang.demo"    android:versionCode="1"    android:versionName="1.0">    <uses-sdk        android:minSdkVersion="8"        android:targetSdkVersion="18" />    <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme"        tools:replace="android:icon, android:theme">

 

注意两个地方:

1. 在manifest节点加上:xmlns:tools="http://schemas.android.com/tools"

2. 在application 节点加上:tools:replace="android:icon, android:theme"

 

Reference

http://tools.android.com/tech-docs/new-build-system/user-guide/manifest-merger

0 0
原创粉丝点击