eclipse-adt

Unable to integrate crashlytics in eclipse with ADT

两盒软妹~` 提交于 2019-12-22 11:17:10
问题 I followed setting up plugin to integrate crashlytics from this link https://www.crashlytics.com/onboard From eclipse, I logged into my fabric account and selected my project. Plugin made necessary changes to manifest and launch activity. It asked to build & run my app to complete step 1. But I am getting - ../kit-libs/com-crashlytics-sdk-android_crashlytics/bin(missing) ../kit-libs/com-crashlytics-sdk-android_crashlytics-core/bin(missing) ../kit-libs/com-crashlytics-sdk-android_beta/bin

What is the difference between the apk file in the bin folder and the apk file created through the Export option in Eclipse?

南笙酒味 提交于 2019-12-22 09:17:13
问题 What is the difference between the apk file in the bin folder and the apk file created through the Export option in Eclipse? For debugging purposes, can I directly use the file in the bin folder? Or is it recommended to always "export" the apk file? 回答1: Apk in bin folder is signed with a dummy key used for debugging (Debug Key). Using the export tool, you specify your own unique key (password protected) to identify your Apps. So, for testing and debuging, you can directly use the one in bin

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

Error in my R.java file cannot be resolved

感情迁移 提交于 2019-12-20 04:22:55
问题 I am using the Eclipse ADT bundle and recently updated my Android SDK tools and Android SDK platform tools then thereafter I tried creating a new project and I keep getting an error in my R.java file that seems trivial but I still dont understand how it keeps showing up since it is an autogenerated file. The error is: Syntax error, insert "}" to complete ClassBody . Keep in mind this is when I have just created the project. Also deleting the file and letting it autogenerate still yields the

Conversion to Dalvik format failed with error 1 - After updating Android SDK & ADT

狂风中的少年 提交于 2019-12-19 08:13:20
问题 After updating SDK and ADT for the latest release, I tried to run my application and Eclipse log the following error: [- RichReaderDemo] Dx UNEXPECTED TOP-LEVEL EXCEPTION: java.lang.IllegalArgumentException: already added: Lbr/com/digitalpages/renderer/NewReaderActivity; [- RichReaderDemo] Dx at com.android.dx.dex.file.ClassDefsSection.add(ClassDefsSection.java:123) [- RichReaderDemo] Dx at com.android.dx.dex.file.DexFile.add(DexFile.java:163) [- RichReaderDemo] Dx at com.android.dx.command

Eclipse and Android SDK issue “aapt.exe has stopped”

十年热恋 提交于 2019-12-19 05:22:19
问题 I'm having an issue on my Windows 7 64-bit machine with aapt.exe. It is throwing the following error: aapt.exe has stopped working Its not project related, Since i've tried multiple projects, it seems to happen with any workspace in Eclipse as well. New project or old project it just keeps failing when building and running my application. I'm using the latest JDK-6 with the latest Android SDK 22.0.1, with Build Tools and Platform tools. Deleting the entire SDK and Eclipse and unziping and

While extracting adt-bundle-windows-x86_64-20140702 this error from windows 8

被刻印的时光 ゝ 提交于 2019-12-19 02:49:26
问题 **While extracting adt-bundle-windows-x86_64-20140702 from windows 8 this error occurred (! D:\Bela\Work\adt-bundle-windows-x86_64-20140702.zip: Cannot create folder adt-bundle-windows-x86_64-20140702\sdk\tools\lib\monitor-x86\features\com.android.ide.eclipse.hierarchyviewer.feature_23.0.2.1259578\META-INF\maven\adt.group\com.android.ide.eclipse.hierarchyviewer.feature The filename or extension is too long. ! D:\Bela\Work\adt-bundle-windows-x86_64-20140702.zip: Cannot create adt-bundle

Avoid hardcoding the debug mode; Warning in Android Manifest

只愿长相守 提交于 2019-12-18 18:51:04
问题 After updating my ADT plugin to version 17 I'm getting a warning massage saying Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one There wasn't such message before the update. How can I avoid this warning message ? 回答1: Yup, just noticed this too. I removed the debuggable attribute from the manifest, and I can now both run the app in debug mode and export it to a market-ready APK file without changing any code. Slick! Full explanation

How to install the Android ADT Plugin in Eclipse?

泄露秘密 提交于 2019-12-18 14:08:34
问题 I followed the instructions on ADT Plugin for Eclipse but I got this message when installing in Eclipse: Cannot complete the install because one or more required items could not be found Software being installed: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) Missing requirement: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) requires 'org

Adding Sliding Tabs using Support Library v7:21 with Toolbar in Android Developer Tools for existing project

天大地大妈咪最大 提交于 2019-12-18 12:26:33
问题 I have already read the information in this link: Use Tab with new ToolBar (AppCompat v7-21) and did a lot of research on the same. But the problem is the SlidingTabLayout project is using Gradle build files and structure. I want to add the tab layout using eclipse. How do I do this? I did run the SlidingTabLayout project in Android Studio though. But how do I add Tabs to Toolbar in v7:21? Note: All this needs to be done in a existing project, which has everything setup and warns me of the