<feed xmlns='http://www.w3.org/2005/Atom'>
<title>platform_packages_apps_LegacyCamera/tests, branch android11-d2-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_packages_apps_LegacyCamera/'/>
<entry>
<title>Convert LegacyCamera's Android.mk to Android.bp</title>
<updated>2019-12-18T18:39:31+00:00</updated>
<author>
<name>Jingwen Chen</name>
<email>jingwen@google.com</email>
</author>
<published>2019-12-14T00:52:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=1a6c4d568ea93aac8ac38939d2fd51c364860f61'/>
<id>1a6c4d568ea93aac8ac38939d2fd51c364860f61</id>
<content type='text'>
Test: m LegacyCamera &amp;&amp; atest LegacyCameraTests
Bug: 122333597
Change-Id: I5f33fd786a455e5eb3f79b5d46426a24b25fc8b9
Signed-off-by: Jingwen Chen &lt;jingwen@google.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Test: m LegacyCamera &amp;&amp; atest LegacyCameraTests
Bug: 122333597
Change-Id: I5f33fd786a455e5eb3f79b5d46426a24b25fc8b9
Signed-off-by: Jingwen Chen &lt;jingwen@google.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "packages/apps/LegacyCamera: Set LOCAL_SDK_VERSION where possible." am: 4e4414c875 am: daabea88b5</title>
<updated>2018-02-23T07:47:43+00:00</updated>
<author>
<name>hansson</name>
<email>hansson@google.com</email>
</author>
<published>2018-02-23T07:47:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=819fa02731407819729415eb76125af9065abc7a'/>
<id>819fa02731407819729415eb76125af9065abc7a</id>
<content type='text'>
am: 61a4b7d5b3

Change-Id: Ifc3051e634a58619dace0ddd83eb6d7ef70c0c31
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
am: 61a4b7d5b3

Change-Id: Ifc3051e634a58619dace0ddd83eb6d7ef70c0c31
</pre>
</div>
</content>
</entry>
<entry>
<title>packages/apps/LegacyCamera: Set LOCAL_SDK_VERSION where possible.</title>
<updated>2018-02-22T16:12:06+00:00</updated>
<author>
<name>Anton Hansson</name>
<email>hansson@google.com</email>
</author>
<published>2018-02-22T16:12:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=7d194af48aaea397b1606e1d99a8505fa00cf30c'/>
<id>7d194af48aaea397b1606e1d99a8505fa00cf30c</id>
<content type='text'>
This change sets LOCAL_SDK_VERSION for all packages where
this is possible without breaking the build, and
LOCAL_PRIVATE_PLATFORM_APIS := true otherwise.

Setting one of these two will be made required soon, and this
is a change in preparation for that. Not setting LOCAL_SDK_VERSION
makes the app implicitly depend on the bootclasspath, which is
often not required. This change effectively makes depending on
private apis opt-in rather than opt-out.

Test: make relevant packages
Bug: 73535841
Change-Id: Iae2dfaf0215d1ba21f8fa76748475c5d6842663f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change sets LOCAL_SDK_VERSION for all packages where
this is possible without breaking the build, and
LOCAL_PRIVATE_PLATFORM_APIS := true otherwise.

Setting one of these two will be made required soon, and this
is a change in preparation for that. Not setting LOCAL_SDK_VERSION
makes the app implicitly depend on the bootclasspath, which is
often not required. This change effectively makes depending on
private apis opt-in rather than opt-out.

Test: make relevant packages
Bug: 73535841
Change-Id: Iae2dfaf0215d1ba21f8fa76748475c5d6842663f
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop statically including legacy-android-test</title>
<updated>2017-12-08T00:08:33+00:00</updated>
<author>
<name>Paul Duffin</name>
<email>paulduffin@google.com</email>
</author>
<published>2017-12-08T00:02:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=5879495b4f1b2e0adf436fff01350b873806825c'/>
<id>5879495b4f1b2e0adf436fff01350b873806825c</id>
<content type='text'>
Statically including legacy-android-test leads to duplicate classes
which causes build time problems (with Proguard) and runtime problems on
older SDK versions. This change:
* Stops statically including legacy-android-test.
* Adds compile time dependencies on andoid.test.base, android.test.mock
  and android.test.runner where necessary.
