android-udev-rules/README.md

50 lines
1.5 KiB
Markdown
Raw Normal View History

# android-udev-rules
2015-11-07 19:04:53 +01:00
## Description
2013-09-10 18:29:22 +02:00
These rules refer to [Run Apps on a Hardware Device - Android Studio](https://developer.android.com/studio/run/device.html) and include many suggestions from the Archlinux and Github Communities.
2013-09-10 18:29:22 +02:00
## Installation
### Arch
On Arch it should be enough to follow the [instructions for connecting a device on the Arch wiki](https://wiki.archlinux.org/index.php/android#Connect_device). There's no need to clone this repository.
2015-05-02 03:20:09 +02:00
### Ubuntu
# Clone this repository
git clone git@github.com:M0Rf30/android-udev-rules.git
# Create a sym-link to the rules file
2017-06-12 06:53:04 +02:00
sudo cp android-udev-rules/51-android.rules /etc/udev/rules.d/
# Change file permissions
sudo chmod a+r /etc/udev/rules.d/51-android.rules
# add the adbusers group if it's doesn't already exist
sudo groupadd adbusers
# Add your user to the adbusers group
sudo usermod -a -G adbusers $(whoami)
# Restart UDEV
sudo udevadm control --reload-rules
sudo service udev restart
# Restart the ADB server
adb kill-server
# Replug your Android device and verify that USB debugging is enabled in developer options
adb devices
# You should now see your device
## To Contribute:
1. Fork this repository.
2. Make your edits.
3. TEST THEM!
4. Create a pull request.
2015-05-02 03:24:12 +02:00
2016-03-03 11:09:37 +01:00
## Note
Some devices (particularly MediaTek and Xiaomi) additionally require an entry in `$HOME/.android/adb_usb.ini`. You can use the adb_usb.ini from this repository:
ln -s `pwd`/adb_usb.ini $HOME/.android/