Re: [android-developers] Re: All APK has cracked by apkcracks.net

2012-05-04 Thread mm w
google could by just crypting and signing the binaries maybe in ten years On Thu, May 3, 2012 at 8:22 PM, Adam Ratana adam.rat...@gmail.com wrote: To add to this: I've seen some apps I've made get cracked and posted on various sites, but the ones that had true appeal (imo) continue to sell

Re: [android-developers] Re: Singletons in Android .... Final solution?

2012-05-04 Thread mm w
What if the constructor could throw a genuine exception (say file not found) it would be per see a bad design, a singleton implementation follows some mind designs, or you wanted to supply some non-static arguments to it? if what you do, does not fit with a singleton pattern don't or use a

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
thanks I do a lot... but no doc, there is an asset-manager header which looks like totally immature (kind of my first c++ class) and undocumented On Fri, May 4, 2012 at 8:38 AM, Justin Anderson magouyaw...@gmail.com wrote: You could look at the NDK... Thanks, Justin Anderson MagouyaWare

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
yep we like anti pattern 8-) how many different kinds of animals are there? On Fri, May 4, 2012 at 8:55 AM, Kristopher Micinski krismicin...@gmail.com wrote: On Thu, May 3, 2012 at 8:22 PM, 0xcafef...@gmail.com 0xcafef...@gmail.com wrote: is there any layer/API to access Android filesystem?

Re: [android-developers] Re: Singletons in Android .... Final solution?

2012-05-04 Thread mm w
As far as I can see, using the static container call, I did not get any downsides , sure we are right in our mind and not trying to do inappropriate behaviors with a singleton pattern, things you described into your article which mostly just appoints strange practices which never pop'ed in right

Re: [android-developers] Re: Singletons in Android .... Final solution?

2012-05-04 Thread mm w
at 10:28 AM, mm w 0xcafef...@gmail.com wrote: As far as I can see, using the static container call, I did not get any downsides , sure we are right in our mind and not trying to do inappropriate behaviors with a singleton pattern, things you described into your article which mostly just

Re: [android-developers] Re: Singletons in Android .... Final solution?

2012-05-04 Thread mm w
No prefix m is necessary, although for some reason many people do that, and underscores are not conventional. Use camel case, as 'mInstance' (if you must use the wart), or just 'instance'. I do disagree m_instance means private, just a c++ old fart convention anyway I never use public vars

Re: [android-developers] Re: Singletons in Android .... Final solution?

2012-05-04 Thread mm w
and @lew in your kido-preteen-troll (BTW you made LOL with your naming convention) you omitted this line on purpose: throw new RuntimeException(e.getMessage()); if you want to troll do it with your kids, at least they will take you seriously. 8-) -- You received this message because you are

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
: On Fri, May 4, 2012 at 12:01 PM, mm w 0xcafef...@gmail.com wrote: yep we like anti pattern 8-) how many different kinds of animals are there? If you're not developing with the Android SDK -- which is java based -- then your post is off topic for this list. kris -- You received this message

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
by this time I did implement all my file-io-directory operations using userspace fs linux-android APIs. I can talk and work 8-) On Fri, May 4, 2012 at 6:09 PM, mm w 0xcafef...@gmail.com wrote: @hi, I am developing with the Android SDK and the NDK and a new Kernel service. this list

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
your view, not employee anyway -- 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

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
As it is indexed publicly, I think you'll find that your email will frequently appear highly when googled for.. and ? I have nothing to hide, I asked questions about C implementations and did not want any answer about java, not my concern, then you are a stubborn boy, trying to sell me I should

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
is totally unacceptable surely. On Fri, May 4, 2012 at 3:42 PM, Kristopher Micinski krismicin...@gmail.com wrote: On Fri, May 4, 2012 at 6:39 PM, mm w 0xcafef...@gmail.com wrote: As it is indexed publicly, I think you'll find that your email will frequently appear highly when googled

Re: [android-developers] Filesystem Operation in C

2012-05-04 Thread mm w
ok thanks for other the lists I will move there, just confusing this list is named android-developers not android-developers-sdk then bot point me an insult? On Fri, May 4, 2012 at 3:53 PM, Kristopher Micinski krismicin...@gmail.com wrote: On Fri, May 4, 2012 at 6:49 PM, mm w 0xcafef

[android-developers] About a dmain and a port for accessing to Android Maps API(NativeAPI(Mapview))

2011-08-02 Thread mm
I'm having a trouble with finding proper domain and a port of google server i should use for, when i use Android Maps API. I checked out Google Maps API Premier, and I suppose to use the servers written below. If it's wrong, it would be greatful to tell me right ones, or tell me the way i could

[android-developers] cannot setup google account although network is working

2011-07-04 Thread mm
Android 2.2/Linux version 2.6.29 I have a device without grps and no wifi around. I created a connection via usb via pppd. When I open the browser, it displays an error message telling me that there is no connection - then I can surf without problems. I cannot set up my google account for the

[android-developers] How to invoke phone dialer in browser? or is it impossible ?

2010-09-07 Thread mm...@hustunique.com
I post it in StackOverFlow,but get no responce,sorry if I have disturbed you. below is the Question: I build a website for phones like android and iphone,when users click an url , is it possible for me to invoke some system build in activities like Dialer or SMS)? I want to implement this cause

[android-developers] Better way to protect priced app?

2009-04-07 Thread cn mm
Just did a little search on google with my paid app name, I found these: http://www.ipmart-forum.com/archive/index.php/t-337082.html http://droidappz.co.cc/index.php/board,21.0.html Someone bought the priced app from market with the rooted phone and copy the apk file, then post on the websites

[android-developers] Saving a file to a system directory?

2008-11-07 Thread mm
Hey folks, I'm trying to save a file to a system folder. I know the default directory for saving files to the device is in your local data folder, as so: String dir = getFilesDir().toString(); // dir is /data/data/app/files I'm wondering if it's possible to save files to another directory,