[android-developers] Consistent Google Play Billing error in TWA/PWA: clientAppUnavailable (Android 13, API 33 and above)

2023-06-21 Thread Joe Puccio
We recently released to our TWA (our app ) to customers and on day 1 are experiencing a very consistent issue with Google Play Billing. When we try to call getDetails() on a SKU as well as when we call list

[android-developers] How do I optimize "Cold start time"? | Newbie - Still learning.

2022-08-12 Thread Joe Hall
I am a brand new Android developer. I have just finished my first app using Android Studio. It is a very simple app that displays a special clock created in JavaScript. I used WebView to load and display the HTML/CSS/JS assets. I learned pretty much all of this on YouTube. Everything runs fi

[android-developers] microsoft support number

2018-03-17 Thread joe root
microsoft support number Microsoft and its suite of products are known to be quality-based in every aspect, and more often than not businesses revolve around Microsoft Office suite. To the healthy running of not only big businesses but also small businesses

[android-developers] Native development or ReactNative?

2017-02-08 Thread Joe Philips
Hi everyone, is there any one who developed with react native? What do you think about this new framework? Do you think that it is a good choice to develop a mobile application or it's better to go with the native development? Is it stable enough to be used? -- You received this message becau

[android-developers] How to trigger a native Share intent on Android from the web?

2016-08-02 Thread Joe Law
This is the link one year ago that make share intent workable by adding browsable: https://paul.kinlan.me/sharing-natively-on-android-from-the-web/ Is there any update on the status of share intent? Is it possible to allow trigg

[android-developers] Music streaming via Wifi (DLNA/UPNP)

2016-03-30 Thread Basti Joe
Hi, I would like to stream music with my android phone via wifi (upnp/dlna) to my AV receiver. I do not understand why this feature is not implemented in android, as bluetooth streaming is available. And rooting my device is no option as i don't want to lose my guarantee. Comparing to Apple's Air

[android-developers] Android UI Design resources?

2015-01-22 Thread Joe Seeley
I'm easily able to find programming resources for Android, but not so much on UI design. I have looked through most of the official Google stuff http://developer.android.com/guide/topics/ui/index.html, but haven't seen much beyond that. Are there any really good books or blogs in this area? I

[android-developers] How long will Android/Google Maps v1 be supported?

2013-12-03 Thread Joe Plante
Hi Folks, I was just wondering how long we have to migrate apps over to Maps v2 before Google shuts it off. I am already in the process of updating an app to v2, but if there's a date (even ball-parked), it could help with setting up deadlines. Thanks. -- Joe -- You received this me

[android-developers] more adapters, or combine similar ones?

2013-02-17 Thread Joe P.
my variable naming conventions? or does it not make a difference? Thanks Joe -- -- 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 g

Re: [android-developers] Re: how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2013-01-20 Thread Joe Bowbeer
The feature that we're awaiting is the .aar binary packaging for libraries, to be provided by the new build system: http://tools.android.com/tech-docs/new-build-system --Joe On Sun, Jan 20, 2013 at 9:55 AM, Mark Murphy wrote: > On Sun, Jan 20, 2013 at 12:42 PM, iDeveloper > wro

[android-developers] Re: Can't Slide to Unlock Emulators on MacBook Pro

2012-12-10 Thread joe
Hi Nathan Maybe you have enabled the "Use Host GPU" option in the emulator settings. I had the same issue on my MacBook Pro so I disabled this option and the emulator worked as expected. cheers joe Am Dienstag, 4. Dezember 2012 19:39:43 UTC+1 schrieb Nathan: > > OK, > &

[android-developers] Re: Retaining a login id in an app

2012-11-08 Thread Joe Malin
It's possible to store the last login ID, but it's not at all recommended, because it's a security risk. Whatever client or web app I'm using, I don't allow it to store my login ID. I don't let my browser store my passwords, either. Users have to type in the password anyway, so having them type

[android-developers] Re: Callback MainActivity class from non-Activity extented class

2012-11-08 Thread Joe Malin
The Intent constructor you want is Intent(Context, Class<>). I usually call this as Intent(this, MainActivity.class); On Tuesday, October 30, 2012 8:54:02 AM UTC-7, Krzysztof K wrote: > > I've a two classes; MainActivity.java which is Activity extented and > CallRec.java which extends Broadcast

