Package Details: android-sdk-platform-tools 35.0.1-1

Git Clone URL: https://aur.archlinux.org/android-sdk-platform-tools.git (read-only, click to copy)
Package Base: android-sdk-platform-tools
Description: Platform-Tools for Google Android SDK (adb and fastboot)
Upstream URL: http://developer.android.com/sdk/index.html
Keywords: android development
Licenses: custom
Conflicts: adb
Provides: adb, android-tools
Submitter: Gordin
Maintainer: dreamingincode
Last Packager: dreamingincode
Votes: 1272
Popularity: 3.24
First Submitted: 2011-01-29 23:08 (UTC)
Last Updated: 2024-03-23 00:54 (UTC)

Latest Comments

« First ‹ Previous 1 .. 12 13 14 15 16 17 18 19 Next › Last »

Gordin commented on 2011-08-01 20:08 (UTC)

Should be fixed now. (You might get that warning one more time if you still have the broken package installed)

<deleted-account> commented on 2011-08-01 19:55 (UTC)

I get: warning: directory permissions differ on opt/android-sdk/ filesystem: 755 package: 775 and as a result Eclipse does not recognize Android.

<deleted-account> commented on 2011-06-18 06:22 (UTC)

chgrp 420 opt/$_sdk/platform-tools? group 420? what's this?

Gordin commented on 2011-06-09 21:46 (UTC)

updated

revel commented on 2011-06-05 13:27 (UTC)

how about bumping pkgver to r05?

Gordin commented on 2011-05-28 11:13 (UTC)

applied the patch

<deleted-account> commented on 2011-05-27 14:44 (UTC)

Could you apply the following patch to the adb daemon script? This makes it work with the new /sbin/rc.d init script, since that script sets its own PATH. It also lets you start adb on boot in /etc/rc.conf in the DAEMONS array. --- adb 2011-05-18 09:51:44.000000000 -0400 +++ adb.new 2011-05-26 08:12:18.943418443 -0400 @@ -3,7 +3,8 @@ . /etc/rc.conf . /etc/rc.d/functions -DAEMON=adb +DAEMON="adb" +DAEMON_PATH="/opt/android-sdk/platform-tools" ARGS="start-server" [ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON @@ -11,7 +12,7 @@ ARGS="start-server" case "$1" in start) stat_busy "Starting $DAEMON" - $DAEMON $ARGS &>/dev/null + $DAEMON_PATH/$DAEMON $ARGS &>/dev/null if [ $? = 0 ]; then add_daemon $DAEMON stat_done @@ -22,7 +23,7 @@ case "$1" in ;; stop) stat_busy "Stopping $DAEMON" - $DAEMON "kill-server" &>/dev/null + $DAEMON_PATH/$DAEMON "kill-server" &>/dev/null if [ $? = 0 ]; then rm_daemon $DAEMON stat_done

<deleted-account> commented on 2011-05-26 12:15 (UTC)

Could you apply the following patch to the adb daemon script? This makes it work with the new /sbin/rc.d init script, since that script sets its own PATH. --- adb 2011-05-18 09:51:44.000000000 -0400 +++ adb.new 2011-05-26 08:12:18.943418443 -0400 @@ -3,7 +3,8 @@ . /etc/rc.conf . /etc/rc.d/functions -DAEMON=adb +DAEMON="adb" +DAEMON_PATH="/opt/android-sdk/platform-tools" ARGS="start-server" [ -r /etc/conf.d/$DAEMON ] && . /etc/conf.d/$DAEMON @@ -11,7 +12,7 @@ ARGS="start-server" case "$1" in start) stat_busy "Starting $DAEMON" - $DAEMON $ARGS &>/dev/null + $DAEMON_PATH/$DAEMON $ARGS &>/dev/null if [ $? = 0 ]; then add_daemon $DAEMON stat_done @@ -22,7 +23,7 @@ case "$1" in ;; stop) stat_busy "Stopping $DAEMON" - $DAEMON "kill-server" &>/dev/null + $DAEMON_PATH/$DAEMON "kill-server" &>/dev/null if [ $? = 0 ]; then rm_daemon $DAEMON stat_done

Gordin commented on 2011-05-24 21:24 (UTC)

What do you mean by default? This package already adds /opt/android-sdk/platform-tools/ to your PATH through scripts in /etc/profile.d/