<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages_apps_Trebuchet/src/com/android/launcher3/Stats.java, branch cm-13.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Trebuchet/'/>
<entry>
<title>resolved conflicts for merge of 13ef17a3 to mnc-dr-dev</title>
<updated>2015-07-22T18:31:04+00:00</updated>
<author>
<name>Hyunyoung Song</name>
<email>hyunyoungs@google.com</email>
</author>
<published>2015-07-22T00:01:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Trebuchet/commit/?id=e612775922ec9f8cc4e5cb976bc62b3312a3de0e'/>
<id>e612775922ec9f8cc4e5cb976bc62b3312a3de0e</id>
<content type='text'>
b/22609402
Change-Id: I140cf972d57e14737a6f91c0b4a8ec6c7ff1af2b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
b/22609402
Change-Id: I140cf972d57e14737a6f91c0b4a8ec6c7ff1af2b
</pre>
</div>
</content>
</entry>
<entry>
<title>Add more Launcher files to delete on Clear Launcher Data</title>
<updated>2014-10-16T16:35:50+00:00</updated>
<author>
<name>Helena Josol</name>
<email>helenajosol@google.com</email>
</author>
<published>2014-10-09T16:04:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Trebuchet/commit/?id=28db280b7af14614f2b168ea8c5d496cda650321'/>
<id>28db280b7af14614f2b168ea8c5d496cda650321</id>
<content type='text'>
Bug: 12753154
Change-Id: I00679bdc6eff70a1398122aaa955c08eabd556b1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug: 12753154
Change-Id: I00679bdc6eff70a1398122aaa955c08eabd556b1
</pre>
</div>
</content>
</entry>
<entry>
<title>Specify permission.RECEIVE_LAUNCH_BROADCASTS in String resource</title>
<updated>2014-07-16T21:48:43+00:00</updated>
<author>
<name>Adam Cohen</name>
<email>adamcohen@google.com</email>
</author>
<published>2014-07-16T21:47:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Trebuchet/commit/?id=df3ac430b137f194f51b3c8ad814fa96223a9a7f'/>
<id>df3ac430b137f194f51b3c8ad814fa96223a9a7f</id>
<content type='text'>
Change-Id: I2aca0108e3b41dc1db80d552dd6242a5a8d0245d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I2aca0108e3b41dc1db80d552dd6242a5a8d0245d
</pre>
</div>
</content>
</entry>
<entry>
<title>Broadcast app launches from all apps too.</title>
<updated>2013-09-26T11:18:32+00:00</updated>
<author>
<name>Anton Hansson</name>
<email>hansson@google.com</email>
</author>
<published>2013-09-26T11:18:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Trebuchet/commit/?id=a2f665f4f7dc60aa0ea97e20027a79e796241356'/>
<id>a2f665f4f7dc60aa0ea97e20027a79e796241356</id>
<content type='text'>
Bug 10943415

Change-Id: I0e496a53fc253bd313d269a05674d7c5cdadee68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug 10943415

Change-Id: I0e496a53fc253bd313d269a05674d7c5cdadee68
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial implementation: Broadcasts on app launch.</title>
<updated>2013-08-06T04:18:38+00:00</updated>
<author>
<name>Daniel Sandler</name>
<email>dsandler@android.com</email>
</author>
<published>2013-08-05T06:12:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Trebuchet/commit/?id=ff02d49e464c2fe92ba625a3046f31aa042e5d32'/>
<id>ff02d49e464c2fe92ba625a3046f31aa042e5d32</id>
<content type='text'>
Look for com.android.launcher3.action.LAUNCH to be sent when
an icon is clicked in Launcher. (Restricted to
com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS
which is a signature permission right now.

This is specifically tracking apps launched via shortcut
icon; any other method of launching apps (notifications,
recents, internal navigation, etc.) is outside of Launcher's
purview and hence not broadcast.

The broadcast currently includes, in the "intent" extra, the
Uri flattening of the specific shortcut clicked.

The file /data/data/&lt;pkg&gt;/files/launches.log contains a
binary log of all such launches, including additional info
like screen# that should probably be in the broadcast too.

This info is summarized in .../stats.log, which encodes a
simple histogram of app launches since basically forever.
This should probably be done over a sliding window, which
will require more processing on startup.

Bug: 10031590
Change-Id: Ifc5921d5dc20701c67678cbfdc89b03cacd62028
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Look for com.android.launcher3.action.LAUNCH to be sent when
an icon is clicked in Launcher. (Restricted to
com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS
which is a signature permission right now.

This is specifically tracking apps launched via shortcut
icon; any other method of launching apps (notifications,
recents, internal navigation, etc.) is outside of Launcher's
purview and hence not broadcast.

The broadcast currently includes, in the "intent" extra, the
Uri flattening of the specific shortcut clicked.

The file /data/data/&lt;pkg&gt;/files/launches.log contains a
binary log of all such launches, including additional info
like screen# that should probably be in the broadcast too.

This info is summarized in .../stats.log, which encodes a
simple histogram of app launches since basically forever.
This should probably be done over a sliding window, which
will require more processing on startup.

Bug: 10031590
Change-Id: Ifc5921d5dc20701c67678cbfdc89b03cacd62028
</pre>
</div>
</content>
</entry>
</feed>