[android-developers] Re: Notification area: persistent email/gmail icons

2012-11-08 Thread Joe Malin
It's working as intended. It's conservative, in that it shows the notification until the user dismisses it, regardless of the supposed "state" of the actual messages. You can submit a feature request if you want to set the behavior the way you want it. Do you have a particular reason to change

[android-developers] Re: How can i access Contacts?

2012-11-07 Thread Joe Malin
I think what you mean is "I want to access contacts in the order in which they were modified or inserted into the provider". Unfortunately, you can't do that. That data is not available. If you provide more information about your application, perhaps someone can offer additional help. On Tues

[android-developers] Re: Calling Activity from Service

2012-10-29 Thread Joe Malin
Oooh. Don't call Activities from a Service. If you do that, in essence you're popping something to the foreground independent of the user's actions, which is a Bad Thing. Why call Activity B? Can't you do the work in the Service? If you need user input, try using an AsyncTask instead of a Servi

[android-developers] Style does not display in layout editor

2012-10-12 Thread Joe Seeley
I have created a custom style in my values/styles.xml and have set it as the default style for my application. In a couple of my layouts though, the layout editor does not show the style being applied within the layout editor which makes it difficult when trying to create my layout. When I ru

[android-developers] trying to replace fragment from OK button on alertDialog.

2012-09-12 Thread Joe P.
so i have a two fragment layout, left fragment is a ListFragment, and the right is my displayfragment. I click an item on the left to change the display on the right. at one point i open up a Alertdialog box, when the OK button is clicked, i'm trying to either remove the current display fragm

[android-developers] Re: Jelly Bean 4.1.1 caused MediaPlayer to fail

2012-07-26 Thread Joe
Yes, you are absolutely right. -- 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...@googlegroup

[android-developers] Re: Jelly Bean 4.1.1 caused MediaPlayer to fail

2012-07-19 Thread Joe
Hi! I found the solution by changing File root = Environment.getExternalStorageDirectory(); for File root = Environment.getExternalStorageDirectory().getAbsolutePath(); It works at last! -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Re: Jelly Bean 4.1.1 caused MediaPlayer to fail

2012-07-19 Thread Joe
> > Hi! > I have a similar problem with Android 4.1.1 on phone. My application stores and reads files on SDCARD. To access SDCARD, I use Environment.getExternalStorageDirectory(). My application already has write to external storage permission. Everything works fine on 4.0.4 and all others And

[android-developers] Re: adk 2012 / usb accessory not connecting

2012-07-10 Thread Joe
Hey Doug, What problems did you run into using the Mac IDE for the ADK2? I just finished installing the ADK IDE and managed to upload the clock sketch. I'm using a Mac Air with OS X v10.6.8. Couple of things I found that were a little tricky: 1. For some reason, my Mac's Java installation g

[android-developers] Android logcat / strings security

2012-07-10 Thread Joe Plante
I do like using Logcat for some tracing, but I want to make sure I'm not exposing my users to security issues. Of course Logging shouldn't involve user names and passwords. However, I took a session with a security expert saying that the wrong Logcat statements could help with hackers/crackers.

[android-developers] ConcurrentModificationException in GLSurfaceView, no stack trace or message...

2012-03-25 Thread Joe Hanvy
I'm getting a ConcurrentModificationException in GLSurfaceView which stops my openGL android app. During running the app stops and switches to GLSurfaceView, the stack trace shows that the GLThread has been suspended (exception ConcurrentModificationException). e ConcurrentModificationExcept

[android-developers] Re: Emulator errors in SDKControllerLib

2012-03-23 Thread Joe Banana
Go to Project Properties -> Java Compiler and set "compiler compliance level" to 1.6 or 1.7 depending on the jdk Version you have installed. On 22 Mrz., 08:45, kingtut wrote: > I am trying to get the hardware > emulationworking with the > new SD

[android-developers] Questions about detecting memory leaks for Android native code

2011-11-28 Thread Joe
I do? If the native code is C++ instead of C, is there any difference for the steps? Can you guys share your any experience about memory leaks on Native code with me? Since I didn't get more useful resources from Google. Thanks, Joe -- You received this message because you are subscribed

[android-developers] Want to use Unlock Pattern in my Android App

