<feed xmlns='http://www.w3.org/2005/Atom'>
<title>platform_sdk/find_java, branch pie-dr1-release</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/'/>
<entry>
<title>Fix eols of some line from LF to CRLF</title>
<updated>2018-02-23T01:02:18+00:00</updated>
<author>
<name>Inseob Kim</name>
<email>inseob@google.com</email>
</author>
<published>2018-02-22T06:12:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=ff3c39e8a6204096cf4e532b50bfc9bc6c290e3b'/>
<id>ff3c39e8a6204096cf4e532b50bfc9bc6c290e3b</id>
<content type='text'>
Test: trivial whitespace change
Change-Id: Ib72f2cab7087aaae10f7f076599873ab355a33f0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Test: trivial whitespace change
Change-Id: Ib72f2cab7087aaae10f7f076599873ab355a33f0
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove obsolete Android.mk files</title>
<updated>2015-08-28T22:43:42+00:00</updated>
<author>
<name>Dan Willemsen</name>
<email>dwillemsen@google.com</email>
</author>
<published>2015-08-19T00:03:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=3f15c614fcf6abdd487ab60d167d01fbe9240f1f'/>
<id>3f15c614fcf6abdd487ab60d167d01fbe9240f1f</id>
<content type='text'>
These tools no longer build under the platform build, remove the
Android.mk files.

Bug: 23566667
Change-Id: I433b33d0dc1944e3d6345ddd3265bc0b975327be
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These tools no longer build under the platform build, remove the
Android.mk files.

Bug: 23566667
Change-Id: I433b33d0dc1944e3d6345ddd3265bc0b975327be
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Add targetPlatform for executable binaries"</title>
<updated>2015-02-12T21:14:37+00:00</updated>
<author>
<name>Xavier Ducrohet</name>
<email>xav@google.com</email>
</author>
<published>2015-02-12T21:14:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=4cab9f439720ff9fd914f8bfcbf6b72b04a50d6b'/>
<id>4cab9f439720ff9fd914f8bfcbf6b72b04a50d6b</id>
<content type='text'>
This reverts commit 7f3cb91779907c12d02e8e5c5f4a6a7c510d210e.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 7f3cb91779907c12d02e8e5c5f4a6a7c510d210e.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add targetPlatform for executable binaries</title>
<updated>2015-02-10T19:38:49+00:00</updated>
<author>
<name>Raymond Chiu</name>
<email>chiur@google.com</email>
</author>
<published>2015-02-06T21:49:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=7f3cb91779907c12d02e8e5c5f4a6a7c510d210e'/>
<id>7f3cb91779907c12d02e8e5c5f4a6a7c510d210e</id>
<content type='text'>
Make dsl changes due to gradle update.

Change-Id: I65729783f5c8f985ed31a231e7dd9a0b9e50f7b3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make dsl changes due to gradle update.

Change-Id: I65729783f5c8f985ed31a231e7dd9a0b9e50f7b3
</pre>
</div>
</content>
</entry>
<entry>
<title>find_java.bat now uses env var instead of find</title>
<updated>2014-12-15T23:05:52+00:00</updated>
<author>
<name>David Herman</name>
<email>davidherman@google.com</email>
</author>
<published>2014-12-10T17:49:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=f8796b4dce9202306dcd49afbdc9272f26845329'/>
<id>f8796b4dce9202306dcd49afbdc9272f26845329</id>
<content type='text'>
The officially recommended way to query an OS for its 32-bit/64-bit
architecture can be found in this KB article:
http://support.microsoft.com/kb/556009

Unfortunately, this fails for some subset of users for at least two
reasons:

1) Many users install Unix tools on their Windows box, overwriting
   "find" with the Unix variant that doesn't support the \i parameter
2) Some machines are simply missing reg.exe. I've seen one claim in
   the wild that this was due to an agressive anti-virus scanner
   removing malware from their machine.

Therefore, we now use absolute paths to the utilities we want to
target. Additionally, we now have fallback handling if reg.exe is
missing, where we, instead, rely on the %PROCESSOR_ARCHITECTURE%
environment variable.

Related issues:
  https://code.google.com/p/android/issues/detail?id=82099
  https://code.google.com/p/android/issues/detail?id=82388

Change-Id: Icee0882fa6e1f5359c086498eb2679197cdf6f8e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The officially recommended way to query an OS for its 32-bit/64-bit
architecture can be found in this KB article:
http://support.microsoft.com/kb/556009

Unfortunately, this fails for some subset of users for at least two
reasons:

1) Many users install Unix tools on their Windows box, overwriting
   "find" with the Unix variant that doesn't support the \i parameter
