summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
Commit message (Collapse)AuthorAgeFilesLines
* Support new crop wallpaper intentMichael Jurka2013-09-091-1/+1
|
* Create a separate wallpaper crop activityMichael Jurka2013-09-051-1/+14
| | | Change-Id: Ifb0a7dcb5a6e9ddd4f4bbccc793d9b4db1256cf2
* Remove obsolete widget adder shortcut.Daniel Sandler2013-08-231-11/+0
| | | | | Bug: 10441366 Change-Id: Ie9d70010ecdee3332595be6296fef604e3d676a8
* Remove memory-debug-related launcher icons & functionality.Daniel Sandler2013-08-231-0/+1
| | | | | Bug: 10441366 Change-Id: I3ddb95839bcd5c07db7e76ce1a28323b499ea30d
* Oops, fix build breakage caused by missing files.Michael Jurka2013-08-211-2/+0
| | | Also, remove preview images for wallpaper pickers.
* Remove built-in wallpaper picker.Daniel Sandler2013-08-211-15/+0
| | | | | | | | Note that we don't yet have a solution for the user's initial wallpaper. Bother! Bug: 9626042 Change-Id: I07ab09a3d10434e444dc27051034d387e692e469
* Initial implementation of new wallpaper picker.Michael Jurka2013-08-211-0/+16
| | | Change-Id: Ib4c5ac4989b4959fa62465d9cde3cac662e24949
* Initial implementation: Broadcasts on app launch.Daniel Sandler2013-08-061-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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/<pkg>/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
* Adding switch to toggle Memory OverlayAdam Cohen2013-07-191-0/+11
| | | | | | | | | | -> The overlay causes performance regressions so it's hard to evaluate performance with it on. -> Also, the WeightWatcher is still running regardless, so you can always check it -> Saved as a shared pref Change-Id: Iad5ccbeca2c2b4e0ec86294879f3eb09caa594e9
* Include all processes in hprof dumps.Daniel Sandler2013-06-261-1/+2
| | | | | | | The emailed file is now a zipfile containing one .ahprof file for each process known to MemoryTracker. Change-Id: If4a73df9afd38756cc01ff37b2d249346e5f7e9f
* Memory tracking is now handled by a service.Daniel Sandler2013-06-211-0/+5
| | | | | | | | | | Multiple processes may be tracked and viewed simultaneously. Also, some changes to the graph: * show uss and pss together * adjust opacity controls Change-Id: I20eebaa8cc8faf78b46af2a35d71ee538207f02b
* New icon to dump heap information and share it.Daniel Sandler2013-06-171-0/+15
| | | | | | | Alternatively, $ adb shell am start -n <pkg>/com.android.launcher3.MemoryDumpActivity Change-Id: I8c615ec3abffaf6ad693c93bdf569550d8f97298
* HACK: temporary upgrade path from com.android.launcher2Adam Cohen2013-06-061-0/+2
| | | | | | | | | -> load old provider -> permute pages -> strip all duplicates from workspace -> add [allapps minus workspaceapps] to apps folder Change-Id: Id319d532c6bf1d78370ecc736e95a9475d831de8
* Add a dummy activity which we can catch on-click in launcher to open ↵Adam Cohen2013-06-061-0/+11
| | | | | | allapps/widgets Change-Id: Idc718a9e03e7358f972c59fcfc3bf2eaf75e56ee
* Launcher2 is now Launcher3.Daniel Sandler2013-06-051-28/+26
| | | | | | | | | | Changes include - moving from com.android.launcher{,2} to com.android.launcher3 - removing wallpapers - new temporary icon Change-Id: I1eabd06059e94a8f3bdf6b620777bd1d2b7c212b
* Cache widget previews in a DBMichael Jurka2013-02-041-1/+10
| | | | | | - Smoother All Apps scroll performance Change-Id: Id2d31a45e71c63d05a46f580667ad94403730616
* Updating wallpaper picker icon to higher resMichael Jurka2012-11-131-2/+2
| | | | Bug: 7400295 Change-Id: I2c7625ee1ce09ded57d884c229f155ebcf39be07
* remove old fashioned dream, no longer supportedScott Main2012-10-181-9/+0
| | | | Change-Id: I87370e8dc7f3159182dac9f650223ce010d6286b
* Fix issue #7255954: API Review: rename Dream to DreamServiceDianne Hackborn2012-09-281-2/+1
| | | | Change-Id: I4a8fcea6856ea021b22d6e1f317c43d081c7b923
* Merge "7225161 Launcher needs to add android:supportsRtl="true" in his ↵Fabrice Di Meglio2012-09-251-1/+2
|\ | | | | | | AndroidManifest" into jb-mr1-dev
| * 7225161 Launcher needs to add android:supportsRtl="true" in his AndroidManifestFabrice Di Meglio2012-09-251-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | - add basic RTL support in the AndroidManifest so that Widgets will be able to support RTL too - force LTR layout direction to AppsCustomizeTabHost so that we dont have to deal with layout mirroring yet (do not need to force also LTR layout direction to Wallpaper activity and fragment as another CL is removing the ActionBar on them) Change-Id: I66623a3fcec0d7adef62b0ab8c8b2170e09f1b1b
* | Remove action bar from wallpaper pickerMichael Jurka2012-09-251-1/+1
|/ | | | | | Bug: 5295678 Change-Id: I50bb4bee3d9d54f28ef4a46ed9754701045d38c7
* Add user initialing receiver to select a unique wallpaper.Dianne Hackborn2012-09-161-0/+9
| | | | Change-Id: I14652d8108c2e19db821ab5526b6e630db8fe998
* Set permission [UN]INSTALL_SHORTCUT protectionLevel to 'dangerous'Nick Kralevich2012-08-071-2/+2
| | | | | Bug: 5543177 Change-Id: I8b4f1899bc898ae95f9bca004e6fa959ee078903
* Explicitly export content providersNick Kralevich2012-07-281-0/+1
| | | | | | | | | In a future version of Android, the default value for <provider android:exported> will change from true to false. Explicitly set android:exported="true" Bug: 3306452 Change-Id: I8fcce3af6949eb245ea97b6e64c191f465f0ae5f
* Removing unnecessary config parameter for hw accelMichael Jurka2012-06-281-1/+1
| | | | Change-Id: Ibbbca9fb93319400332ba27f9cae62b1c0cc4313
* Merge "Revert "Lock launcher to portrait on devices less than sw720dp"" into ↵Jeff Brown2012-06-051-1/+1
|\ | | | | | | jb-dev
| * Revert "Lock launcher to portrait on devices less than sw720dp"Jeff Brown2012-06-041-1/+1
| | | | | | | | This reverts commit 51726adc25b0b32e79bbf7dd912d5ebb69682767 Bug: 6580571
* | Merge "Skip custom Play cling if no accounts are set up" into jb-devMichael Jurka2012-05-221-0/+1
|\ \ | |/ |/|
| * Skip custom Play cling if no accounts are set upMichael Jurka2012-05-221-0/+1
| | | | | | | | | | Bug: 6519934 Change-Id: Ic796b2fb03201a3c767f92b36edfdb4b2e41e5d4
* | Lock launcher to portrait on devices less than sw720dpMichael Jurka2012-05-221-1/+1
|/ | | | | Bug: 6523269 Change-Id: Ic75040257442a7c8486030702961634b54694f44
* Populate the default workspace earlierBrian Muramatsu2012-05-151-0/+13
| | | | | | | Adds a receiver that populates the default workspace. It can be called by the system when it's ready for launcher to preload. Change-Id: If885fcfd931c459f87e9bb0df4c8bca00906f3c1
* Prevent "Beaming" from home screen.Martijn Coenen2012-04-191-0/+2
| | | | | | | | | | | | Recently Android Beam was also enabled by default for all system applications. For some system apps this makes sense, but for an app such as launcher it doesn't. This meta-data entry prevents the default Beam behavior for Launcher. Bug: 6257668 Change-Id: I1d2188969da1c87734190c19c0528ce4d3ce6825
* Run wallpaper chooser in a separate processMichael Jurka2011-10-131-1/+2
| | | | | | | Fixes cases where the wallpaper previews were not loading due to OOM errors. Bug #5453040 Change-Id: I96ea5e215e63f0848ca518c982a6d695d0dff75f
* Remove unneeded permissionsRomain Guy2011-10-051-8/+1
| | | | Change-Id: I328402278d53aa39459d5c6b21890c9c720a726e
* Locking orientation on phones (issue 4967793)Adam Cohen2011-09-151-1/+2
| | | | Change-Id: I6b5fe63547f43c408feea75f35dc0a08d06c258c
* Turning off largeHeap on CrespoAdam Cohen2011-07-251-1/+1
| | | | Change-Id: I28dcd1db577688fe24c786f1519f442c690bff1d
* Fixing bug with renamingAdam Cohen2011-06-271-1/+2
| | | | | | | -> in some workspace configs, bringing up the IME wasn't properly sliding up launcher to expose the text field Change-Id: Id98ae732fd8709cff08f156660ae1656feb5bf75
* A fullscreen wallpaper chooser for all screen sizes.Amith Yamasani2011-06-221-2/+1
| | | | | | | The wallpaper preview covers the whole screen, with background protection for the gallery items and button. Change-Id: Ice31c4fea6503d1a59b59d6fbffb5e4a28eb2143
* New folder visualization, renaming, staggering reorderAdam Cohen2011-06-211-4/+2
| | | | Change-Id: I62963d225e6ea5d2ec9d8ebc8a6d73099f5d6c7f
* Allow overlays to disable hw accelerationMichael Jurka2011-06-141-1/+1
|
* remove unused/redundant params to turn on HW accelMichael Jurka2011-06-011-3/+1
|
* Rocket Launcher!Daniel Sandler2011-05-261-0/+12
| | | | | | | | | | | | | This is an Android Dream, which is kind of like an interactive screensaver implemented as an Activity. The Rocket Launcher uses the Launcher's own icon cache to show the user's installed apps in hyperspace. Tap the screen to slow down to impulse power. Then, tap an icon to launch. (depends on I4559a95 for android.dreams in support lib) Change-Id: Ie6ce34ec1c863667faeada4f39b225f3946e8633
* Turning on hardware acceleration by default for all devicesMichael Jurka2011-05-231-1/+1
| | | (if a device isn't HW accelerated, this flag should have no effect)
* More memory!Dianne Hackborn2011-01-191-1/+2
| | | | Change-Id: If30047e60c4cfe3a278f83189013b4afa7fe6088
* Adding wallpaper picker previewAdam Cohen2011-01-181-0/+2
| | | | Change-Id: Ib3a10bb02b249f71265fe04b3829465a77fb4a9f
* Update Wallpaper picker and fix bugAdam Lesinski2010-12-131-1/+1
| | | | | | | -Fixed b/3271838 -On a phone, Fragment would not remember its previous state and crash on rotation Change-Id: Ida923fba0c7f4622b090e2838fd932328ad68c63
* Don't ever move Launcher when another app is above itMichael Jurka2010-11-241-1/+1
|
* Updating the Static Wallpaper picker for TabletAdam Lesinski2010-11-241-0/+1
| | | | | | | | | | | | - Updated WallpaperChooser to use FragmentDialogs - Backwards compatible with old WallpaperChooser UI on non XLarge screens - There is a known bug with AlertDialogs (b/3225529) that prevents an AlertDialog to expand to fit its content. The squishing of the GridView is caused by that bug. Change-Id: I49381aab4aa24362e8c92da284797fce0e63823c
* cleaning up hardware acceleration XML value a bitMichael Jurka2010-09-281-1/+1
| | | (switch from integer -> bool)