2011-09-26 Thread david joe
I am making an Application for Deals.I want to use unlock pattern screen and Slidding Lock in my app. I want to use this to unlock a deal.Every Deal is set with a defined unlock pattern and this pattern is matched with the pattern for Deal which confirms user deal. Can any tell me how to use this u

[android-developers] how to prevent select element option text from overflowing to down arrow in WebView

2011-09-09 Thread Joe Hudson
Is there any CSS that can be used to prevent overflow past the separator line? I have tried different variations of overflow and text-overflow with no luck so far. Any help would be greatly appreciated. Thanks! Joe -- You received this message because you are subscribed to the Google Group

[android-developers] Is it possible for a WebView select element to show a Spinner title?

2011-09-09 Thread Joe Hudson
Hello, I would like to know if I can show a title like that from the Spinner using HTML with a select element. I've tried the obvious (title attribute) with no luck. I'd appreciate the help. Thanks. The title I'm referring to can be seen in the following image: http://www.google.com/imgres?

[android-developers] is there any way to clip select element option text in a WebView

2011-09-09 Thread Joe Hudson
divider line? Thanks very much. Joe -- 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-developer

[android-developers] Re: Compiling Android jars that respect @hide

2011-08-18 Thread Joe Moore
I'm cross-posted. I was getting crickets over there. On Aug 18, 12:10 pm, Mark Murphy wrote: > On Thu, Aug 18, 2011 at 12:00 PM, Joe Moore wrote: > > Does anybody know how to compile Android jars that keep their real > > implementations (no "Stub!" exceptions)

[android-developers] Compiling Android jars that respect @hide

2011-08-18 Thread Joe Moore
Does anybody know how to compile Android jars that keep their real implementations (no "Stub!" exceptions) but respect the public API by hiding the @hide annotated entities? Perhaps they are already output by the build and I just need to know where they were? I needed access to the "real Android j

[android-developers] Custom drawable not showing

2011-07-27 Thread joe
The application that I'm working on requires me to extend drawable and then place this custom drawable inside an ImageView for displaying. I've simplified my code as much as possible but still I only get a black screen. The draw() method of my drawable class is: public void draw(Canvas ca

[android-developers] Unable to Hboot on HTC MyTouch

2011-07-25 Thread Ravel Joe Franco Abreu
i can't access to hboot, the phone only show the intro screen help me please -- 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

[android-developers] Ping a Bluetooth device from an Android device

2011-07-05 Thread Joe Fernandez
faster way? Thanks, Joe -- 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...@googlegrou

[android-developers] Proguard can´t access my project

2011-06-17 Thread Joe
witch this property to the correct path? The project properities are all correct. My entry in default.properties is proguard.config=proguard.cfg Thanks and regards, Joe -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] How to relocate AutoCompleteTextView's dropdown window to ListView?

2011-06-07 Thread Jerry Joe
er test, I found that the dropdown list is not rendered in the ListView, but floating at top of the AutoCompleteTextView. Please help me on this or just give me some tips. Thanks! -- Jerry Joe -- You received this message because you are subscribed to the Google Groups "Android Developers&quo

[android-developers] removeProximityAlert()

2011-05-30 Thread Joe
Hi, i have a class with 1 ProximityAlert. The Alert himself just works fine. In my destructor, i remove the alert with the same pending intent, as registered. locationManager.removeProximityAlert(proxyIntent); This seems to be ok - the intent doesnt fire again. But, the GPS-icon doesnt dissapear an

[android-developers] Android: connectivity issues in background thread after alarm when “always-on” turned off

2011-05-11 Thread Joe
Problem description: In my android App, I experience connectitity issues when doing a remote HTTP ("polling") call from an AsyncTask that was started after an alarm went off. The lookup works very well when the standard Android setting "Enable always-on mobile data (Settings -

[android-developers] How to remove the icon when this app has been set disabled.

2011-04-13 Thread Joe
Hi, I use setComponentEnabledSetting function to disable the application (state = COMPONENT_ENABLED_STATE_DISABLED), but the icon of this application still retains on app drawer. How can I remove the icon when I use setComponentEnabledSetting function to uninstall the application? Thanks. -- You

Re: [android-developers] Re: OpenGL rendering blank with min SDK set