2) Some machines are simply missing reg.exe. I've seen one claim in
   the wild that this was due to an agressive anti-virus scanner
   removing malware from their machine.

Therefore, we now use absolute paths to the utilities we want to
target. Additionally, we now have fallback handling if reg.exe is
missing, where we, instead, rely on the %PROCESSOR_ARCHITECTURE%
environment variable.

Related issues:
  https://code.google.com/p/android/issues/detail?id=82099
  https://code.google.com/p/android/issues/detail?id=82388

Change-Id: Icee0882fa6e1f5359c086498eb2679197cdf6f8e
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed find_java syntax error on 32-bit machines</title>
<updated>2014-12-10T00:32:23+00:00</updated>
<author>
<name>David Herman</name>
<email>davidherman@google.com</email>
</author>
<published>2014-12-10T00:32:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=6c1c55e0da303b2fca8c230e0959275d31cf66e2'/>
<id>6c1c55e0da303b2fca8c230e0959275d31cf66e2</id>
<content type='text'>
Related issue:
  https://code.google.com/p/android/issues/detail?id=82099

Change-Id: I8241eb58d45ceca4b5ada4f5550f79376c716ed6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related issue:
  https://code.google.com/p/android/issues/detail?id=82099

Change-Id: I8241eb58d45ceca4b5ada4f5550f79376c716ed6
</pre>
</div>
</content>
</entry>
<entry>
<title>find_java now locates openjdk as well</title>
<updated>2014-11-25T00:07:14+00:00</updated>
<author>
<name>David Herman</name>
<email>davidherman@google.com</email>
</author>
<published>2014-11-25T00:07:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=f7dd3d94c134d29ad37299bdb865b0a48430dfb3'/>
<id>f7dd3d94c134d29ad37299bdb865b0a48430dfb3</id>
<content type='text'>
Related issue:
  https://code.google.com/p/android/issues/detail?id=77218

Change-Id: I08523830c813d9cdcd303780f15f49bd5edc5ac3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related issue:
  https://code.google.com/p/android/issues/detail?id=77218

Change-Id: I08523830c813d9cdcd303780f15f49bd5edc5ac3
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed find_java JAVA_HOME minimum version bug</title>
<updated>2014-11-24T19:23:36+00:00</updated>
<author>
<name>David Herman</name>
<email>davidherman@google.com</email>
</author>
<published>2014-11-24T19:20:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=633339d82e0da9cafa9b2ccea46b9375ad64d668'/>
<id>633339d82e0da9cafa9b2ccea46b9375ad64d668</id>
<content type='text'>
If a minimum version is specified, Find Java should reject any
java whose version is not at least that high. However, faulty
logic ignored this contract when reading an old Java path out of
the JAVA_HOME environment variable.

Related to issue:
  https://code.google.com/p/android/issues/detail?id=80419

Change-Id: Iad935694e5b143f53074d28b8c8d7f087f9690e4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a minimum version is specified, Find Java should reject any
java whose version is not at least that high. However, faulty
logic ignored this contract when reading an old Java path out of
the JAVA_HOME environment variable.

Related to issue:
  https://code.google.com/p/android/issues/detail?id=80419

Change-Id: Iad935694e5b143f53074d28b8c8d7f087f9690e4
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Build and package 32/64bit find_java." into studio-1.0-dev</title>
<updated>2014-11-14T00:15:34+00:00</updated>
<author>
<name>Xavier Ducrohet</name>
<email>xav@google.com</email>
</author>
<published>2014-11-14T00:15:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=7e91a740cb092a020c1bb6e99982e162741ffd61'/>
<id>7e91a740cb092a020c1bb6e99982e162741ffd61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Modifed find_java.bat and build settings</title>
<updated>2014-11-14T00:12:48+00:00</updated>
<author>
<name>David Herman</name>
<email>davidherman@google.com</email>
</author>
<published>2014-10-23T17:32:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_sdk/commit/?id=b5298b16a14cc23b3072401bde45e9bf8720f00f'/>
<id>b5298b16a14cc23b3072401bde45e9bf8720f00f</id>
<content type='text'>
Find Java now statically links in all MFC / Windows dependencies,
as well as it builds to find_java32.exe and find_java64.exe.
find_java.bat has been updated to take advantage of these new
names.

Change-Id: Iaa50d461074235dd9db750201d6e033058a2e695
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Find Java now statically links in all MFC / Windows dependencies,
as well as it builds to find_java32.exe and find_java64.exe.
find_java.bat has been updated to take advantage of these new
names.

Change-Id: Iaa50d461074235dd9db750201d6e033058a2e695
</pre>
</div>
</content>
</entry>
</feed>
