commit | 80530aa243c3cfbf9f6e5dd4f76a1798246e0e87 | [log] [tgz] |
---|---|---|
author | Ian Lake <ilake@google.com> | Mon Feb 13 15:47:41 2017 -0800 |
committer | Donghyun Cho <donghyun@google.com> | Wed Mar 08 13:42:04 2017 +0900 |
tree | 69899e8168c037312e54b6c271c73c164df4eddf | |
parent | cc1e4e759352cc00cfd1d7750f88d8bc8987f400 [diff] |
Remove usage of startService from MediaButtonReceiver Instead of using startService to forward media button intents to Services and MediaBrowserServices, restrict usage to only MediaBrowserServices and use MediaBrowserCompat.connect to bind to the service and directly send the media button KeyEvent. By removing usages of startService, we avoid accidentally creating a long running background service, work well with future background optimizations, and avoid the need to call MediaButtonReceiver.handleIntent() in onStartCommand. BUG: 33197879 Test: Manual testing in a sample app Change-Id: Id6a01689584aee282fab3f791809b584b1f913da
We are not currently accepting new modules, features, or behavior changes.
NOTE: You will need to use Linux or Mac OS. Building under Windows is not currently supported.
Follow the “Downloading the Source” guide to install and set up repo
tool, but instead of running the listed repo
commands to initialize the repository, run the folowing:
repo init -u https://android.googlesource.com/platform/manifest -b ub-supportlib-master
Now your repository is set to pull only what you need for building and running support library. Download the code (and grab a coffee while we pull down 7GB):
repo sync -j8 -c
You will use this command to sync your checkout in the future - it’s similar to git fetch
Open path/to/checkout/frameworks/support/
in Android Studio. Now you're ready edit, run, and test!
If you get “Unregistered VCS root detected” click “Add root” to enable git integration for Android Studio.
If you see any warnings (red underlines) run Build > Clean Project
.
You can do most of your work from Android Studio, however you can also build the full support library from command line:
cd path/to/checkout/frameworks/support/ ./gradlew createArchive
Run FooBarTest
Run android.support.foobar
Support library has a set of Android applications that exercise support library code. These applications can be useful when you want to debug a real running application, or reproduce a problem interactively, before writing test code.
These applications are named support-*-demos (e.g. support-4v-demos or support-leanback-demos. You can run them by clicking Run > Run ...
and choosing the desired application.
cd path/to/checkout/frameworks/support/ repo start my_branch_name . (make needed modifications) git commit -a repo upload --current-branch .
If you see the following prompt, choose always
:
Run hook scripts from https://android.googlesource.com/platform/manifest (yes/always/NO)?