* Adds &lt;uses-library android:name="android.test.runner"/&gt; to any
  affected package to ensure that the classes that were included by
  legacy-android-test are still available at runtime. That also adds a
  dependency on android.test.base and android.test.mock.

The following change descriptions were generated automatically and so
may be a little repetitive. They are provided to give the reviewer
enough information to check the comments match what has actually been
changed and check the reasoning behind the changes.

* tests/Android.mk
    Added 'android.test.base' to LOCAL_JAVA_LIBRARIES because
    LegacyCameraTests's source depends on its classes and because of
    these changes they are no longer present on the compilation path.

    Removed legacy-android-test from LOCAL_STATIC_JAVA_LIBRARIES
    because statically including the classes in LegacyCameraTests
    results in duplicate classes which leads to build time and compile
    time issues.

Bug: 30188076
Test: make checkbuild
Change-Id: I9590a49f43925c0c6926227053e74839b29add39
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Statically including legacy-android-test leads to duplicate classes
which causes build time problems (with Proguard) and runtime problems on
older SDK versions. This change:
* Stops statically including legacy-android-test.
* Adds compile time dependencies on andoid.test.base, android.test.mock
  and android.test.runner where necessary.
* Adds &lt;uses-library android:name="android.test.runner"/&gt; to any
  affected package to ensure that the classes that were included by
  legacy-android-test are still available at runtime. That also adds a
  dependency on android.test.base and android.test.mock.

The following change descriptions were generated automatically and so
may be a little repetitive. They are provided to give the reviewer
enough information to check the comments match what has actually been
changed and check the reasoning behind the changes.

* tests/Android.mk
    Added 'android.test.base' to LOCAL_JAVA_LIBRARIES because
    LegacyCameraTests's source depends on its classes and because of
    these changes they are no longer present on the compilation path.

    Removed legacy-android-test from LOCAL_STATIC_JAVA_LIBRARIES
    because statically including the classes in LegacyCameraTests
    results in duplicate classes which leads to build time and compile
    time issues.

Bug: 30188076
Test: make checkbuild
Change-Id: I9590a49f43925c0c6926227053e74839b29add39
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare for removal of legacy-test from default targets</title>
<updated>2017-01-17T14:49:42+00:00</updated>
<author>
<name>Paul Duffin</name>
<email>paulduffin@google.com</email>
</author>
<published>2017-01-17T14:49:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=bd34e162e5cb149caef266f95f20de8fb847c5c4'/>
<id>bd34e162e5cb149caef266f95f20de8fb847c5c4</id>
<content type='text'>
In preparation for removing junit classes from the Android API
the legacy-test target will be removed from the
TARGET_DEFAULT_JAVA_LIBRARIES. This change adds explicit
dependencies on junit and/or legacy-android-test to ensure that
modules will compile properly once it is removed.

Bug: 30188076
Test: make checkbuild
Change-Id: I0ae167d6987d4e99ba33d3cd2e342beea6c1fee7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In preparation for removing junit classes from the Android API
the legacy-test target will be removed from the
TARGET_DEFAULT_JAVA_LIBRARIES. This change adds explicit
dependencies on junit and/or legacy-android-test to ensure that
modules will compile properly once it is removed.

Bug: 30188076
Test: make checkbuild
Change-Id: I0ae167d6987d4e99ba33d3cd2e342beea6c1fee7
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename Camera to LegacyCamera for SDK inclusion.</title>
<updated>2012-06-05T01:21:06+00:00</updated>
<author>
<name>Eino-Ville Talvala</name>
<email>etalvala@google.com</email>
</author>
<published>2012-06-05T01:21:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=1461b5333aab31faee65272d64c2ac7f9809d4d0'/>
<id>1461b5333aab31faee65272d64c2ac7f9809d4d0</id>
<content type='text'>
The SDK needs a camera app that does not require GPU acceleration.
The Camera app from 4.0.4 meets these requirements.

