[android-developers] Handango licensing models

2010-12-30 Thread bagelboy
Hello Devs, I'm considering whether to put my apps on Handango, if only for the marketing benefits. On the android market I have a demo and a paid version of my app but on Handango there is a possibility of having a shareware setup where a user downloads the full version after the trial runs out.

[android-developers] Re: CountDownTimer doen't work during device in deep sleep?

2010-12-23 Thread bagelboy
This is by design and it's to save battery life. If the phone cannot sleep then the battery will discharge very quickly and your app will be a battery drain. I was coding a timer myself and Mark recommended that I use notification manager for long-term timing instead and it was good advice. I sugg

[android-developers] Re: Setting up development environment on windows 7

2010-12-22 Thread bagelboy
I'm using windows 7 64 bit and although it wasn't 100% straighforward there are no dealbreakers. I'm using 64 bit java and it works fine although my java_home is c:\glassfishv3\jdk. Eclipse doesn't install anywhere, you simply run the executable from wherever it's unzipped, so put it in program fil

[android-developers] Re: Anybody seen a slowdown in sales?

2010-12-18 Thread bagelboy
I've seen a 50% drop in sales in the same timeframe. Not that my sales were huge before but I had a 5 day period with no sales at all and since then it's been a trickle. I've got promo graphics, feature graphics, the works. -BB -- You received this message because you are subscribed to the Googl

[android-developers] Re: Problem with Publishing app in android Market

2010-12-16 Thread bagelboy
What are you expecting to hear? Once you pay you should be able to log into the market as a developer using your gmail account. On Dec 16, 9:29 am, Lamia Hannoun wrote: > Hello! > > I want to publish my first android app in Android market, I payed the 25 USD > to get liscence to get an account to

[android-developers] Re: Use shared preferences on non-app directory file

2010-12-15 Thread bagelboy
ote: > > > If it's for licensing, couldn't you use something like the > > LVL<http://developer.android.com/guide/publishing/licensing.html>? > > Anything you write to a system you don't control (the device) is going to be > > non-permanent. > > Right

[android-developers] Re: Use shared preferences on non-app directory file

2010-12-15 Thread bagelboy
> > Then just use the SD card if you're only concerned about "the less savvy > freetards". > > That's a great perception you have of your users, by the way. > I don't have a bad perception of my users, I was just being sarcastic. -- You received this message because you are subscribed to the Go

[android-developers] Re: Use shared preferences on non-app directory file

2010-12-14 Thread bagelboy
No arguments here. I know it's not going to defeat all freetards but it will defeat the less savvy freetards. On Dec 14, 3:25 pm, TreKing wrote: > On Tue, Dec 14, 2010 at 2:29 AM, bagelboy wrote: > > A user can clear app data, I want a file that is persistent > > A user can

[android-developers] Re: Use shared preferences on non-app directory file

2010-12-14 Thread bagelboy
a way to create a persistent file. On Dec 14, 5:25 pm, Chris Stratton wrote: > On Dec 14, 3:29 am, bagelboy wrote: > > > A user can clear app data, I want a file that is persistent > > If you find a way to do that, the android architects will probably > consider it a bug

[android-developers] Re: Use shared preferences on non-app directory file

2010-12-14 Thread bagelboy
A user can clear app data, I want a file that is persistent On Dec 13, 9:50 pm, TreKing wrote: > On Mon, Dec 13, 2010 at 3:29 PM, bagelboy wrote: > > Is there a way to use shared preferences on a different directory? > > What for? SharedPrefs are for storing name value pairs.

[android-developers] Use shared preferences on non-app directory file

2010-12-13 Thread bagelboy
Shared Preferences is a handy tool, the only problem is that as far as I can tell it only works on files in the app directory. Is there a way to use shared preferences on a different directory? I've tried simply putting a path in the file string but that crashes. -BB -- You received this message

[android-developers] Re: prevent user from clearing app data

2010-12-06 Thread bagelboy
In other words there's no way to protect my app from the user simply deleting app data, and the only solution is for me to build my own licensing server? Thanks google, you guys think of everything. On Dec 6, 1:41 am, Dianne Hackborn wrote: > On Sun, Dec 5, 2010 at 5:41 AM, Mark Murphy wrote: >

[android-developers] Re: Overlay to make parts of image clickable

