• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. G

    Apps How to debug an application

    when I am trying to debug application I am getting following mesage "Application 'com.todolistnew' does not have the attribute 'debuggable' set to TRUE in its manifest and cannot be debugged." I was unable to find the place where 'debuggable' attribute is to be set Can anybody help me...
  2. G

    Apps Run Application in background

    Hello Friends, I want to develope an application in which if SIM card is changed then the application should sent SMS to a predefined number from the new SIM. User should not know that SMS are being send from his/ her mobile. For this application needs to run in background. How can I achieve...
  3. G

    Apps Run Application in background

    Hello Friends, I want to develope a project in which if SIM card is changed, then messages should be sent from new SIM card to a predefined number. User should not know that the SMS are being send from his mobile. So the application needs to run in back ground. How can I achieve this? Thank...
  4. G

    Apps This code works on emulator but doesnt work on device

    I am using API 4, this code works properly on emulator but doesnt work on device (HTC Hero). Can somebody help me plz?? package com.SampleProject2; import android.app.Activity; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context...
  5. G

    Apps Force Close Message

    package com.SampleProject2; import android.app.Activity; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.database.sqlite.SQLiteDatabase; import...
  6. G

    Apps Application is not getting open

    Hello Everyone, I am trying to just diplay single image on canvas the code is like following... package com.displayImage; import android.app.Activity; import android.content.Context; import android.graphics.drawable.Drawable; import android.os.Bundle; public class DisplayImage extends...