- make sure each active branch contains a
.travis.yaml
- if you want to build gh-pages: explicitly include it in the
.travis.yaml
Pre-requisites
- developer options switched on on phone
- adb installed on computer (macosx: brew install android-platform-tools)
Steps
- switch on debugging on the phone
- connect the phone to the computer
- start the adb shell
💬 input:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mdutil -a -i off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# this one actually works great | |
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist | |
killall NotificationCenter | |
# An alternative method, requiring root permission: | |
# http://www.maclife.com/article/howtos/how_disable_notification_center_mountain_lion | |
# requiring root permission: | |
# | |
# sudo defaults write /System/Library/LaunchAgents/com.apple.notificationcenterui KeepAlive -bool false |
NewerOlder