android-sdk-tools

Google Cloud Messaging for Android Library not Found in the sdk Manager

自闭症网瘾萝莉.ら 提交于 2019-11-30 08:11:20
I am trying to implement a push notification solution for android.I am following the steps given in the following tutorial http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/ but when i tried to install the Google Cloud Messaging for Android Library using the android sdk(i am using the latest sdk) i don't find it the extras module like you can see in this picture This is really strange. Is there any solution? Install Google Play Services Library For client side implementation of GCM use this link For server side purposes follow the

SDK Manager failed to install 'java.exe' locking directory

回眸只為那壹抹淺笑 提交于 2019-11-30 06:32:51
问题 I have ran into a curious error when trying to update Android SDK Tools to revision 21 from revision 20.0.3 . The ADT plug-in updated properly so now I am at a stand still until resolved. The initial error I got listed cmd.exe & java.exe as locking the directory, I forced closed cmd.exe and got this: If I force close java.exe then obviously my SDK Manager closes. SDK Manager Log: This is my work computer so I'd really like to avoid any down-time resulting from a reboot, just curious if anyone

Android sdkmanager available packages

二次信任 提交于 2019-11-30 05:46:55
问题 Is there a way to list the whole name of a package so I can install it. If I do a sdkmanager --list , I get a sample of the following: system-images;a...ult;armeabi-v7a | 4 | ARM EABI v7a System Image system-images;a...-10;default;x86 | 4 | Intel x86 Atom System Image system-images;a...pis;armeabi-v7a | 5 | Google APIs ARM EABI v7a Syste... system-images;a...google_apis;x86 | 5 | Google APIs Intel x86 Atom Sys... system-images;a...ult;armeabi-v7a | 2 | ARM EABI v7a System Image system-images

Travis-CI Android SDK license problems

断了今生、忘了曾经 提交于 2019-11-30 05:40:32
问题 I'm trying to build my Android project with Travis and currently I'm getting error: A problem occurred configuring project ':app'. > You have not accepted the license agreements of the following SDK components: [Android SDK Build-Tools 27.0.1]. I don't know how, but yesterday I could solve problem with that: before_install: - yes | sdkmanager "platforms;android-27" But now it doesn't help me. I will be grateful for any advice. Here is build URL https://travis-ci.org/madsunrise/luna-mobile

Android sys-img-armeabi-v7a-android-23 not found

[亡魂溺海] 提交于 2019-11-30 05:26:51
问题 I've been using the following command to install abi until today. echo y | android update sdk --no-ui --all --filter sys-img-armeabi-v7a-android-23 But now I got the following error. Error: Ignoring unknown package filter 'sys-img-armeabi-v7a-android-23' Warning: The package filter removed all packages. There is nothing to install. Please consider trying to update again without a package filter. Is anyone having the same issue? I'm using Android SDK r24.4.1. 回答1: There is an issue about this:

Could not find INI file in $ANDROID_AVD_HOME nor in $HOME/.android/avd

萝らか妹 提交于 2019-11-30 02:56:32
I cannot start a virtual devices on android SDK when I press the start button on AVD manager, this error shows on my screen: Starting emulator for AVD 'AVD_for_Galaxy_Nexus_by_Google' PANIC: Could not find AVD_for_Galaxy_Nexus_by_Google.ini file in $ANDROID_AVD_HOME nor in $HOME/.android/avd"! Here is the screen shot: You'll just have to set the ANDROID_AVD_HOME environment variable and restart Android Studio. just this command worked for me : sudo cp -R /root/.android $HOME I solved this problem, on Ubuntu, by finding where the .avd and .ini files from the AVD manager were downloaded. By

Downloading the Android support library from command line

[亡魂溺海] 提交于 2019-11-30 02:28:10
问题 How do you download the Android support library via the command line? For example: echo y | android update sdk --no-ui --filter "android-19" 回答1: echo y | android update sdk --no-ui --all --filter "extra-android-m2repository" 回答2: android command is deprecated now You can use sdkmanager instead like so: sdkmanager --install "extras;android;m2repository" 回答3: sdkmanager "extras;android;m2repository" worked for me. I ran in to the error: Warning: File /var/root/.android/repositories.cfg could

What is the difference between some “Android Development/SDK tools”?

我的未来我决定 提交于 2019-11-30 02:06:52
问题 What is the difference between the Android Development Tools and the Android SDK Tools and the Android SDK Platform-tools and the Android SDK Build-tools? And why not merge some of them into fewer groups? The 4 tools confused me when I downgrading/upgrading them. 回答1: Well, the Android Development Tools(ADT) is a plugin that is used in combination with Eclipse to develop apps.There is an ADT bundle that is a package that contains everything you need to start creating apps. However the SDK

What is difference between platform tools and SDK tools in Android development?

廉价感情. 提交于 2019-11-30 01:34:07
I can't get the difference between Android platform-tools and and Android SDK tools. can any one give my a brief? Ranjit Mishra SDK Tools is a downloadable component for the Android SDK. It includes the complete set of development and debugging tools for the Android SDK like emulator, sdcard, sqlite and apk builder etc.. Where as Platform-tools are used to support the features for the current android platform including adb which is acting like a bridge to communicate with emulator or device. 来源: https://stackoverflow.com/questions/8817554/what-is-difference-between-platform-tools-and-sdk-tools

How to install android Lollipop in eclipse?

隐身守侯 提交于 2019-11-29 22:55:51
This android Documentation says that installation procedure of android Lollipop. in third step they says that Select everything under the Android L Developer Preview section and click Install packages. But I unable to find any section like android L developer preview . Where to download it I follow all the steps from my eclipse juno. Paresh Mayani Note: Before installing latest tools in SDK manager, I would recommend you to update ADT plugin from Help -> Check for updates. Otherwise you would have to face issue described here: Update Eclipse with Android development tools v. 23 Answer: As