2011-03-30 Thread Joe Bain
Thanks that worked. Do you know what the reason for this behavior is? On 29 March 2011 05:41, Nightwolf wrote: > Do you use textures and store images in res\drawable? > Try storing them in drawable-nodpi. > > On Mar 28, 12:42 am, joe bain wrote: > > Hi all, > > > &g

[android-developers] OpenGL rendering blank with min SDK set

2011-03-28 Thread joe bain
e and work. Does anyone know why changing the min sdk requirement would affect the opengl rendering? I can find no errors in the logs and I'm really at a loss to work out what is happening here. Thanks, Joe -- You received this message because you are subscribed to the Google Group

[android-developers] Re: Are you submitting your app to more than just the Android Market?

2011-03-02 Thread Joe
Just got in on Amazon. May give getjar a try. On Mar 1, 9:39 am, Chris Stewart wrote: > Now that I'm working on my seasonal app for the 2011 season, I'm wondering > if any of the 3rd party markets are gaining traction with other developers. >  Are any of you submitting to the Amazon market, or an

[android-developers] Re: Incorrect RowId with SQLite using FTS3 on Android 2.2

2011-02-24 Thread Joe
Yeah I've read the docs, so I don't expect them to be unique, but I do expect them to be correct. By them not correct, I mean that in the database 4 does not exist yet 4 was returned. Not using FTS3, just a "normal" table, everything works as expected. I don't know what you mean by "export". The

[android-developers] Re: Incorrect RowId with SQLite using FTS3 on Android 2.2

2011-02-23 Thread Joe
Is this thing working? I posted a couple times now and nothing has showed up. On Feb 22, 9:12 am, Joe wrote: > I am experiencing an incorrect rowid value with sqlite and fts3. > > Basically, the first two rows are inserted and the rowId is 1 and 2 > respectively. The third insert how

[android-developers] Re: Incorrect RowId with SQLite using FTS3 on Android 2.2

2011-02-23 Thread Joe
someone else on stackoverflow that looks to be having the same problem. http://stackoverflow.com/questions/3123156/sqlitedatabase-insert-returns-incorrect-rowid-for-virtual-tables Thanks, Joe On Feb 22, 9:12 am, Joe wrote: > I am experiencing an incorrect rowid value with sqlite and f

[android-developers] Incorrect RowId with SQLite using FTS3 on Android 2.2

2011-02-22 Thread Joe
I am experiencing an incorrect rowid value with sqlite and fts3. Basically, the first two rows are inserted and the rowId is 1 and 2 respectively. The third insert however returns 4 instead of 3. I dropped the following log message in my contentprovider when inserting a row: SQLiteDatabase d

[android-developers] Re: Camera Access through WebView

2011-02-16 Thread Joe McCann
Camera INTENT is available thru the WebView with Phonegap. However, if you want a *custom* Camera (SurfaceView) you'll need to write it natively. You could probably attempt to build the bridge to the WebView with your custom Camera but is certainly a non-trivial exercise. On Feb 16, 2:50 am, sog

[android-developers] Playing RTSP or m3u with MediaPlayer

2011-02-16 Thread Joe
d two different URLs that look like: rtsp://site.com/stream.sdp http://site.com:3000/stream.m3u In all cases (both in emulator and on HTC Evo) prepare() throws an exception (status=0x1). Anyone know what's going on? Thanks, Joe -- You received this message because you are

[android-developers] Re: Camera preview Api

2011-02-15 Thread Joe McCann
I recommend using getExternalStorageDirectory() http://developer.android.com/reference/android/os/Environment.html#getExternalStorageDirectory() On Feb 15, 3:10 am, Jayanthi wrote: > Hi, >    I am trying to save images in sd card which is taken from camera in > emulator, the following is the cod

[android-developers] Re: Programmatically Update Flash Setting (or any Camera.Parameters)

2011-02-11 Thread Joe McCann
hMode(flashMode); _poladroidCamera.surfaceChanged(null, 0, 0,0); // this is the magic sauce } Let me know if you have any questions. On Feb 10, 3:00 pm, Joe McCann wrote: > Kevin, > > You are spot on and I'm yet to find the right/most efficient > solution.  I really don

[android-developers] Re: Programmatically Update Flash Setting (or any Camera.Parameters)

