blob: 7a7df55ff28f25931284ac3028722828e5fe172b [file] [log] [blame]
Xavier Ducrohetc688b4e2010-01-25 18:19:11 -08001Change log for Android SDK Tools.
2
Tor Norbyefaab5912011-12-03 13:41:39 -08003Revision 17:
Tor Norbye310538c2012-01-13 08:56:18 -08004* Bug fixes.
5* ProGuard updated to version 4.7. In addition to many new features,
6 this will fix the "Conversion to Dalvik format failed with error 1"
7 error some users have experienced.
8* The default proguard.cfg file has been updated with better
9 flags.
10* Lint now checks Java code, and checks which previously performed
11 pattern based searches in the Java code (such as the unused resource
12 check) have been rewritten to use the more accurate Java parse
13 trees.
14* Lint supports library projects, so for example the unused resource
15 check will properly handle resources declared in a library project
16 and referenced in a downstream project.
Tor Norbye5ae5ceb2012-02-15 12:39:14 -080017* Lint warnings can be suppressed in Java code with the new
18 @SuppressLint annotation, and in XML files with the new tools:
19 namespace and ignore-attribute.
Tor Norbye310538c2012-01-13 08:56:18 -080020* New lint checks:
Tor Norbye5ae5ceb2012-02-15 12:39:14 -080021 * Find Android API calls that require a version of Android higher
22 than the minimum supported version. You can use the new @TargetApi
23 annotation to specify local overrides for conditionally loaded
24 code.
25 * Find object allocations within onDraw, onMeasure and onLayout
26 calls
27 * Find usages of HashMap<Integer,X> which can be replaced by the
28 more efficient SparseArray, SparseIntArray or SparseBooleanArray
29 * Find typos in XML namespace declarations, as well as unused custom
30 namespace declarations and usages of custom namespaces in library
31 projects which do not yet work
32 * Find manifest files which declare more than one <uses-sdk>
33 elements, or which fail to declare minSdkVersion or
34 targetSdkVersion
35 * Check dialog button order such that OK/Cancel are in the right
36 order (depending on the target version of Android), that they are
37 using the standard case ("OK", not "Ok" or "ok" etc), and that
38 there aren't any Back buttons.
39 * Check menus to ensure that they are using "ifRoom" instead of
40 "always" for the showAsAction attribute (unless it's used
41 sparingly)
Tor Norbye310538c2012-01-13 08:56:18 -080042 * Find hardcoded android:debuggable attributes on <application>
43 elements. This can lead to accidentally leaving debug information
44 in published applications.
45 * Find errors in format strings. This includes inconsistencies
46 between translated versions, as well as incompatible types
47 declared in XML and supplied in the String.format call in Java.
48 * Find incorrect casts in Java code where the cast is incompatible
49 with the view type declared in XML layouts.
50 * Find hardcoded references to "/sdcard" in Java code; these should
51 be using Environment.getExternalStorageDirectory().getPath()
52 instead
53 * Find "import android.R" statements in Java code, which can lead to
54 confusing compilation error messages
55 * Find Java code which creates world-writeable files (which can lead
56 to security problems)
57 * Find references to private resources (which can lead to runtime
58 errors on devices that do not provide the resource, since private
59 resources may disappear any time, and may not be present on all
60 platforms.)
61 * Find invalid @id references (where for example a RelativeLayout
62 references an id that does not exist anywhere). If no match is
63 found, it looks for spelling mistakes and suggests other similar
64 ids in the error message.
65 * Finds method calls to java.lang.Math where a float variable is
66 cast to a double and/or the return value is cast to a float, and
67 suggests replacing it with the equivalent android.util.FloatMath
68 method.
69 * Finds calls to a getter on the same class where a field could be
70 accessed instead.
71 * Find XML files using a different encoding format than UTF-8, since
72 this can lead to subtle bugs (and lint was fixed to properly use
73 the specified encoding)
74 * Find XML resource files that contain text which should not be
75 there (such as in layouts). This can identify accidentally
76 malformed documents which happen to be valid XML, such as a
77 missing "<" tag opening character.
78 * Find style references which lead to cycles, such as extending
79 self.
Tor Norbyefaab5912011-12-03 13:41:39 -080080
Tor Norbyea79073e2011-10-20 18:33:24 -070081Revision 16:
82* New "lint" tool which scans Android project trees for potential
83 problems such as missing translations, duplicate ids between layouts
84 that include each other, using px instead of dp units, hardcoded
85 strings, missing contentDescriptions, obsolete Proguard
86 configuration files, etc. For a full list of available issues run
87 "lint --show" (and see eclipse/changes.txt for further details).
88* layoutopt was removed; its functionality is replaced by the new lint
89 tool
90
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -080091Revision 14:
92
93- Build performance improvements:
94 * resource compilation and packaging now properly use dependency to only
95 be executed if a resource changed.
96 * Optimized resource compilation for projects with libraries. This should
97 speed up this phase significantly for large projects with libraries.
98 * PNG files that are optimized during resource packaging are now cached
99 and only re-optimized if they changed instead of doing at every build.
100- New library project mechanism:
101 *
102
103Revision 13:
104
105Revision 12: (07/2011):
106- The AVD manager and emulator can now use system images compiled for ARM v7 and
107 x86 CPUs.
108
109Revision 11 (05/2011):
Tor Norbye3dcfd762011-04-28 18:41:09 -0700110- See eclipse/changes.txt for ADT related changes.
111
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -0800112Revision 10 (02/2011):
Tor Norbye3301b682011-04-05 08:59:12 -0700113- The tools now automatically generate Java Programming Language
114 source files (in the gen directory) and bytecode (in the res/raw
115 directory) from your native .rs files
116
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -0800117Revision 9 (01/2011):
Xavier Ducrohet593453d2011-01-16 15:32:41 -0800118- Fix packaging issue that broke draw9patch
119- Ant build rules will now check the Ant version and fail if it's older than 1.8
120- Fix "folder locked" errors when installing packages in SDK Manager on Windows.
121- Support https proxy when installing from SDK Manager.
122- SDK Manager now suggests to install missing base platform for add-ons.
Xavier Ducrohet88dcd9a2010-11-15 14:14:55 -0800123- Default proguard config file changes:
124 * ignore classes extending android.preference.Preference
125 * ignore classes extending android.app.backup.BackupAgentHelper
Xavier Ducrohet81523952010-12-10 14:02:31 -0800126- Ant lib rules now allow for overriding java.encoding, java.source, and java.target
127- Default encoding for Ant javac is now UTF-8
Xavier Ducrohet5e9522e2011-01-06 18:02:13 -0800128- Logcat view in DDMS now properly displays UTF-8 characters.
Xavier Ducrohet81523952010-12-10 14:02:31 -0800129
Xavier Ducrohet88dcd9a2010-11-15 14:14:55 -0800130
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -0800131Revision 8 (12/2010):
Xavier Ducroheta89eaf92010-10-06 15:06:53 -0700132- New SDK component: platform-tools. This makes all platforms use the same
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700133 latest version of aapt/aidl/dx.
134- Support for true debug build. No need to change the value of debuggable in
135 the Android Manifest.
136 "ant debug" will automatically insert debuggable==true, while "ant release"
137 will not.
Xavier Ducroheta89eaf92010-10-06 15:06:53 -0700138 If debuggable=true is set, then "ant release" will actually do a debug build.
139- Automatic Proguard support in release builds. Only need to have a proguard.config
140 property in default.properties that points to a proguard config file.
Xavier Ducrohetddfe2792010-09-24 08:11:12 -0700141- new overridable Ant javac properties: java.encoding, java.source, and java.target
142 (default to "ascii", "1.5" and "1.5")
Xavier Ducrohetfb8fb872010-09-07 13:18:31 -0700143
144
Xavier Ducrohetbabf25c2011-02-14 15:52:12 -0800145Revision 7 (09/2010):
Xavier Ducrohet1ae6d592010-05-18 12:23:39 -0700146- Support for Ant rules provided by the Tools components (override the one in
147 the platform component)
Xavier Ducrohetc7e2ff42010-07-02 10:39:07 -0700148- Added support for libraries with library dependencies.
Xavier Ducrohet6fcb9742010-06-28 13:58:11 -0700149- Support for aidl files in library projects.
Xavier Ducrohet8de0ba72010-06-01 17:00:00 -0700150- Support for extension targets in Ant build to perform tasks between the
151 normal tasks: -pre-build, -pre-compile, -post-compile.
Xavier Ducrohet6fcb9742010-06-28 13:58:11 -0700152- Headless SDK update. See 'android -h update sdk' for more info.
Xavier Ducrohete3c65f32010-06-09 01:34:19 +0200153- Fixed location control in DDMS to work in any locale not using '.' as a
154 decimal point.
Xavier Ducrohet1ae6d592010-05-18 12:23:39 -0700155
Xavier Ducrohet8de0ba72010-06-01 17:00:00 -0700156
157Revision 6 (05/2010)
Xavier Ducroheteee4bf12010-03-17 11:47:43 -0700158- Support for library project to share code/resources among projects
159 - Updated Ant rules and custom tasks
160 - New "android create lib-project", "android update lib-project" actions.
161 - New parameter for "android update project"
Xavier Ducrohet1ae6d592010-05-18 12:23:39 -0700162
Xavier Ducroheteee4bf12010-03-17 11:47:43 -0700163
164Revision 5 (03/2010):
Xavier Ducrohetc688b4e2010-01-25 18:19:11 -0800165- AVD/SDK Manager:
Xavier Ducrohetf89bdfe2010-01-29 13:53:40 -0800166 - Fixed SSL download for the standalone version of the SDK Updater.
Xavier Ducrohetaac1ef52010-02-02 13:34:18 -0800167 - Fixed issue with 64bit JVM on windows.
Xavier Ducrohetc688b4e2010-01-25 18:19:11 -0800168 - Add support for samples components.
169 - improved support for dependency between components.
170 - AVDs now sorted by API level.
Xavier Ducrohetaac1ef52010-02-02 13:34:18 -0800171 - Prevent deletion of running AVDs.
172 - Settings are now automatically saved, no need to click Apply.
Xavier Ducrohetc688b4e2010-01-25 18:19:11 -0800173- Emulator now requires sd card to be 9MB and above.
174- Fixed layoutopt.bat to correctly execute on Windows.
175