Hi Niko, Thanlk you for the reply. In the particular activity that is crashing, the following classes along with some sqlite database stuff are used:
import java.text.SimpleDateFormat; import java.util.Calendar; import android.app.AlertDialog; import android.app.DatePickerDialog; import android.app.Dialog; import android.app.TimePickerDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.res.Resources; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.CheckBox; import android.widget.DatePicker; import android.widget.EditText; import android.widget.ImageButton; import android.widget.LinearLayout; import android.widget.SeekBar; import android.widget.Spinner; import android.widget.TextView; import android.widget.TimePicker; import android.widget.Toast; import android.widget.AdapterView.OnItemSelectedListener; It's quite straight forward stuff I'm doing in the activity, just taking in time & date and other info from dialogs & widgets, and querying & writing to the database (which is done elsewhere in the app and the customer reports is working). Don On Nov 17, 8:12 pm, niko20 <[email protected]> wrote: > I do remember seeing a post yesterday where someone that was using > AudioRecord found out that on the Moment it only supports 8Khz sample > rate, and he had not correctly checked for error codes in the > getMinBufferSize call to AudioRecord. Are you perhaps using that API? > > -niko > > On Nov 17, 2:05 pm, Don <[email protected]> wrote: > > > Hi All, > > Has anyone had any problems with their applications crashing on the > > Samsung Moment? > > > I have a customer who is reporting that my application keeps crashing > > at a certain stage on their Samsung Moment. > > The problem is I can't reproduce the crash on any of the following > > devices: > > - HTC Tattoo > > - HTC Magic > > - HTC Hero > > - Motorola Droid > > > The customer's firware is at Android 1.5. I've tested my app on the > > simulator with 1.5 and no problems. > > > At this stage I'm stumped! Without access to a Samsung Moment, I'm not > > sure what else to do! > > > I have sold over 50 copies of my app and this is the first customer > > who has reported any problems, so I'm reasonably confident it's not a > > programming issue with my app. > > > Any advice on this would be appreciated. > > > Don -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