2010-12-06 Thread bagelboy
gt; origin of your image (which can be larger than the screen) > 4) get pixel color from the control bitmap - if it is > 0 then it is a > hotspot index of code. > Good luck > Igor > > On Dec 5, 5:43 am, bagelboy wrote: > > > I have an image and I want to make parts of it

[android-developers] Overlay to make parts of image clickable

2010-12-05 Thread bagelboy
I have an image and I want to make parts of it clickable. From my research I can see 2 ways to do this: 1) I could chop the image into pieces and put them into a relative layout 2) I could create a matrix of points that describe the clickable areas and use onTouch events to track clicks Option 1 h

[android-developers] prevent user from clearing app data

2010-12-05 Thread bagelboy
It looks like there's a bug on Froyo where the user can clear app data even if allow clear user data is false in the manifest. I would like to put out a demo that stops working after a certain amount of usage and the simplest way is to put a counter in shared preferences (or another file) somewhere

[android-developers] Re: Apps not showing in Market

2010-11-23 Thread bagelboy
There's an app for that! On Nov 23, 9:08 am, mot12 wrote: > If you expect anybody to help you here, then at least post your > manifest. How do you think anybody would know the answer to your > question? Magic? > > Martin > mobitobi.com > Gentle Alarm, Sleep Now -- You received this message beca

[android-developers] Re: Android Market Licensing Problem

2010-11-14 Thread bagelboy
urred to me (I have already read that > thread), but really, how am I supposed to be able to test my app > before I publish it if that is the case? > > On Nov 14, 3:29 am, bagelboy wrote: > > > Perhaps the responses aren't correct because your app is not > > publi

[android-developers] Re: Android Market Licensing Problem

2010-11-14 Thread bagelboy
ich would generate such a response.  Can someone > please explain why this is happening.  Does this License Service > simply not work correctly on a large number of phones?  Does using the > service have any value at all? > > Thanks. > > On Nov 13, 3:31 am, bagelboy wrote: >

[android-developers] Re: Android Market Licensing Problem

2010-11-13 Thread bagelboy
I recently did my own LVL implementation and I can tell you that tracing these issues down is a real pain. First you need to put loads of logging into the LVL code to find out what the actual response is, otherwise you have no visibility, then you have to put logging into all the code between the r

[android-developers] Re: LVL "LICENSED" Test Respone

2010-11-05 Thread bagelboy
use their values? The same goes with retries, just use your own values then it doesn't matter whether google sends extras or not. On Nov 5, 5:33 pm, bagelboy wrote: > It's bizzare, they have designed a system for testing that cannot be > used to accurately test an application

[android-developers] Re: LVL "LICENSED" Test Respone

2010-11-05 Thread bagelboy
It's bizzare, they have designed a system for testing that cannot be used to accurately test an application's response! The only solution is to publish an app that doesn't work and then fix it! What are they thinking? ARE they thinking? On Nov 5, 11:03 am, String wrote: > It's been disclosed on

[android-developers] Re: LVL "LICENSED" Test Respone

2010-11-05 Thread bagelboy
I ran into the same thing last night although I didn't have time to really delve deep into the problem so I am not sure whether it is my code or a market problem. Are you using the stock code? -BB On Nov 4, 11:40 pm, Zsolt Vasvari wrote: > Nobody on this form who implemented LVL and could answe

[android-developers] What other markets are worth using

2010-11-04 Thread bagelboy
I'm considering which markets to sell my apps in and I would like to get the opinions of other developers. Other than the android market which markets do you sell your apps in and which ones have you had success? Have you seen any changes to the rate of sale in these other markets since the androi

[android-developers] Re: Adventures with LVL

2010-11-02 Thread bagelboy
How do you know when 26 hours has passed? Do you timestamp the first check or is there a way to establish when the app was installed? On Nov 1, 4:48 pm, Pent wrote: > > (this > > is because I am not entirely sure what would happen if the user copied > > to SD card and then got a refund). > > Ah y

[android-developers] Re: device fingerprinting

2010-11-01 Thread bagelboy
> On Oct 30, 3:01 pm, DanH wrote: > > > Well, there's the IMEI, the IMSI, and the ANDROID_ID.  Alas, the > > ANDROID_ID isn't unique (and is in fact identical on many Droid2 > > units). > > > On Oct 30, 12:41 pm, bagelboy wrote: > > > > Hell

[android-developers] Re: charging taxes

