Go to file
Joe 11158ebdfc
feat: add Kindle Fire 10, Anbernic RG353P, Pinephone (#257)
* more codes for Kindle 10, plus Anbernic RG353P

Cycled through the various sequences and found codes for these modes.
Continuation of issue #256

* Kindle 8, Kindle 10, Anbernic RG353P, PinePhone

Joshua Fern collected information and provided details for
Kindle 8, 10, game emulator and a phone. This is a
continuation of Issue #256

* Add adb_adb{mtp,ptp,tet,midi}

Attempt to add adb and mtp at the same time.
Add differentiation between different adb modes.
Follow-up with details in Issue #256

---------

Co-authored-by: Joshua Fern <JoshuaFern@protonmail.com>
2023-05-22 10:35:19 +02:00
debian Use SPDX license headers 2022-01-02 19:45:54 +01:00
rpm chore: add sysusers.d android-udev.conf to RPM spec (#254) 2023-03-10 11:08:11 +01:00
51-android.rules feat: add Kindle Fire 10, Anbernic RG353P, Pinephone (#257) 2023-05-22 10:35:19 +02:00
LICENSE 20191103 2019-11-03 12:12:14 +01:00
README.md fix: install.sh: get current user instead of root on the automatic install script (#239) 2022-09-16 09:41:34 +02:00
android-udev.conf working .conf for sysusers.d compliance 2017-12-16 18:52:35 +01:00
install.sh chore: install.sh: some edits to make it work with sudo & su (close #242) (#244) 2022-12-10 23:23:12 +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.

Other distros

The following instructions assume that you're using a GNU/Linux distro with systemd

# 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
    
# Add the adbusers group if it's doesn't already exist
sudo cp android-udev.conf /usr/lib/sysusers.d/
sudo systemd-sysusers

# Add your user to the adbusers group
sudo gpasswd -a $(whoami) adbusers
    
# Restart UDEV
sudo udevadm control --reload-rules
sudo systemctl restart systemd-udevd.service
   
# Restart the ADB server (back to Debian again)
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

Using the automtic install script

  1. Clone this repository
  2. Run the install.sh as root on your terminal

To Contribute

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