2011-02-10 Thread Joe McCann
Kevin, You are spot on and I'm yet to find the right/most efficient solution. I really don't want to have to do some silly hack as I would think there's a way (maybe with threads?) that is the most efficient approach. joe On Feb 10, 2:15 pm, Kevin Duffey wrote: > He's s

[android-developers] [Camera API] Programmatically Update Flash Setting (or any Camera.Parameters)

2011-02-10 Thread Joe McCann
I'm trying to avoid having to rewrite the Android source for the native camera app (as it is a cluster***k of code), but am curious as to the proper, most efficient away of being able to update the Camera Parameters AFTER the SurfaceView of the Camera has been created and "opened". For example, if

[android-developers] Re: Camerapreview

2011-02-08 Thread Joe McCann
Seriously, did you google it? There are loads of examples. On Feb 8, 3:12 am, Jayanthi wrote: > Hi, >     I am new to android I want to send mail with image attached to it > I need solution for two question > 1.How to get the path of image saved in sd card using camera preview > 2.How to send ma

[android-developers] Re: data upload java script

2011-02-02 Thread Joe McCann
JavaScript does not handle "uploading"; you'll need to have some code written on the server to handle a POST request with the data you are posting. Inside a WebView, you can use the XHR object to make your call to your server asynchronously, but JavaScript itself can't actually do the uploading of

[android-developers] Re: Force Close Does Not Release Camera Resource

2011-01-26 Thread Joe McCann
occurs in your app. > > On Jan 25, 10:41 pm, Joe McCann wrote: > > > > > So while developing a custom camera application I've realized on rare > > occasions and on various devices if the app has to force close, it > > does not always release the camera reso

[android-developers] [Camera API] Force Close Does Not Release Camera Resource

2011-01-25 Thread Joe McCann
So while developing a custom camera application I've realized on rare occasions and on various devices if the app has to force close, it does not always release the camera resource. Is there a way to find/detect the process that is holding onto this resource and kill it? Or some other technique?

[android-developers] Re: Camera properties

2011-01-16 Thread Joe McCann
Fairly certain you'll have to include the permissions declaration. The other parts would require some hackery, I suppose. On Jan 15, 4:15 am, b_t wrote: > Hi, > > is there any way to get camera properties without open it? > I want to display camera properties but don't want to take a picture. > I

[android-developers] Re: webview inside the dialogbox.

