Go to file
Kenzi Jeanis 135e1bc6f2
Add install script (#176)
Simplify the install process by adding a lightly configurable install script based on the README.md instructions.
2020-02-15 13:26:32 +01:00
debian Add .deb building to make debian installs easier 2018-01-11 20:58:46 -06:00
rpm Add RPM spec file to build rpm packages 2019-12-15 23:19:41 +01:00
51-android.rules Revert "Uncommented Dell idVendor line" (#175) 2020-01-21 21:24:53 +01:00
LICENSE 20191103 2019-11-03 12:12:14 +01:00
README.md Fix link to instructions for connecting a device on arch wiki 2019-02-24 22:22:30 +11:00
android-udev.conf working .conf for sysusers.d compliance 2017-12-16 18:52:35 +01:00
install.sh Add install script (#176) 2020-02-15 13:26:32 +01:00

README.md

android-udev-rules

Description

These rules refer to Run Apps on a Hardware Device - Android Studio and include many suggestions from the Archlinux and Github Communities.

Installation

Arch

On Arch it should be enough to follow the instructions for connecting a device on the Arch wiki. There's no need to clone this repository.

Ubuntu

# Clone this repository
git clone https://github.com/M0Rf30/android-udev-rules.git
cd android-udev-rules
# Copy rules file
sudo cp -v 51-android.rules /etc/udev/rules.d/51-android.rules
# OR create a sym-link to the rules file - choose this option if you'd like to update your udev rules using git.
sudo ln -sf "$PWD"/51-android.rules /etc/udev/rules.d/51-android.rules
# Change file permissions
sudo chmod a+r /etc/udev/rules.d/51-android.rules
# If adbusers group already exists remove old adbusers group
groupdel adbusers
# add the adbusers group if it's doesn't already exist
sudo mkdir -p /usr/lib/sysusers.d/ && sudo cp android-udev.conf /usr/lib/sysusers.d/
sudo systemd-sysusers # (1)
# OR on Fedora:
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
# OR on Fedora:
sudo systemctl restart systemd-udevd.service
# 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

(1) Not available on Ubuntu 16.04 and mint 18, use sudo groupadd adbusers instead.

To Contribute:

  1. Fork this repository.
  2. Make your edits.
  3. TEST THEM!
  4. Create a pull request.