Questions tagged [android-sdk-2.3]

For issues relating to developing with the android SDK, version 2.3.

Android is Google's software stack for mobile devices. The Android 2.3 platform introduces many new and exciting features for users and developers.

  1. UI refinements for simplicity and speed
  2. Faster, more intuitive text input
  3. One-touch word selection and copy/paste
  4. Improved power management
  5. Control over applications(Uninstall and Info buttons at home screen)

    Please use the Android-specific tags such as [android-intent], not [intent]. For non-developer questions, see https://android.stackexchange.com.

Read more about Android 2.3

481 questions
8
votes
2 answers

What are the "paused" values in GC_CONCURRENT log messages?

I'm trying to explore the behavior of the new concurrent garbage collector in GingerBread (2.3). Could someone please explain these example log lines in details (especially the "paused" parts of GC_CONCURRENT and GC_FOR_MALLOC)? 12-24 10:20:54.912…
user289463
  • 2,804
  • 3
  • 20
  • 21
8
votes
1 answer

Unity3D build error

Error building Player: Win32Exception: ApplicationName='E:/adt-bundle-windows-x86_64-20131030/sdk\tools\zipalign.exe', CommandLine='4 "C:\Users\Owner\Desktop\Folders\Unity exe\bbt -…
Vibhor Roy
  • 163
  • 2
  • 6
8
votes
2 answers

Create the UI thread manually in Android in order to increase its small stack size

I'm struggling with StackOverflowErrors in the main UI thread (related question). My app targets Android 2.3+. On Android 4 everything is fine, but I'm getting crashes on 2.3.3 when the view layout is drawn. The obvious answer is to optimize my view…
talkol
  • 12,564
  • 11
  • 54
  • 64
8
votes
1 answer

Android - put an image name "package" throws compile time error

I am trying to put an image name "package.png" in my drawable folder. As soon as i paste them it into the folder it is throwing following error: [2012-05-26 12:40:30 - MyApp] res/drawable-mdpi/package.png:0: error: invalid symbol: 'package' But as…
mudit
  • 25,306
  • 32
  • 90
  • 132
7
votes
4 answers

Call recording/processing service! - Android

Hello, Im working on a solution for Android that will record calls (both out and incomming) and will further process recorded data (at end point of my application, no audio-file data will be hold on phone memory). I have implemented…
7
votes
4 answers

Android 2.3 emulator orientation changes

I ran into a bit of a problem, which I think is related to the emulator itself. I have put this code right at the top of my onCreate method in one of my activities: Log.d(Const.TAG, "onCreate orientation: " + getRequestedOrientation()); Everytime I…
Felix
  • 88,392
  • 43
  • 149
  • 167
7
votes
1 answer

What is m2repository folder in local android SDK?

I was trying to look for a list of version for android support library, and finally i found m2repository and support folders in android folder. What is that?
7
votes
0 answers

How to include 3rd party libraries inside the custom library module in android

I'm using android studio 1.5 and i'm creating general sdk library like paypal/facebook sdk, this plugin include 3rd party library like QRcode scanner,okhttp for networking. Once i include in these plugins inside custom library gradle file it's…
Lokesh G
  • 831
  • 11
  • 19
7
votes
3 answers

Why Unity3d can not find Java for Android SDK

For days now I;ve been getting the error below with Unity 3d v4.3.2f1 jdk1.8.0_11 Android SDK v0.8 Error building Player: UnityException: Unable to find suitable jdk installation. Please make sure you have a suitable jdk installation. …
Yogurt The Wise
  • 4,379
  • 4
  • 34
  • 42
7
votes
1 answer

How to display a moving track on Android device

I want to plot my track using GPS on an Android device. I have no problem displaying a completed route but am finding it difficult to show the track as I'm moving. So far, I've found 2 different ways to do that but neither are particularly…
Doug Conran
  • 437
  • 1
  • 5
  • 17
7
votes
3 answers

Tips to shift from App Inventor to Eclipse

I am very good with AppInventor to build Android apps. I have good knowledge of C++ and little knowledge of Java and GUI building in Java. Suggest me how should I shift from App Inventor to Eclipse to build Android apps? Which path should I follow?…
6
votes
3 answers

Android Bluetooth accept() / connect() with already paired devices

I am having trouble connecting two Android devices via Bluetooth, which happens only when they have been paired before. I am running one as the server and the other as the client. Here is the sequence of things on the server side: Check various…
o.c.
  • 271
  • 1
  • 3
  • 12
6
votes
3 answers

DDMS throwing ADB error since SDK API 9 upgrade

I upgraded to Gingerbreak 2.3 SDK today and started receiving this error when I try to run DDMS: Failed to get adb version: Cannot run program "adb": CreateProcess error=2, The system cannot find the file specified. How can I fix this? Running…
Bryan Denny
  • 27,363
  • 32
  • 109
  • 125
6
votes
1 answer

what is SDK Patch Applier in android SDK Tool?

what is this tool for and why we need it ? I search a lot but don't get any word about this new tool i found in my sdk tool list.
6
votes
3 answers

Android ActionBar compat overflow menu not showing on sdk 10

Hello and thank you for the time you take in reading this question. I am trying to develop an android app which will use the ActionBar compat library. I have followed (as far as I see it) all the recommendations when using the compat library. My…