adt

Android Studio vs Eclipse with ADT (2015) [closed]

荒凉一梦 提交于 2019-11-30 06:18:48
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 years ago . As of 2015, I see that Android studio is an official IDE for developing android applications according to information on their official site and on each page of their site, there is a note suggesting to go for Android studio rather than Eclipse with ADT. Note: If you have

从adt bundle更换到android studio

柔情痞子 提交于 2019-11-30 05:14:08
使用android studio步骤 一、下载android studio,翻墙去官网下载,速度忒慢还总断,找到一个很好的网址: http://www.androiddevtools.cn/ ,里面安卓开发的工具一应俱全 二、下载gradle,也是在上面的网址下载 三、配置gradle的path环境变量,配置到bin目录下 四、解压android studio的zip包,在bin目录里面运行studio64.exe(我是64位) 五、把adt bundle的项目引入studio,首先要在adt中export项目,选择如下图 成功后,如下图,选择这项,解析的时候会有些慢,有可能又会自动下载其他版本的gradle,这点很烦人,我当时是在gradle路径,自己下载了一个对应版本放进去的。 六、构建项目,如果提示gradle版本不匹配,需要修改build.gradle配置文件中的、 dependencies { classpath 'com.android.tools.build:gradle:1.2.+' } 七、编译成功后,就可以运行项目了 android studio开发几大基本功能 一、SVN studio自带svn工具,非常方便,可以check项目,提交,恢复、对比等等 二、查看logcat和内存、cpu使用情况 三、字体修改,分别是studio各项工具的字体和编辑器的字体 四

How smart is Eclipse / ADT when it comes to Android Library Projects?

筅森魡賤 提交于 2019-11-30 02:14:54
问题 So, I've got a handful of "Utility" style classes in some of my projects. I'm curious if I can move them to an Android Library Project that contains all or most of my non-app specific glue code (wrappers and interfaces, mostly). So, my question is what happens to the files I don't need in that library. I know Android Library Projects basically just copy their code into the other project, so if I say use 25% of the code in my "general purpose" library, will my app actually contain the bytecode

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

Use new firebase sdk in android eclipse project

邮差的信 提交于 2019-11-30 02:04:55
new firebase with awesome features was just announced, but according to documentation ( https://firebase.google.com/docs/android/setup#prerequisites ) android studio (as well as gradle) is required now. For now in my cocos2d-x apps I have to use ADT/Eclipse to build apps, because gradle isn't supported yet (however cocos2d-x team is working on it). I'm now using an older version of the sdk, which is just a jar file. Is there a way to use new firebase in eclipse? What worries me the most is that plugin: apply plugin: 'com.google.gms.google-services' Francisco Durdin Garcia Take a look at this

signing applications automatically with password in ant

陌路散爱 提交于 2019-11-30 01:48:44
Currently i have a build process in place for all of our apps using ANT . I am adding the ability to build a release now and sign the apps. Currently i have the ant.properties with the correct properties. And it is in all the projects. And when i build the projects it works fine. Signs, aligns and gives me what i need. HOWEVER, we have many apps and they are all built in the build process. So the problem is, the user is having to type the password in at the Please enter keystore password and the Please enter password for alias . I was wondering if there was a way to get ant to enter that

Android ADT 23 Update - Cannot complete the install because of a conflicting dependency

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 01:40:42
First, ADT update errors are frequently asked but I have tried to do everything mentioned in those other Question-threads but no success (with https and without, ADT23.zip download too). This is what I got when trying to update: Cannot complete the install because of a conflicting dependency. Software being installed: Android DDMS 23.0.0.1245622 (com.android.ide.eclipse.ddms.feature.feature.group 23.0.0.1245622) Software currently installed: Android Developer Tools 22.6.2.v201403212031-1085508 (com.android.ide.eclipse.adt.package.product 22.6.2.v201403212031-1085508) Only one of the following

Eclipse ADT Plugin - No Build Target Available

◇◆丶佛笑我妖孽 提交于 2019-11-30 01:31:55
问题 When trying to create a new Android Project with Eclipse, there is no Build Target available. I have: Installed ADT Plugin Created a virtual device Installed Android SDK, installed platform + platform tools Set the Android SDK path to Eclipse. I have tried every fix I have found, but they just tell me to do those things I just mentioned. EDIT: In Window -> Preferences -> Android, it accepted my path, but there is No target avaible there. And yes, I have installed: Android SDK tools, revision

eclipse, new android application project, “next button” is disabled in section that wants the project name

你。 提交于 2019-11-30 01:13:43
问题 I want to start programming for android so I downloaded Eclipse and installed ADT Plugin on it and downloaded the Android SDK Now when I want to create a new android project in "File->New->Android Application Project" it directs me to a page that wants "Application name" & "Project name" etc. so I filled the fields like this: Application name: Hello Project name: Hello Package name: test.example.hello Minimum required SDK: API8: Android 2.2(Froyo) Target SDK: API16: Android 4.1(Jelly Bean)

What does the command “Fix Project Properties” exactly do?

拥有回忆 提交于 2019-11-30 00:34:16
问题 What does the "Project->Android Tools->Fix Project Properties" Eclipse command exaclty do? I have read many times to use it, mostly in answers related with Android R generation problems in Eclipse, but for me it is like magic, I press on it and I suppose it Fixs some Project Properties, but nothing happens... no visual feedback, no info on which project properties has been fixed... anyone can give a bit of insight on what does it exactly do? Thx 回答1: By looking into ADT source code,