[android-developers] Lost production keystore file

2014-09-02 Thread Jim Andresakis
So the app Im currently on has quite a lot of downloads and the keystore file used to sign it has been lost on a remote server that went down and is no longer available. Is it possible to publish the latest build in the playstore without renaming the package and creating a new app which will

Re: [android-developers] ListFragment fails on setContentView

2012-03-19 Thread Jim Andresakis
@android:id/list as id for your listview? On Mon, Mar 19, 2012 at 11:12 AM, Mark Murphy mmur...@commonsware.comwrote: On Sun, Mar 18, 2012 at 9:25 PM, Jim Andresakis jimandresa...@gmail.com wrote: Hey thanks for jumping in Mark. So no matter what subclass of fragment Im using I always call

[android-developers] ListFragment fails on setContentView

2012-03-18 Thread Jim Andresakis
Ive been trying to get a listview working within a fragment all day. I dont know why but for some reason the way Im trying to do it, it just never wants to inflate the view. Im using actionbarsherlock if that makes a difference but I dont think so. Heres the class where my layout fails:

Re: [android-developers] ListFragment fails on setContentView

2012-03-18 Thread Jim Andresakis
/fragments.html#Adding On Sun, Mar 18, 2012 at 7:29 AM, Jim Andresakis jimandresa...@gmail.com wrote: Ive been trying to get a listview working within a fragment all day. I dont know why but for some reason the way Im trying to do it, it just never wants to inflate the view. Im using

[android-developers] Re: OpenGL es and min3d - textures only load on certain hardware and how to fix.

2012-03-02 Thread Jim Andresakis
sort of checksum before using them. Otherwise, if you are concerned with people getting exact copies of standard image files, I don't know what to tell you. I wonder if anybody can suggest an efficient solution for that? On Thursday, March 1, 2012 4:34:00 AM UTC-7, Jim Andresakis wrote: Im

[android-developers] OpenGL es and min3d - textures only load on certain hardware and how to fix.

2012-03-01 Thread Jim Andresakis
Im using min3d to draw 3d boxes and Im applying textures to them in the updateScene method which works great on some devices and on others the textures wont load. Ive tried debugging by turning on the glflags but I dont see any errors what so ever. Ive done a lot of reading and googling the

[android-developers] Re: Disable home button/screen

2012-03-01 Thread Jim Andresakis
Im pretty sure you cant override the home button no matter what you do. You can override ever other button but that one. On Thursday, March 1, 2012 3:52:42 AM UTC-8, soheb somani wrote: my app is alike my remote lock with app lock and when the screen is locked remotely by sending an SMS,

[android-developers] Re: Whats the best way to implement the new fragment activity with a tabhost set up

2012-02-17 Thread Jim Andresakis
. On Fri, Feb 17, 2012 at 1:29 AM, Jim Andresakis jimandresa...@gmail.com wrote: So now there is the fragment activity what would be the best way to go about implementing them within a tabhost. I ask this because in reading the documentation they say that tabhost has been depreciated

[android-developers] Re: Whats the best way to implement the new fragment activity with a tabhost set up

2012-02-17 Thread Jim Andresakis
PM, Jim Andresakis jimandresa...@gmail.com wrote: Hey Mark thanks for the reply. After looking at it I think Ill go with the actionbarsherlock set up. Id imagine its all open source but I dont see any mentions of a license. Do you happen to know what license they have it under? On Feb

[android-developers] How to deal with java.io.exception no space left on device when that isnt the case

2012-02-16 Thread Jim Andresakis
Hello, I have an app where I let users take pictures and at the same time I stream pictures to the user based on their location. Im storing the image files from the download in a file that is supposed to be on the sd card but for some reason gets created on the internal memory. Just recently I

[android-developers] Re: How to deal with java.io.exception no space left on device when that isnt the case

2012-02-16 Thread Jim Andresakis
all of the 1 gig of memory on the device. It is a much more humble number like 16MB or 24MB. Probably the first thing to investigate is why the images are on internal memory. On Feb 16, 5:21 pm, Jim Andresakis jimandresa...@gmail.com wrote: Hello, I have an app where I let users

[android-developers] Re: How to deal with java.io.exception no space left on device when that isnt the case

2012-02-16 Thread Jim Andresakis
So I got this working by changing the context.getCacheDir() to context.getExternalFilesDir(sdState) and now I can once again have my app download images from the web and take photos. On Feb 16, 3:08 pm, Jim Andresakis jimandresa...@gmail.com wrote: Yeah I cant figure that out either. However

[android-developers] Whats the best way to implement the new fragment activity with a tabhost set up

