Questions tagged [adt]

Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications.

Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications.

ADT extends the capabilities of Eclipse to let you quickly set up new Android projects, create an application UI, add components based on the Android Framework API, debug your applications using the Android SDK tools, and even export signed (or unsigned) .apk files in order to distribute your application.

Note that Eclipse is no longer supported by Google for Android development.

More here.

2507 questions
0
votes
1 answer

Data Structure - Abstract data type VS Concrete data type

Abstract data type (ADT) : Organized data and operations on this data Examples : Stack, Queue what's meaning of Concrete data type (CDT)? please explain by Examples.
0
votes
0 answers

ADT Does'n recognize Nexus S 2.3.4 in Mac 10.6

Possible Duplicate: ADB Doesn't recognize Nexus S in Mac 10.6 I Just bought the Nexus S 2.3.3 and update it to 2.3.4. Then i tried to connect it with my MAC ( 10.6 ) though the device is not recognized when I select to be on "Debug Mode".…
Evan P
  • 1,767
  • 1
  • 20
  • 37
0
votes
0 answers

How to connect Advantage Data Architect using various sources(PowerShell, CMD, Python etc.)?

Can anyone let me know how to connect Advantage Data Architect using various sources(PowerShell, CMD, Python etc.)
0
votes
1 answer

SDK and AVD Manager will not start virtual device

I'm running Ubuntu 11.04 64bit, Eclipse 3.5.2, and Android Development Toolkit 12.0.0.v201106281929-138431 The "SDK and AVD Manager" dialog from the "Windows" menu seems to have a problem starting any emulators I have created; it does nothing when…
Brandon
  • 1
  • 1
0
votes
1 answer

Liferay 7.3 adt

Can anyone help me with this error i get when i create a adt template in liferay 7.3? Denied access to method or field setAttribute of class org.apache.catalina.core.ApplicationHttpRequest it shows in this line of my…
Erlinda
  • 11
  • 4
0
votes
1 answer

C++ evaluating an arithmetic expression in RPN format using ADT stack

Write a program that uses an ADT Stack to evaluate arithmetic expressions in RPN format. The contents of the stack should be displayed on the screen during evaluation. The allowed arithmetic operators are +, -, x, and /. What I have done so…
0
votes
1 answer

Deploy Android app to emulator fails with NoClassDefFoundError

I have the following environment: Eclipse v4.19.0 Android Development Tools v23.0.7 (Eclipse plugin) JREs: 8, 7, 6, 5 When I want to deploy test Android application to emulator, I receive following error message: Eclipse log: !ENTRY…
Ladislav
  • 320
  • 3
  • 10
0
votes
1 answer

Why am I getting an error in this Doubly Linked List?

So I've been working on doubly linked lists and I want to insert a value at the head of the list. We should have 2 cases: Case of an empty list. Case of a non-empty list. I think that what I'm doing is correct but still I am having an issue with…
P_M
  • 42
  • 6
0
votes
1 answer

Generic Data Structure problem with Integer comparison

I am trying to implement a generic ADT in Java, similar to a linked list. I had a problem when it is instantiated as Integer, because Find(E e) method fails in the comparison. It happens for values greater than 127. I suppose that it is caused by…
pedroasm
  • 11
  • 4
0
votes
1 answer

xml autocomplete fails

I use eclipse Galileo 3.6 it worked fine till yesterday when I updated ADT to the version 12. Now, when I try to use the quick code autocomplete (that's using Ctr+spacebar) such as "fill_parent" instead of "match_parent" or whatever else the new…
wocmultimedia
  • 259
  • 1
  • 6
  • 18
0
votes
0 answers

Pointer error in stack project's header file with C

i'm currently doing an assignment on making stack in the C language using a header, source, and main file. I'm trying out this code my professor made but there's an error in the header file i couldn't solve. Code: stack.h #ifndef stack_H #define…
0
votes
2 answers

How to use ADT to package an AIR application?

I just downloaded the AIR SDK, I just don't know how to proceed. Some sites on the internet tells me to execute the adt -package SIGNING_OPTIONS air_file app_xml [file_or_dir | -C dir file_or_dir | -e file dir ...] ... command line, but I just don't…
Lucas
  • 558
  • 11
  • 28
0
votes
3 answers

Problem while installing ADT on eclipse galileo (ubuntu)

I have eclipse Galileo installed my ubuntu machine. It was working fine with Android 2.2 ADT. But in between something happened and I was not able to run any program. So I uninstalled Eclipse and reinstalled. Now When I try to installed ADT, it is…
Gpathy
  • 316
  • 2
  • 6
  • 16
0
votes
1 answer

Can Eclipse ADT still be used for Android Development?

Can Eclipse in conjunction with ADT still be used for Android Development (and if yes, how do I go about it) or should I just keep using Android Studio? I tried setting up ADT on my Eclipse, but it wouldn't work (after many, many tries). Any advice…
0
votes
1 answer

String Subscript out of Range , Using Hashing ADT

I have ran into an issue with my Hashing program I keep getting a String Subscript out of Range error but it does not tell me what line it is causing it on. I would like to know what is causing this error and preventing me from being able to output…