adt

Can't change default output folder

感情迁移 提交于 2019-12-22 04:46:34
问题 all I can't change the default output folder in Eclipse. When I open "Properties" -> "Java Build Path" -> "Source", the default output folder is <project_name>/bin/classes I changed it to <project_name>/bin save and clean-build this project. It changed back to <project_name>/bin/classes This happened after I updated my ADT plugin to 15.0.1 Some configurations: Eclipse: Eclipse IDE for Java Developers<br/> Version: Indigo Service Release 1<br/> Build id: 20110916-0149 ADT Version: 15.0.1

How to set ADT system property in eclipse so it always runs

你。 提交于 2019-12-21 23:10:46
问题 I am interested in running adb shell setprop log.tag.Volley VERBOSE at all times so i can see always see these debug messages inside logcat. Is there somewhere I can perm specify this? I don't want to open a command prompt every time to set this. 回答1: to make my comment clear and visible as answer: using leading word persist. prior to your package should lead to a persistent property. adb shell setprop persist.your.package.name VERBOSE sources: question in this post and Mike Lockwoods first

Eclipse (with adt) won't see/recognize a running avd

老子叫甜甜 提交于 2019-12-21 21:24:00
问题 I have been trying this for a week or so now. I have followed the tutorial to get hello android working but while an AVD starts the program doesn't run. I am running Windows 7 64 bit with eclipse 3.5.2 running adt 0.9.9 and SDK r7. the sdk is installed in C:\android-sdk-windows eclipse is installed in C:\eclipse What i can do: create an AVD (through console and the manager) i can compile the code Run my code (on automatic it will start an avd) Bad stuff that happens when i run my code on

Eclipse Task List - Mark Completed is not Active

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-21 17:43:34
问题 The Title says it all. I am using ADT and I have a source code full of //TODO tags. I can go through the tags using the Tasks View but when I want to mark a task as completed the Mark Completed option is grayed out. what is the cause of this and how can I fix it ? deleting the //TODO tags for completed tasks is not an option, I want to be able to review my changes later. 回答1: Create another task flag in Preferences->Java->Compiler->Task Tags, say // DONE . Then when you fix a TODO, change it

Does the ADT plugin automatically create an ant build file?

廉价感情. 提交于 2019-12-21 16:33:45
问题 I created an Android project a few months ago and now have to automate the build process with Hudson. The Android dev guide mentions a build.xml file that gets created when you generate a project (http://developer.android.com/guide/developing/other-ide.html) but I dont see one in my project. Will I have to create this by hand or can I run a command to generate it? 回答1: The ADT plugin doesn't generate an Ant file. The android command will generate an Ant file when you create a new project from

How do I configure the ADT plugin in the eclipse

六眼飞鱼酱① 提交于 2019-12-21 07:56:16
问题 On the developer website there are these instructions: Configure the ADT Plugin Once Eclipse restarts, you must specify the location of your Android SDK directory: In the "Welcome to Android Development" window that appears, select Use existing SDKs. Browse and select the location of the Android SDK directory you recently downloaded and unpacked. Click Next. Your Eclipse IDE is now set up to develop Android apps, but you need to add the latest SDK platform tools and an Android platform to

No Android project type in Eclipse->File->New-Project

℡╲_俬逩灬. 提交于 2019-12-21 07:06:12
问题 I am running CentOS 5.5 x86_64 with JDK 1.6, Eclipse Galileo, and the 0.9.7 ADT is installed; however, after installation, the Android project type is not available. I have checked in the installed packages list and it is installed. Anybody encounter this problem before? Could it be due to my use of the 64-bit java VM that is installed on my system? 回答1: This usually happens when you dont select any android SDK in "Preferences > Android" You just have to reset the perspective in eclipse,

Installing ADT plugin in Eclipse for Android development

扶醉桌前 提交于 2019-12-21 06:47:25
问题 when I tried to install the ADT to eclipse (indigo) the following error came up: Cannot complete the install because one or more required items could not be found. Software currently installed: Shared profile 1.0.0.1316138547364 (SharedProfile_epp.package.java 1.0.0.1316138547364) Missing requirement: Shared profile 1.0.0.1316138547364 (SharedProfile_epp.package.java 1.0.0.1316138547364) requires 'org.maven.ide.eclipse [1.0.100.20110804-1717]' but it could not be found What does this mean?

trouble running the emulator

只谈情不闲聊 提交于 2019-12-21 06:00:12
问题 If I run my application when there is allready an emulator running, the applications isn't run on the existing AVD, but a new one is started. [2011-12-22 18:03:15 - Report_v6_2] ------------------------------ [2011-12-22 18:03:15 - Report_v6_2] Android Launch! [2011-12-22 18:03:15 - Report_v6_2] adb is running normally. [2011-12-22 18:03:15 - Report_v6_2] Performing mast.avalons.ReportActivity activity launch [2011-12-22 18:03:15 - Report_v6_2] Automatic Target Mode: Preferred AVD 'Acer' is

Eclipse: java.lang.NoClassDefFoundError for JDK classes in an Android project

纵然是瞬间 提交于 2019-12-21 05:37:10
问题 First, I want to mention that I read many stackoverflow posts about NoClassDefFoundError , and I also read about it in many other blogs and websites, but the solutions that people offered didn't fix it. I am running Eclipse 64-bit with the ADT plugin version v21.0.1-543035 on Ubuntu 12.10 64-bit . Everything is 64-bit, Ubuntu, Eclipse and the JRE and JDK that I use (jdk1.6.0_38). I wrote a very small Android App that needs a class from the JDK to run. I isolated the problem a little, and