2011-01-14 Thread Joe McCann
It's a bug. You'll need to create an Activity that uses the Dialog theme and "re-create" the dialog including buttons, etc. while also containing the Webview. Now create a "webview_dialog.xml" view in Layout folder. Have it contain a Linear Layout (or Relative

[android-developers] Re: [BUG] Easily Reproducable Bug in Regards to Bitmaps, Memory, and Recycling [sample project included]

2011-01-07 Thread Joe McCann
ycle() is called twice on the same bitmap. Considering you are doing > your own bitmap management and calling recycle yourself in BaseForm I would > suspect a bug in your code. > > > > > > > > > > On Fri, Jan 7, 2011 at 9:44 AM, Mark Murphy wrote: > &

[android-developers] Re: [BUG] Easily Reproducable Bug in Regards to Bitmaps, Memory, and Recycling [sample project included]

2011-01-07 Thread Joe McCann
running on 2.2 emulators and devices??? Cheers. joe On Jan 7, 12:14 pm, Mark Murphy wrote: > On Fri, Jan 7, 2011 at 12:36 PM, Joe McCann wrote: > > In a nutshell, I have/am trying to create reusable UI components in > > XML.  I created a dead simple project that only fires an ac

[android-developers] Re: [BUG] Easily Reproducable Bug in Regards to Bitmaps, Memory, and Recycling [sample project included]

2011-01-07 Thread Joe McCann
If you comment out the "cleanupDrawables()" method, you'll get the exception mentioned in the bug. I'm assuming you simply responded instead of looking/trying that out? On Jan 7, 11:44 am, Mark Murphy wrote: > On Fri, Jan 7, 2011 at 12:36 PM, Joe McCann wrote: > &g

[android-developers] Re: [BUG] Easily Reproducable Bug in Regards to Bitmaps, Memory, and Recycling [sample project included]

2011-01-07 Thread Joe McCann
ement and calling recycle yourself in BaseForm I would > suspect a bug in your code. > > > > > > > > > > On Fri, Jan 7, 2011 at 9:44 AM, Mark Murphy wrote: > > On Fri, Jan 7, 2011 at 12:36 PM, Joe McCann > > wrote: > > > Also, it appears this is

[android-developers] [BUG] Easily Reproducable Bug in Regards to Bitmaps, Memory, and Recycling [sample project included]

2011-01-07 Thread Joe McCann
In a nutshell, I have/am trying to create reusable UI components in XML. I created a dead simple project that only fires an activity to show the UI. It can be downloaded here: http://dl.dropbox.com/u/409429/Bitmap%20Bg%20Test.zip I have a "base_form.xml" component that is referenced (setContent

[android-developers] Android 2.3 Cannot load library

2010-12-30 Thread Joe Yuan
hi,everyone, My app with a ".so" can't run on android 2.3 witch runs nomarlly on 1.6,2.1 and 2.2.When it starts up to System.loadLibrary the "so" file,the system throws a exception "java.lang.ExceptionInInitializerError",the detail below: ERROR/AndroidRuntime(333): FATAL EXCEPTION: main ERROR/And

[android-developers] Re: Problem with AnimationDrawable

2010-12-26 Thread Joe D.
I am trying to load many frames into a animationDrawable and I'm running into similar problems. Can you post an example of your solution - "manually adding Bitmaps as frames, and then calling recycle() on them". Do you mean you completely bypassed animationDrawable and just displayed the bitm

[android-developers] [Image] jMagick on Android

2010-11-28 Thread Joe McCann
Anyone been able to get this to run/build? I'm trying to apply a Polaroid effect to an image and the jMagick seems to have that option. Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Re: What is a 512 by 512 App icon high resolution

2010-11-28 Thread Joe McCann
Pretty sure it is for Google TV apps. 512 x 512 is pretty standard for scaling png files for icons on hi-res displays. --joe http://subprint.com On Nov 27, 4:51 am, ses wrote: > On Nov 27, 9:56 am, TreKing wrote: > > > The people that know the answer to those questions either don

[android-developers] Re: Compile error in the new “Hello Testing” Tutorials program

2010-09-22 Thread Joe Malin
tab on the right. You should see HelloAndroid as one of the required projects on the build path. Hope this helps. Joe Malin -- Please note: Because of the volume, I'm unable to respond to direct e- mails. Please post your questions to the group. On Sep 19, 3:55 am, Kieu Hua wr

[android-developers] Re: Automatic testing tool for Android?

2010-09-22 Thread Joe Malin
://developer.android.com/resources/tutorials/testing/activity_test.html. The tutorial has an appendix that describes how to run unit tests from the command line using adb. You could run multiple unit tests by calling adb from a Python script. Joe Malin --- Note: Because of the volume, I am

[android-developers] Re: FTP Application for IPv6

2010-08-16 Thread Joe Petruchi
Zirk, Thanks very much I tried with the Trial version of FTPCAFE and it works fine over IPv6. I am able to see the list of files in remote PC and download also. Thanks for the help Regards Ajan On Wed, Aug 11, 2010 at 3:57 PM, Joe Petruchi wrote: > Hello All, > > I am trying to dow

[android-developers] Re: FTP Application for IPv6

2010-08-11 Thread Joe Petruchi
Hello All, I am trying to download the apk from my country India. But I am not able to do so. It would be really nice if you could send the apk through e-mail. Best Regards Petruchi On Tue, Aug 10, 2010 at 6:01 PM, Joe Petruchi wrote: > Hello All, > > Does any body know if the

Re: [android-developers] Re: FTP Application for IPv6

2010-08-11 Thread Joe Petruchi
Hello Zirk I am finding it difficult to get the CafeFtp application. Google Market is not able to find it . so If you send it across to me(.apk file) over e-mail it will be great Best Regards Ajan Daniel On Tue, Aug 10, 2010 at 11:43 PM, Joe Petruchi wrote: > Zirk will post you the resu

Re: [android-developers] Re: FTP Application for IPv6

2010-08-10 Thread Joe Petruchi
Zirk will post you the results tomorrow Regards Petruchi On Tue, Aug 10, 2010 at 6:44 PM, Zirk wrote: > FtpCafe should in theory support IPv6, I'd appreciate if you try it > and post back results. > > Thanks > > Dragan > > On Aug 10, 1:31 pm, Joe Petruchi wrote

[android-developers] FTP Application for IPv6

2010-08-10 Thread Joe Petruchi
Hello All, Does any body know if there exists any package to test FTP over IPv6. I tried with some of FTP applications available in market but it doesnt seem to support IPv6. Please help as this is very urgent for me Best Regards Petruchi -- You received this message because you are subscribe

[android-developers] Re: Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-14 Thread Joe
ell Market not to filter your app based on it. > > On Wed, Jul 14, 2010 at 2:26 AM, Jonas Petersson > wrote: > > > > > > > > > On 07/14/2010 10:54 AM, Joe wrote: > > >> I can see why Google wouldn't want to complicate the permissions for a > &

[android-developers] Re: Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-14 Thread Joe
gt; On Wed, Jul 14, 2010 at 2:26 AM, Jonas Petersson > wrote: > > > > > > > > > On 07/14/2010 10:54 AM, Joe wrote: > > >> I can see why Google wouldn't want to complicate the permissions for a > >> user. I am not suggesting they let the user choose which p

[android-developers] Re: Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-14 Thread Joe
citly state which features they care about, and you can there use > android:required="false" to tell Market not to filter your app based on it. > > On Wed, Jul 14, 2010 at 2:26 AM, Jonas Petersson > wrote: > > > > > > > > > On 07/14/2010 10:54 A

[android-developers] Re: Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-14 Thread Joe
Exactly why it's a problem when they up date Bluetooth File Transfer app and it disappears for pre android 2 devices This only affects updates. On Jul 14, 5:26 pm, "Jonas Petersson" wrote: > On 07/14/2010 10:54 AM, Joe wrote: > > > I can see why Google woul

[android-developers] Re: Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-14 Thread Joe
I can see why Google wouldn't want to complicate the permissions for a user. I am not suggesting they let the user choose which permissions to allow. An obvious issue with doing that is that users could "break" your app by crippling the permissions, and then complain it doesn't work and give you a

[android-developers] Re: Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-13 Thread Joe
lack of API support for Bluetooth is the reason Google > doesn't show Bluetooth-capable apps for pre-2.0 devices?  Out of > curiosity, what are you doing to get around the lack of Bluetooth > support in the APIs prior to 2.0? > > On Jul 10, 5:33 am, Joe wrote: > > > >

[android-developers] Android market hiding apps with bluetooth permissions from Android 1.5 and 1.6

2010-07-12 Thread Joe
Hi I released updates of my apps yesterday and they are being hidden from android 1.5 and 1.6 phones. This is due to a Market bug which hides apps with bluetooth permissions from android 1.5 and 1.6. Come on Google fix the market. We spend countless hours making are apps work on ALL android vers

[android-developers] Re: App disappears from the Market after upgrade

2010-07-12 Thread Joe
This issue is happening for me now. Come on Google this is so annoying for developers. It must be fixed. On Jun 17, 12:10 pm, jeffro wrote: > I'm also seeing this after recently updating my app.  It is also using > > > > Discussion on Android Market: > > http://www.google.com/support/forum/p/And

[android-developers] Android Market Filters are broken for bluetooth

2010-07-12 Thread Joe
Hi The android market is now broken. Apps that require the bluetooth permissions are not showing in the android market for devices running android 1.5 and 1.6. My apps run on ALL android versions - and must appear on ALL devices, yet now this bug has been introduced to the market. My apps are i

[android-developers] I need to send message from api to the simulator where the test running

2010-07-03 Thread joe
I have to create unit tests where I need to send message from api to the simulator where the test running(The test junit must check functionality which has place after as phone received sms). I searched in google but people always talk about sending message between simulators (using SmsManager)

[android-developers] HeapWorker taking 80%-95% of cpu

2010-06-30 Thread Joe Yuan
Dear all! I got a problem that when i run my app the whole system may get blocked!and then i 'top' the tasklist,see 'HeapWorker' thread of my app takes 80%-95% of cpu.What's the problem? The feature is When I use the jni (*env)->CallVoidMethod to call the java function of my class,the running th

[android-developers] Detect changes of sms/mms status

2010-06-29 Thread joe
I need to create the observer which must be informed about changing sms/mms message status, example: message is read, message is deleted. How I can do it ? Thanks for help -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Re: How to access a AIDL service from different packages?

2010-06-18 Thread Joe Onorato
You will also have to include the .aidl as source in your other project. The two different apks don't link against each other or anything like that. Otherwise, the generated java class won't be available. -joe On Jun 18, 7:44 am, Mark Murphy wrote: > On Fri, Jun 18, 2010 at 7:3

[android-developers] Re: how to programatically pause an application?

2010-06-15 Thread Joe Onorato
_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED); -joe On Jun 15, 11:07 am, Mark Murphy wrote: > On Tue, Jun 15, 2010 at 10:42 AM, guich wrote: > > Thanks, but something went wrong. > > I can see the onPause and onResume being called for my app, but the > > screen is blank after the resume. This does not happen