2012-02-16 Thread Jim Andresakis
So now there is the fragment activity what would be the best way to go about implementing them within a tabhost. I ask this because in reading the documentation they say that tabhost has been depreciated in favor of fragments and I have yet to really use the fragments and would like to do so

[android-developers] Re: No TOUCHABLE_INSETS_REGION constant field under InputMethodService.Insets class in SDK

2012-02-16 Thread Jim Andresakis
I think she means that as long as you use the android keyboard without totally creating your own from scratch you wont be able to register touch events any where other than on the keyboard while its in view. On Feb 16, 10:17 pm, tsukishiro yamazaki tsukishir...@gmail.com wrote: Hi Dianne, By

[android-developers] Re: Almost nobody is rating my app.

2012-02-10 Thread Jim Andresakis
I know it wouldnt show up in the market place but you could put something in your app that allowed the users to message you directly like a form that takes a few strings and sends them to your database or email or something. Then you could at least get feed back and at that point you could offer

[android-developers] Re: MapView works on some devices and others it doesnt

2012-02-09 Thread Jim Andresakis
@ibendlin The first device that I test on is a Verizon motorola droid x2 running 2.3.4 and then a samsung infuse but I have 10 other devices to test on when I need them. The tmobile mytouch that cant see the map tiles is one of my partners phone and being that hes in another state I usually email

[android-developers] Re: MapView works on some devices and others it doesnt

2012-02-09 Thread Jim Andresakis
Hey Mark thanks for replying :) I went over my manifest file with a fine tooth comb and tripple checked all the network conditions but its just odd that map tiles will load on one device and then not on another. I had my partner on the east coast using the same version of the app that I had last

[android-developers] Re: MapView works on some devices and others it doesnt

2012-02-09 Thread Jim Andresakis
@ibendlin I could ask him for one but he did mention that hell have a new phone in a week and hell be sending the old one in the mail out here so I can test on it myself. When I get my hands on it Ill post back to this thread with any errors related to the mapview. On Feb 9, 5:05 pm, lbendlin

[android-developers] MapView works on some devices and others it doesnt

2012-02-08 Thread Jim Andresakis
When Im developing I noticed that occasionally the mapview will not load tiles. Im using the debug key and I have about 12 different devices that I test on including tablets. The mapview usually doesnt load on the tmobile mytouch3g which is older hardware at this point and Ive never had any

[android-developers] How to create moving objects on screen that are clickable.

2012-02-03 Thread Jim Andresakis
I have an app Ive been working on where I have moving onscreen objects that are drawn and updated each frame to a canvas which is then drawn to a view. The objects are kept in in a listArray and when a user clicks on the screen its registered in the view and then passed through to the class I use

[android-developers] Re: Unable to open database file?

2012-02-03 Thread Jim Andresakis
Are you trying to pull data out of the users phone that your app stored in the sql db? If so maybe those particular devices that give that error dont allow access to that file possibly. On Feb 2, 5:08 pm, Zsolt Vasvari zvasv...@gmail.com wrote: Hi, I am using ACRA and get an average of one

[android-developers] Re: Unable to open database file?

2012-02-03 Thread Jim Andresakis
Maybe its crashing because its initially trying to store a value that is null.Im just guessing because I have no idea what your code does on the native side. On Feb 3, 3:51 pm, Zsolt Vasvari zvasv...@gmail.com wrote: But if the user tries the same operation again, it works. So if it's a

[android-developers] Re: Possible TabHost bug on samsung galaxy 10.1 tab running 3.2

2012-01-27 Thread Jim Andresakis
After looking at my code over a couple of days and comparing it to other examples I found that I had been using the following code in my set up which the galaxy tab didnt seem to like: TabHost xmlns:android=http://schemas.android.com/ apk/res/android android:id=@+id/my_tabhost

[android-developers] Re: Dynamic ImageButtons

2012-01-23 Thread Jim Andresakis
When you say dynamic do you mean the actions for the buttons change or as in they move around onscreen? On Jan 21, 2:13 pm, Ubiracy Santos ubiracy@gmail.com wrote: Can anyone give me an idea of how to create dynamic buttons? For example ascreen that has 6 buttons with different actions.

[android-developers] Possible TabHost bug on samsung galaxy 10.1 tab running 3.2

2012-01-23 Thread Jim Andresakis
Hey guys, I have a layout that Uses a tabhost which is viewed inside of a dialog. I do this because it makes for a very quick menu box to pop up. So far on all the phones Ive tested it on it works fine. However I have a samsung galaxy 10.1 tablet running 3.2 and when I hit my button to pull up