OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <project name="Adblock Plus Library" default="help"> | 2 <project name="AdblockWebView App" default="help"> |
3 | 3 |
4 <!-- The local.properties file is created and updated by the 'android' tool. | 4 <!-- The local.properties file is created and updated by the 'android' tool. |
5 It contains the path to the SDK. It should *NOT* be checked into | 5 It contains the path to the SDK. It should *NOT* be checked into |
6 Version Control Systems. --> | 6 Version Control Systems. --> |
7 <property file="local.properties" /> | 7 <property file="local.properties" /> |
8 | 8 |
9 <!-- The ant.properties file can be created by you. It is only edited by the | 9 <!-- The ant.properties file can be created by you. It is only edited by the |
10 'android' tool to add properties to it. | 10 'android' tool to add properties to it. |
11 This is the place to change some Ant specific build properties. | 11 This is the place to change some Ant specific build properties. |
12 Here are some properties you may want to change/update: | 12 Here are some properties you may want to change/update: |
(...skipping 19 matching lines...) Expand all Loading... |
32 tool, as well as ADT. | 32 tool, as well as ADT. |
33 | 33 |
34 This contains project specific properties such as project target, and l
ibrary | 34 This contains project specific properties such as project target, and l
ibrary |
35 dependencies. Lower level build properties are stored in ant.properties | 35 dependencies. Lower level build properties are stored in ant.properties |
36 (or in .classpath for Eclipse projects). | 36 (or in .classpath for Eclipse projects). |
37 | 37 |
38 This file is an integral part of the build system for your | 38 This file is an integral part of the build system for your |
39 application and should be checked into Version Control Systems. --> | 39 application and should be checked into Version Control Systems. --> |
40 <loadproperties srcFile="project.properties" /> | 40 <loadproperties srcFile="project.properties" /> |
41 | 41 |
42 <target name="jni" description="Compiles and builds NDK libraries."> | 42 <fail |
43 <exec executable="${ndk.dir}/ndk-build" failonerror="true" /> | 43 message="sdk.dir is missing. Make sure to generate specify it in local.p
roperties or to inject it through an env var" |
44 </target> | 44 unless="sdk.dir" |
| 45 /> |
45 | 46 |
46 <target name="-pre-build" depends="jni"> | 47 <target name="-check-env"> |
| 48 <checkenv /> |
47 </target> | 49 </target> |
48 | 50 |
49 <target name="-pre-clean"> | 51 <target name="-pre-clean"> |
50 <delete dir="${native.libs.absolute.dir}/armeabi" verbose="${verbose}" /
> | |
51 <delete dir="${native.libs.absolute.dir}/armeabi-v7a" verbose="${verbose
}" /> | |
52 <delete dir="${native.libs.absolute.dir}/x86" verbose="${verbose}" /> | |
53 <delete dir="obj/" verbose="${verbose}" /> | 52 <delete dir="obj/" verbose="${verbose}" /> |
54 </target> | 53 </target> |
55 | 54 |
56 <!-- Import the actual build file. | 55 <!-- Import the actual build file. |
57 | 56 |
58 To customize existing targets, there are two options: | 57 To customize existing targets, there are two options: |
59 - Customize only one target: | 58 - Customize only one target: |
60 - copy/paste the target into this file, *before* the | 59 - copy/paste the target into this file, *before* the |
61 <import> task. | 60 <import> task. |
62 - customize it to your needs. | 61 - customize it to your needs. |
63 - Customize the whole content of build.xml | 62 - Customize the whole content of build.xml |
64 - copy/paste the content of the rules files (minus the top node) | 63 - copy/paste the content of the rules files (minus the top node) |
65 into this file, replacing the <import> task. | 64 into this file, replacing the <import> task. |
66 - customize to your needs. | 65 - customize to your needs. |
67 | 66 |
68 *********************** | 67 *********************** |
69 ****** IMPORTANT ****** | 68 ****** IMPORTANT ****** |
70 *********************** | 69 *********************** |
71 In all cases you must update the value of version-tag below to read 'cu
stom' instead of an integer, | 70 In all cases you must update the value of version-tag below to read 'cu
stom' instead of an integer, |
72 in order to avoid having your file be overridden by tools such as "andr
oid update project" | 71 in order to avoid having your file be overridden by tools such as "andr
oid update project" |
73 --> | 72 --> |
74 <!-- version-tag: custom --> | 73 <!-- version-tag: custom --> |
75 <import file="${sdk.dir}/tools/ant/build.xml" /> | 74 <import file="${sdk.dir}/tools/ant/build.xml" /> |
76 | 75 |
77 </project> | 76 </project> |
OLD | NEW |