[android-developers] Anyone stuck manually configuring Android devices?

2015-07-03 Thread GregM
I have to setup a manufacturing process that configures several Android 
phones per day, it takes over an hour to do each one. I have to uninstall 
apps, install new apps, adjust settings etc...

Does anyone else have this problem?

I'm on my way to solving it using unit testing scripts, but it would help a 
bunch to know if other developers are suffering though manual configuration 
and what they are trying to setup their Android devices to do.

Thanks much! 


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] NFC Application

2012-07-20 Thread GregM
Hi,

I suggest looking at the example here:

https://github.com/gast-lib/gast-lib/blob/master/app/src/root/gast/playground/nfc/NFCInventoryActivity.java

The code helps you write an Activity that helps the user create the right 
NFC tags. Just copy and paste the code into your app and change the MIME 
type and what data it writes to the NFC.

Greg

On Thursday, July 19, 2012 11:27:50 PM UTC-4, rmq wrote:

 What kind of Application you need to develop. 
  
 You can donwload some exmaple applicaiton from the path 
  
 http://developer.android.com/tools/samples/index.html and also go through 
  
 http://developer.android.com/guide/topics/connectivity/nfc/nfc.html
  
 Which is the protocol you will be supporting with NFC . I wanted to know , 
 if it NDEF category or ISO 15693 or ISO 14443.  If the card does not 
 support NDEF then you need to do bit differently 
  
 Regards
 Raunaque 


  
 On Thu, Jul 19, 2012 at 11:45 PM, TreKing wrote:

  I want to develop a NFC based application and don’t know where to 
 start. Can you give me some suggestions / help, any useful links.


 http://developer.android.com/guide/index.html


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Speech Recognition in Android

2012-07-20 Thread GregM
Hi,

This code library helps you with speech recognition and in particular has 
some nice code to help handle matching hard to match words using Soundex 
and Stemming and other things. Check it out here:

https://github.com/gast-lib/gast-lib

To get started quickly, I suggest just extending this 
Activityhttps://github.com/gast-lib/gast-lib/blob/master/library/src/root/gast/speech/SpeechRecognizingAndSpeakingActivity.java

Greg


On Thursday, June 23, 2011 9:22:36 PM UTC-4, davemac wrote:

 Recognizing speech is really hard to do well. What you get with 
 Google's Android Recognizer is pretty good. If you want to consider 
 another, you could look at Sphinx. 

 - dave 
 www.androidbook.com/proandroid3 

 On Jun 23, 6:05 pm, Droid rod...@gmail.com wrote: 
  The speech recogniser often makes mistakes, so you have to think about 
  how to handle wrong words. Otherwise its quite easy to feed voice 
  recognition to text. 
  There is lots of code on Google to do that. I have a loop that asks if 
  the text is correct or not. Well, it works fine, but most users do not 
  like using it unfortunately. I suppose because its slow. 
  
  On Jun 23, 9:30 am, khanh_qhi™ khanhqh20...@gmail.com wrote: 
  
  
  
   Hi, 
   I need build a small application about Speech Recognition based-on 
 Android 
   platform, such as: port speech input to text. 
   Hence, is there a way/open source that to do for this? 
  
   --- 
   Regards, 
   Khanh.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Installation error for Unknown reason -102

2010-11-12 Thread GregM
My app does not install because of this:
 Unknown reason -102

How do I find out what this error means?
Any guesses?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Microphone for demoing speech recognition?

2010-09-17 Thread GregM
Hi,

Does anyone have a recommendation for a microphone to use to demo
speech recognition.

Wants:
 It has to work in a noisy environment.
 It should have a way to output the sound into an external speaker

Thank you!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] JSAPI (javax.speech.recognition) for Android?

2010-06-24 Thread GregM
Hi,

The android speech recognizer API does not support grammars. This is
very sad.

Has anyone tried to implement JSAPI (javax.speech.recognition) on top
of the Google's speech recognition API?
It seems like a worthy cause.

Links:
Google API: 
http://developer.android.com/reference/android/speech/package-summary.html
Java's speech recognition API
http://java.sun.com/products/java-media/speech/forDevelopers/jsapi-guide/Recognition.html

I'm interested to hear if anyone can provide links or opinions on the
feasibility.

Greg

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Speech Recognition

2010-06-02 Thread GregM
Someone please answer this question!

