Get it from the App Store.
In XCode's Preferences > Downloads you can install command line tools.
| [submodule "amqp"] | |
| path = amqp | |
| url = http://github.com/ry/node-amqp.git |
| import android.accessibilityservice.AccessibilityService; | |
| import android.accessibilityservice.AccessibilityServiceInfo; | |
| import android.util.Log; | |
| import android.view.accessibility.AccessibilityEvent; | |
| public class RecorderService extends AccessibilityService { | |
| static final String TAG = "RecorderService"; | |
| private String getEventType(AccessibilityEvent event) { |
| - (void)touchesEnded: (NSSet *)touches withEvent: (UIEvent *)event { | |
| for (UIView* view in self.view.subviews) { | |
| if ([view isKindOfClass:[UITextField class]]) | |
| [view resignFirstResponder]; | |
| } | |
| } |