Change-Id: Idb42d4b9e47d584ef1da10e3ba672d537c8db94b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The SDK needs a camera app that does not require GPU acceleration.
The Camera app from 4.0.4 meets these requirements.

Change-Id: Idb42d4b9e47d584ef1da10e3ba672d537c8db94b
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix focus area in front camera.</title>
<updated>2011-10-21T11:47:21+00:00</updated>
<author>
<name>Chih-yu Huang</name>
<email>akahuang@google.com</email>
</author>
<published>2011-10-21T03:50:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=048edf2ef22607b85bc4b062e2af71804f5b3530'/>
<id>048edf2ef22607b85bc4b062e2af71804f5b3530</id>
<content type='text'>
Front camera preview is mirrored. Change to use matrix to
calculate the focus area. So the focus area will be
correct in all orientations in front or back camera.

bug:5446617
bug:5461028
Change-Id: I2d39a22cd9f034c5028843ca3d4abe0f9962f18a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Front camera preview is mirrored. Change to use matrix to
calculate the focus area. So the focus area will be
correct in all orientations in front or back camera.

bug:5446617
bug:5461028
Change-Id: I2d39a22cd9f034c5028843ca3d4abe0f9962f18a
</pre>
</div>
</content>
</entry>
<entry>
<title>Add hysteresis to orientation rounding.</title>
<updated>2011-10-19T18:40:32+00:00</updated>
<author>
<name>Eino-Ville Talvala</name>
<email>etalvala@google.com</email>
</author>
<published>2011-10-18T20:33:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=131cf9886c4f34431598be0b1f5b7aaa915277cc'/>
<id>131cf9886c4f34431598be0b1f5b7aaa915277cc</id>
<content type='text'>
This prevents fast flickering between two orientation states, which
can result in ugly UI issues, especially with the preview thumbnail.

Bug: 5477483
Change-Id: I9513547207ae1918066c1a19947c974eaad72e24
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This prevents fast flickering between two orientation states, which
can result in ugly UI issues, especially with the preview thumbnail.

Bug: 5477483
Change-Id: I9513547207ae1918066c1a19947c974eaad72e24
</pre>
</div>
</content>
</entry>
<entry>
<title>Add "Intent.FLAG_ACTIVITY_CLEAR_TOP" flag in test.</title>
<updated>2011-10-17T08:20:39+00:00</updated>
<author>
<name>Angus Kong</name>
<email>shkong@google.com</email>
</author>
<published>2011-10-14T09:11:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=52c5c76bddbf3994867a00d0e266b390592486aa'/>
<id>52c5c76bddbf3994867a00d0e266b390592486aa</id>
<content type='text'>
The "Intent.FLAG_ACTIVITY_CLEAR_TOP" should be added in the intent for switching modes. This flag
ensures there is only 1 instance of the same activity. This behavior is the same as how we do in the
app.

bug:5336037
Change-Id: Ie76b43cbd87ff9e8a7ec9e0a892930834dccf9cf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "Intent.FLAG_ACTIVITY_CLEAR_TOP" should be added in the intent for switching modes. This flag
ensures there is only 1 instance of the same activity. This behavior is the same as how we do in the
app.

bug:5336037
Change-Id: Ie76b43cbd87ff9e8a7ec9e0a892930834dccf9cf
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor all focus code to a separate class.</title>
<updated>2011-08-23T14:21:25+00:00</updated>
<author>
<name>Wu-cheng Li</name>
<email>wuchengli@google.com</email>
</author>
<published>2011-08-22T11:05:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_packages_apps_LegacyCamera/commit/?id=d480002ccad05cf992c628c72884091c36cc654c'/>
<id>d480002ccad05cf992c628c72884091c36cc654c</id>
<content type='text'>
The code about focus is complicated and scattered around.
Move the code to a new class, so it is easier to maintain.

Change-Id: I0214b405bf1596d967e7d89cdb04328322c6ab95
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The code about focus is complicated and scattered around.
Move the code to a new class, so it is easier to maintain.

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