On May 24, 7:35 pm, minhaz minh...@gmail.com wrote:
 Hi

 In my emulator isRecognitionAvailable method from SpeechRecognizer
 class returns false and also when i run VoiceRecognition.java sample
 code on API level 8 platform 2.2 i got Recognizer not present
 message. Any idea hints whats going on?

 If problem is Speech recognition is not available in my emulator then
 how to install it in my virtual device?

 regards,

 /minhaz

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Speech recognition: prevent or automatically handle No matches found dialog

2010-05-28 Thread GregM
You still can't give the speech recognizer a grammar, so you can't
tell it what to expect. You are right though, even some canned, yes/no/
cancel or digit recognizers would be a huge help. Android has an
AlertDialogBuilder, why not have a SpeechDialogBuilder with some
simple options?

The good news is that it appears that the 2.2 api does give us far
greater control over the recognition dialog. For that I am quite
overjoyed.

On May 26, 5:18 pm, moa mich...@jixel.com wrote:
 have the 2.2 api changes done anything to help with this?

 Another feature I always wanted was the ability to define the valid
 responses for the engine to match against; yes/no and so. so you don;t
 get things like snow coming back as a response.

 Also, defining digit recognition only and so.

 Don't see any movement on this yet :(

 On May 19, 1:10 am,GregMgrego...@gmail.com wrote:



  I had this same problem. Since the speechrecognitionrequires
  clicking the dialog window when an error occurs, my app cannot be
  truely hands free. This is a big problem if you are trying to use
  speechrecognitionto save the user from having to look at the device.

  Calling finishactivity works but I hope google will add better
  controls in the future.

  Greg

  On May 18, 12:48 pm, pac patty.c...@gmail.com wrote:

   Thanks for your information.

   I ended up having the app sleep for several seconds and then do a
   finishActivity() because if nothing happened by then, some error must
   have occurred.

   On Apr 20, 2:28 pm, Dianne Hackborn hack...@android.com wrote:

Sorry, the current API does not provide this kind of control.

On Tue, Apr 20, 2010 at 10:45 AM, pac patty.c...@gmail.com wrote:
 My speechrecognitionapp needs to work without human intervention, so
 the situations where the No speech heard or the No matches found
 dialogs come up and require a button press are a problem.

 Is there a way to prevent this dialog from displaying?

 Is there a way to programming perform the button click?

 Is there a way to programmatically close the dialog?

 This is how I'm firing the RecognizerIntent:

        Intent intent= new
 Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
        intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
                        RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
        intent.putExtra(RecognizerIntent.EXTRA_PROMPT, Speech
recognitiondemo);
        startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to 
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see 
and
answer them.

--
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group 
athttp://groups.google.com/group/android-developers?hl=en

   --
   You received this message because you are subscribed to the Google
   Groups Android Developers group.
   To post to this group, send email to android-developers@googlegroups.com
   To unsubscribe from this group, send email to
   android-developers+unsubscr...@googlegroups.com
   For more options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-developers@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.com
  For more options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Speech recognition: prevent or automatically handle No matches found dialog

2010-05-18 Thread GregM
I had this same problem. Since the speech recognition requires
clicking the dialog window when an error occurs, my app cannot be
truely hands free. This is a big problem if you are trying to use
speech recognition to save the user from having to look at the device.

Calling finishactivity works but I hope google will add better
controls in the future.

Greg

On May 18, 12:48 pm, pac patty.c...@gmail.com wrote:
 Thanks for your information.

 I ended up having the app sleep for several seconds and then do a
 finishActivity() because if nothing happened by then, some error must
 have occurred.

 On Apr 20, 2:28 pm, Dianne Hackborn hack...@android.com wrote:





  Sorry, the current API does not provide this kind of control.

  On Tue, Apr 20, 2010 at 10:45 AM, pac patty.c...@gmail.com wrote:
   My speech recognition app needs to work without human intervention, so
   the situations where the No speech heard or the No matches found
   dialogs come up and require a button press are a problem.

   Is there a way to prevent this dialog from displaying?

   Is there a way to programming perform the button click?

   Is there a way to programmatically close the dialog?

   This is how I'm firing the RecognizerIntent:

          Intent intent= new
   Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
          intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
                          RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
          intent.putExtra(RecognizerIntent.EXTRA_PROMPT, Speech
   recognition demo);
          startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);

   --
   You received this message because you are subscribed to the Google
   Groups Android Developers group.
   To post to this group, send email to android-developers@googlegroups.com
   To unsubscribe from this group, send email to
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

  --
  Dianne Hackborn
  Android framework engineer
  hack...@android.com

  Note: please don't send private questions to me, as I don't have time to
  provide private support, and so won't reply to such e-mails.  All such
  questions should be posted on public forums, where I and others can see and
  answer them.

  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-developers@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.com
  For more options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Speech Recognition makes a beep when the user Cancels. This is bad.

