1.
android update project -p path -n name -t target 。
2.
local.properties
# This file is automatically generated by Android Tools. # Do not modify this file -- YOUR CHANGES WILL BE ERASED! # # This file must *NOT* be checked into Version Control Systems, # as it contains information specific to your local configuration. # location of the SDK. This is only used by Ant # For customization when using a Version Control System, please read the # header note. sdk.dir=D:\\software\\sdk //sdk的路径
3.
proguard-project.txt
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-21 //sdk的版本
4.
ant.properties
application.package=包名 ant.project.name=项目的名字 java.encoding=utf-8 key.store=keystore的路径 key.store.password=xxxx key.alias=xxxxx key.alias.password= xxxx app_version=1.0.0 market_channels=yingyongbao,wandoujia,360
5. build.xml
<import file="${sdk.dir}/tools/ant/build.xml" />
<property name="out.unaligned.dir" value="打包后的保存路径_${app_version}/" />
<mkdir dir="${out.unaligned.dir}" />
<target name="modify_update_file">
<echo>*********************** make channel ${channel}</echo>
<replaceregexp file="AndroidManifest.xml"
match='channel'
replace='${channel}'
byline="false"
encoding="utf-8"
/>
<property name="out.unaligned.file" location="${out.unaligned.dir}/app的名称_${app_version}_${channel}_android.apk"/>
</target>
<target name="make_one_channels" depends="savemanifest,modify_update_file,release,replacemanifest,deletebin" description="description">
</target>
<target name="replacemanifest">
<echo>*********************** replacemanifest</echo>
<delete file="${basedir}\AndroidManifest.xml"/>
<copy file="..\temp\build\META-INF\AndroidManifest.xml" todir="${basedir}" encoding="utf-8"/>
</target>
<target name="savemanifest">
<echo>*********************** savemanifest</echo>
<copy file="${basedir}\AndroidManifest.xml" todir="..\temp\build\META-INF" encoding="utf-8" />
</target>
<target name="deletebin">
<delete dir="${basedir}\bin" />
</target>
<taskdef name="foreach" classname="net.sf.antcontrib.logic.ForEach" classpath="D:\software\apache-ant-1.9.7\lib\ant-contrib-1.0b3.jar" />
<target name="make_channels">
<foreach target="make_one_channels" list="${market_channels}" delimiter="," param="channel">
</foreach>
</target>
6. ant make_channels
sdk\tools\ant 下修改build.xml的
<property name="java.target" value="1.5" />
<property name="java.source" value="1.5" />
本文详细介绍了Android项目中用于打包的几个关键文件的配置方法,包括local.properties、proguard-project.txt、ant.properties及build.xml等文件的具体配置项,如SDK路径、目标版本设定、签名配置等。
1万+

被折叠的 条评论
为什么被折叠?