[android-developers] Re: how to open an App when the Android OS start up

2010-06-15 Thread Joe Onorato
No, don't do that. If you're doing an embedded device, remove the built-in launcher, and make your activity the default home. -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] Can I Please Get Some Help?

2010-05-24 Thread Joe
Ok, I literally know nothing about programming. I took one class of C+ + 6 years ago in college. But, I really want to develop something for my android phone. I looked all over google, read a couple of tutorials, and I went to the developers website. So far, I was able to download the android p

[android-developers] How to upgrade my Android dev Phone 1 to 2.x release?

2010-03-27 Thread Joe
Is it possible to upgrade Android dev phone (the first version) to latest release (either 2.0 or 2.1)? I appreciate if you can point me right links. Thanks Joe -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

[android-developers] Re: getContextMenuInfo() returns null on sub-menu MenuItems

2010-03-02 Thread Joe
I've recently run into this issue as well, where I was relying on MenuInfo containing the AdapterContextMenuInfo (for position in the ListView) on the submenu. The only workaround I've found so far is to store the MenuInfo in a member variable while the context menu is open, and release it onConte

[android-developers] Re: Voice recognition and voice decoding

2010-01-12 Thread Joe McCann
Speech-to-text is processed in the cloud and the resulting data is returned. On Jan 11, 5:36 am, tina lincon wrote: > How is it possible to implement voice recognition on android phones? > Also to decode the voice and convert the male voice to female voice > and vice versa?The voice data input fr