2009-11-14 Thread GregM
If the user cancels the speech dialog, it makes a little beeping
sound.

You might think that beeping sounds is an innocent little thing, but
it broke my app.

See, after my app is done speaking, it starts listening again for the
user to get its attention. When the app beeps, it assumes this is the
user getting the apps attention. Hence, the app gets into an infinite
loop where the user cancels, it hears the cancel beep, it brings up
the speech dialog again, the user cancels again, the app beeps, the
app brings up the speech dialog again

My question: How do I make the speech dialog stop beeping?

Bigger question: In general, how do I gain better control over the
android speech dialog? There's nothing I can do currently, but launch
it.

Thanks!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-02 Thread GregM

My app is Digital Recipe Sidekick. www.digitalrecipesidekick.com It's
free.

Here's a quick description:
The DRS is a practical kitchen gadget that helps you collect and
follow recipes. It has a cookbook that you can edit directly and
easily expand. It also has an interactive recipe reader, which you
control with voice commands so that you can remain focused on cooking
and don’t have to awkwardly stop to look at a recipe.

I developed it because there are many cooking apps in the world, but
none are really useful. My complains about the other cooking app are:
Who wants to meticulously track the inventory of your pantry? or why
be limited to a hand full of recipes someone picked out? or do I
really want my nice expensive G-phone to get all sticky as I try to
scroll while cooking some cookies? My app attempts to solve all these
problems by being voice controlled and editable.

As for App development. My experience can be summed up as: Overjoyed
when Google made something incredibly easy, and frustrated at all the
many Android APIs and methods I had to learn.
 For example, Preferences: really easy, Starting the Speech
Recognition: easy, Deploying/debugging/emulating: easy and quite
helpful, properties and raw files: easy, Setting up a database: easy,
using clipboard: easy, activities and intents, no issues really
 Hard: Making the UI look the way I want: For example, if you have one
button that has fill_parent and a second button that is in the same
layout, but has the min_width field set, how come the Android UI
never shows the second button. There were many, many instances, where
I had to do trial and error to get the UI to look good. Oh and there
is XML vs Code configuration where you can't do the all the operations
in code that you can in xml.
 Making the Speech work well: Google let me down, you really can't
control the speech Recognition very well.
 Database: No support for Object to Relational Mapping, so I had to
code all that myself, which was painful.

ADC experience: great! They gave me plenty of time. I had time to test
but only on my phone. It greatly altered my development cycle though.
Normally, I would have released early and then gotten feedback, but
instead since I was developing for the challenge, I had to hold back
my work for months and just imagine what the users will say. I'm
curious to see how my app will be liked by users, so far only a
handful have seen it.

I look forward to seeing and testing everyone else's apps. I'm excited
to see all the games and augmented reality stuff everyone is doing.

Cheers

Greg

On Sep 2, 9:54 am, Rud rudmerr...@gmail.com wrote:
 Simon,

 No, I agree with you about the calm. My game is into ADC2 and I'll see
 what happens with it. I do look forward to hearing people's reactions
 and what they find. I will put it on the market Real Soon Now. I'm a
 pro-developer having started in 1968 but since I am retired there is
 not a lot of pressure behind this effort. I was able to have fun doing
 the work. If more comes then so be it.

 Rud

 On Sep 2, 5:26 am, longhairedsi longhaire...@googlemail.com wrote:



  Hi,

  I think i may be alone in this but I like the fact that I can't
  make any more changes to the app now it's submitted. I can move on and
  view any mods as the next version of my app which the maket users can
  appreciate.

  MicroJam will apear on the market sometime soon.

  Simon
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Clarification on Unpublished APIs, specifically the TTS library

2009-08-30 Thread GregM

The guidelines say:

It's very important that your apps only use published APIs. Some
users might be judging your submissions on new phones you haven't seen
or tested. If your apps depend on unpublished APIs, they might not
work on some of these phones.

Does this refer to unpublished Android APIs?

The reason I ask is that my App uses the TTS library for speech
synthesis. (http://code.google.com/p/eyes-free/wiki/
TTSLibraryExplanation). Would you consider the TTS to be an
unpublished API? When my app first loads up it will ahve to download
some speech data files to the SD card.

Thanks
Greg

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---