2010-10-30 Thread bagelboy
I'm an IT contractor so I already have a limited company. I'll ask my accountant about this. Thanks for the info. -BB On Oct 29, 6:23 pm, Pent wrote: > > I've got an an app out and I'm starting to get some (very minute) > > revenue, and it just occurred to me I need to think about taxes. I > >

[android-developers] device fingerprinting

2010-10-30 Thread bagelboy
Hello Devs, I'm working on an LVL implementation and I want to use as many different device identifiers as I can. I have considered using IMEI numbers but I've discarded that because a) it's intrusive and b) not all devices will have them. What might I use to fingerprint a phone for license verif

[android-developers] charging taxes

2010-10-29 Thread bagelboy
Hello fellow devs, I've got an an app out and I'm starting to get some (very minute) revenue, and it just occurred to me I need to think about taxes. I live in the UK and I am selling my apps through the google android market exclusively. Do I need to set up the marketplace to charge sales tax? If

[android-developers] Re: using long touch to set a seekbar

2010-10-13 Thread bagelboy
@Kumar, I implemented that and it works like a charm, thanks for the suggestion! -BB On Oct 12, 5:23 pm, Kumar Bibek wrote: > ACTION_CANCEL might help you to exit your custom event. > > > > On Tue, Oct 12, 2010 at 9:51 PM, bagelboy wrote: > > OK, I solved this m

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
@Kumar, many thanks for that useful suggestion, I'll have a look. -BB On Oct 12, 5:23 pm, Kumar Bibek wrote: > ACTION_CANCEL might help you to exit your custom event. > > > > On Tue, Oct 12, 2010 at 9:51 PM, bagelboy wrote: > > OK, I solved this myself by attaching

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
ve to do is tap the button again to stop, but if it gives any trouble I'll simply have to add a generic ACTION_UP listener. Hope this is useful to someone, -BB On Oct 12, 11:25 am, bagelboy wrote: > I have an app that uses seekbars with buttons on either side for fine > adjustments.

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
Actually, upon further review I think I misunderstood key events, I don't think that approach is right at all. It looks like I will need to use touch events. On Oct 12, 11:25 am, bagelboy wrote: > I have an app that uses seekbars with buttons on either side for fine > adjustments.

[android-developers] using long touch to set a seekbar

2010-10-12 Thread bagelboy
I have an app that uses seekbars with buttons on either side for fine adjustments. Right now I use simple onclick events for the buttons, every click changes the seekbar 1 unit. What I would like to do is use a long press to quickly scroll, so if a user holds down a button for say 800 millis it wi

[android-developers] Re: XML encryption

2010-10-06 Thread bagelboy
I would be reading the data in once and no modifications would be made. On Oct 5, 6:34 pm, DanH wrote: > Yeah, a lot depends on whether you'll be reading the entire XML file > at once and extracting everything you need, or going back and > rereferencing it from time to time. > > On Oct 5, 11:18 a

[android-developers] Re: XML encryption

2010-10-06 Thread bagelboy
I'll have a look, thanks for the suggestion. The trick will be to hide the key in such a way as to make it difficult to find, I'm hoping a combination of proguard and additional obfuscation of my own will do the trick. On Oct 5, 6:34 pm, Dimitris wrote: > Yes, look for CipherOutputStream and Ciph

[android-developers] Re: XML encryption

2010-10-06 Thread bagelboy
I'm not sure if that is practical. If I created a public/private keypair as part of the app it would be accessible to the user and could be used to decrypt the data. The only way that would work is if there was a way to protect the public/private keypair, and I'm not sure how to go about doing that

[android-developers] XML encryption

2010-10-05 Thread bagelboy
Hello Developers, One of my apps uses custom xml files for much of the data used by the app, I'd like to encrypt the data as part of a copy protection plan and I would like some views about how best to go about it. I realize that this isn't going to solve all my copy protection problems but it wil

[android-developers] XML encryption

2010-10-05 Thread bagelboy
Hello Developers, One of my apps uses custom xml files for much of the data used by the app, I'd like to encrypt the data as part of a copy protection plan and I would like some views about how best to go about it. I realize that this isn't going to solve all my copy protection problems but it wil

[android-developers] binding to a service from a separate class

2010-09-14 Thread bagelboy
Hello Android Devs, I've created a timer service (because I want the timer to accessible, persistent, and run when the activity is not up), tested using a basic front-end activity. The service and call backs all work fine, now what I want to do is marry the service up to my timer view class. My ti