[android-developers] Accessing Email Attachments

2010-01-10 Thread Joe
other uses-permissions that i need to use? Or is there another better way to access an email or email attachments? Do I need to write my own email client? If so, then where do i start to do this? thx for any help Joe C -- You received this message because you are subscribed to the Google Group

[android-developers] Re: Contact Picking on Motorola Cliq (1.5)?

2010-01-05 Thread Joe Jack
My phone was doing this and I did Master Reset an I think this has fixed it. The error message I was getting went as SORRY "process com.motorola.blur.friendfeed" will now foreclose, or something similar! Hope this helps.Reset instructions are as follows. Please keep in mind I'm not an expert an

[android-developers] Re: Debugging the framework

2010-01-05 Thread Joe Onorato
The KeyInputQueue runs in the system process, and your test app runs in its own process. You need to connect two debuggers. When I debug this code, I usually use Log.d debugging instead, because while possible, connecting two debuggers is kind of a pain. -joe On Jan 4, 6:46 am, Matan wrote

[android-developers] Re: Droid AVD (2.0, WVGA854) resolution hell

2009-12-23 Thread Joe
Make sure you tag your resource directories with -v4 so that they are ignored by any thing less than 1.6 e.g. if you have res/layout-small/ make it res/layout-small-v4 "Note that if you add size- or density-specific resource directories tagged with any of the resource qualifiers listed in this do

[android-developers] Please help me find documentation on actions for the manifest file

2009-12-10 Thread Joe Mihalich
t;/" + String.valueOf(conversationId) + "/messages"), null, null, null, null); If this is how you have to do it, then that's fine. But where is this documented so that I could have figured this out myself? Thanks, Joe -- You

[android-developers] Please help me find documentation on actions for the manifest file

2009-12-10 Thread Joe Mihalich
ns/" + YourEmailAddress + "/" + String.valueOf(conversationId) + "/messages"), null, null, null, null); If this is how you have to do it, then that's fine. But where is this documented so that I could have figured this out myself? Thanks, Joe -- Yo

  1   2   >