Android :: Is There A Secure Pass Code System To Buy Applications

Nov 25, 2010

OK maybe I'm being paranoid and behind the rest of the world who has already done this: I'm afraid of adding my credit card to my Google Checkout account! My main concern being a super intelligent user of my Android phone who will buy a million apps (potentially!) - my 5 year old son

I used to have a credit card on my account - but that's expired
Knowing that the card had expired, I thought I would test out the buying of an app
I was surprised that it only took a few pages of my clicking yes to buy the app
(The purchase didn't go through - I got an email saying this because my credit card couldn't be charged)

Question: is there a secure pass code system to buy applications?
Like needing to input a code at the last step of buying
(I think this is how iPhone works - I say this not having owned one)

I don't think there is a secure pass system - I've played around with my phone loads and have never come across anything. BUT, EVEN if there was such a pass system: there's still something wrong!
I've bought my phone. Not made any changes. Just started using. I would imagine that's what everyone does - as opposed to buying and then customising and making secure (and maybe optimizing the use of energy so that it doesn't die within a few hours of use)

Buying an application: you can cancel within 24 hours (I think that's the time limit) Over the weekend, I let go of business life and only pick up on Monday - so if my son purchased and installed an application on Friday evening, I wouldn't find out until some time later - because I don't look at my phone OR my emails over the weekend! (+ Say if an application was purchased that I then managed to cancel - I then lose the right to buy again and trial with the right to cancel - a small point, but valid regardless I think)

Would be interested to hear what others say - maybe I'm missing something and maybe I'm using incorrectly.

Android :: Is there a secure pass code system to buy applications


Android :: CRC32 Checksum Use In Order To Secure LVL Applications

Sep 28, 2010

Following the examples given by Johns Trevor in order to secure Android LVL Applications (http://android-developers.blogspot.com/ 2010/09/securing-android-lvl-applications.html), I've been stuck on one only particular issue. Indeed, here is the matter: The most obvious mechanism is to use a lightweight hash function, such as CRC32, and build a hash of your application's code. You can then compare this checksum with a known good value. You can find the path of your application's files by calling context.GetApplicationInfo() - just be sure not to compute a checksum of the file that contains your checksum! (Consider storing this information on a third-party server.)

Howether, I can't find what I must use in my code to detect an "unwanted" modification inside it.
java.util.zip.CRC32 crc32 = new java.util.zip.CRC32();
crc32.update(whatPutInHere);
I've tried many method related to context.GetApplicationInfo() but no one seems to deliver something that change as soon as the code is modified. Has someone already succeed on CRC32 checksum implementation?

View 12 Replies View Related

Android :: How Secure Google Checkout For Applications That Access Gmail?

Sep 19, 2010

Would appreciate some comments on whether our Google Checkout is vulnerable when downloading and using apps that request your gmail authentication details e.g.
RSS readers that uses your Google Reader
SMS backup apps that back up to your Gmail account
Picasa photo related software that needs access to your gmail

I was thinking over this weekend that it seems to me that if we supply these apps with our gmail credentials they potentially have the ability to also hack our Google Checkout which doesn't have any secondary level of security other than our Gmail account username/password!

View 6 Replies View Related

HTC Desire :: 25% Off Voucher Code Wave Secure

Jun 23, 2010

Just found a 25% off Voucher code for Wave Secure, so I though I'd post it here, To get it just enter GOAL into the voucher/promotion box for 25% off the price. Valid till the end of June.

View 3 Replies View Related

Android :: Example Code To Pass Value From New Activity To Old In Droid?

Aug 26, 2010

I am using two Activity as Old Activity and New Activity,i want to pass some value from New Activity to Old Activity.how can i pass the value from New Activity to Old Activity. please give some example code for that.

View 2 Replies View Related

Android :: Pass Cookie To Browser Via Intent / Need More Code

Sep 15, 2010

I have saved a cookie in android. Now I want to pass it into my browser intent. Look at my current code:

Intent browser = new Intent("android.intent.action.VIEW",
Uri.parse("http://mypage.php/memberpagethatrequireacookie.php"));
//putExtra cannot take these arguments -> browser.putExtra("org.apache.http.cookie.Cookie", cookie);
startActivity(browser);

I want it to store temporarily in my browser so my member page loads successfully.
My cookie are successfully created from the HTTP request and I assign it to a List<Cookie> cookie;
Tell me if I should provide some more code.

View 1 Replies View Related

Android :: Sample Code To Pass String Argument?

Sep 29, 2010

I am having problem while passing string argument using javascript injection in my android application..
I am using the code...

, but m not getting the exact output..

I want to connect my login form (locally created) with website, so that whenever user enter userID & password in my login form, it automatically get added to that website login form..

View 2 Replies View Related

Android :: How To Pass Class Instances Between Applications In Droid

Mar 18, 2010

I have an application App1 which defines class A and uses instances of this class. What I want to achieve is - after App1 is installed on the device to be able to load App2 which defines and implements class B which is subclass of class A (imported from App1 package); and be able to get an instance of class B in the App1. Class B doesn't add any new interfaces, so using it as class A is ok. But I am not sure how to pass the instance of class B to App1 (preferrably without any user interaction).

Can anyone advise if this is feasible?

View 1 Replies View Related

Android :: Pass User Defined Intend Actions / Can I Create Own And Use In Code

Oct 5, 2009

Is it possible to pass user defined Intend actions?

That is instead of using predefined Intend actions like "ACTION_MAIN" can I create my own action and use it in my code?

If so how do I do that?

I have been surfing for this detail for long but dint find anything useful. Can any of u help me regarding this?

View 2 Replies View Related

Samsung Moment :: App Or Option Where Can Use Pass-code To Unlock Phone Rather Than Pattern?

Nov 26, 2009

This was pointed out earlier by someone on a thread and I couldn't seem to find it. But just to point it out again the moment can be turned off or put on airplane mode even while its locked. This may be a bad thing if someone steals your phone and you want to use someones phone to either call or text it so that it will ring to find out who has it. All the thief has to do is put it on airplane mode or turn it off to deactivate ringers, sound, and gps.

Is there an app or option where I can use a passcode to unlock the phone rather than the pattern?And is there a way to track my phone through gps just in case it's lost or stolen?Any ideas or suggestions if a device someone rely relies on a lot is lost or stolen? My friend on his moment was able to add a message on the home screen saying "If found please contact "phone number" "email" and will be given a "$300" reward.

View 4 Replies View Related

Android :: Get List Of Non System Applications

Jul 22, 2010

I'm able to get a list of installed packages using the package manager, but this includes various system packages . Are there any filters i can apply on this list to only show the apps that would show up when bringing up the application list from the home screen?

View 2 Replies View Related

Change Android System Settings By Code?

Jun 7, 2012

changing android system settings by code. System Settings like:

Ringtones
Vibration
Volume
Brightness
etc

View 6 Replies View Related

Android :: Get System Identification Code Of (SID) A Phone In Droid?

Mar 4, 2010

I'd be much obliged for information regarding how can I get the System Identification code of (SID) a phone in android ?

View 1 Replies View Related

General :: Change Android System Settings By Code

Jun 8, 2012

some tutorial for changing android system settings by code.System Settings like:

-Ringtones
-Vibration
-Volume
-Brightness

names of the classes in which I have to look into, it will also be useful.

View 2 Replies View Related

Android :: How To Explicitly Launch The System's Home Application By Code

Mar 10, 2009

How to explicitly launch the system's Home application by code?

View 11 Replies View Related

Android :: Code To Uninstall Applications?

Jul 2, 2009

I wan't to uninstall applications using my application... I can retrieve the list of packages installed but I don't know how to remove them... I used the PackageManager class, getInstalledApplications() method... I can't find any method like removeApplication() or uninstallApplication().

the only method I saw in this class is the removePackageFromPreferred (String packageName) method... It retrieves a list of preferred packages.. I don't exactly know what preferred packages means or somehow how to retrieve them... I tried to put a package name in the method "removePackageFromPreferred (com.dev5.fivegame)" but it gives an error...

View 11 Replies View Related

Android : Want Sharing Code Between Applications

Jul 24, 2010

I want to create a "main" service/application which will provide different functionalities to other applications. According to android docs I can use elements from an application/ service in other. "A central feature of Android is that one application can make use of elements of other applications (provided those applications permit it). ...". There is any examples/documentation on this direction? TicTacToeMain/TicTacToeLib example is not helping me because it seems "TicTacToeLib" will be embedded in final TicTacToeMain apk file. Also I want to ask if is possible to detect if "main" service/ application is missing (if is missing I want to tell user to install it, or to install it automatically).

View 2 Replies View Related

Android :: Copilot On Magic - Invalid Library Code Cannot Load By System

Oct 2, 2009

I have just bought an HTC magic which had a copy of the co-pilot app on the SD card. I have installed the app but when I try to run it it comes up with the co-pilot screen but says "Invalid Library CoPilots code cannot be loaded by the system"

View 2 Replies View Related

Android :: Sharing Code Between Applications As In Eclipse

Aug 26, 2010

I have ten, possibly more, apps I'm developing that all share logic. 50-75% of the logic is the same - perfect for some time of library or code sharing. However, after reading the posts here and trying to share code in Eclipse, I'm not sure that's going to work. I tried going to project -> properties -> build path -> link source and adding the src and gen folders of the project with the shared code and then importing the classes I need. That seems to work in the IDE, but gives an error during runtime: class not found. This seems to be a common error for people attempting this.

I am slowly deciding that shared code is not the best approach in this scenario. Android doesn't seem to work well with this type of code sharing. For one thing resources are not packed in libraries, but references (R.whatever) must exist so as not to create errors. This can be designed around, but the effort and headache is probably worse than simply creating multiple copies. My experience seems typical, based on what I've read. Is it? Have you experienced success or failure with sharing code and/or custom libraries? Am I off-base in thinking that multiple code copies will be smoother sailing than fighting the shared code approach?

View 5 Replies View Related

Android :: Common Code For Two Similar Applications?

May 7, 2010

I have a set of common code (including .java files and resources), which I have to use for two similar applications with different package names (for different vendors). How can I maintain two packages which share the common code without making two copies of the common source?

View 3 Replies View Related

Android :: How To Reuse Code And Resources In Several Applications

Oct 7, 2010

How can I reuse code AND resources in several applications? I have a fairly large code base (including resources) that I want to reuse i several applications. How can I do that?

I did try to use the Android Library concept (http://developer.android.com/guide/developing/eclipse-adt.html#libraryProject) but never got it to work in Android 1.x

I'm amazed by the lack of information on the subject. It seems like Google has aimed Android development at pet projects and not real development. Variant handling should have been solved ages ago.

View 1 Replies View Related

Android :: Proxy Related Code Changes Needed In Applications

Sep 29, 2010

We recently came to know that a lot of Mobile Carries in Asia/India have proxy enabled to get Internet access via mobile. It turns out our App does not work when the phone has internet via proxy setup (APN). Does the APP need to handle proxy individually?

View 4 Replies View Related

Android :: Release Several Droid Applications With Same Code Base?

Aug 22, 2010

I want to release multiple applications to android marketplace which are all very slightly customized based on a code base. I can't just change the package indentifier in the AndroidManifest.xml file because several other things dependet on this like action identifiers and so on.
What is the best approach to release several apps based on one eclipse project with the same code base?

View 1 Replies View Related

HTC Eris :: Copilots Code Cannot Load In System

Mar 28, 2010

I had a non-market copy of copilot running fine on my eris when I had 1.5 on it now that I rooted and installed 2.1, when I try to install it it comes up with an invalid library error (copilots code cannot be loaded in the system ). Anyone have a work around other than downloading it from the market? I travel in remote areas sometime and I'm scared that I may be out of data range sometimes with google nav.

View 1 Replies View Related

General :: Factory Data Reset On Rooted Android With Some System Applications Removed?

Dec 27, 2012

I rooted my phone to uninstall some bloatware system apps several months ago. Now, I need to perform a factory data reset just to remove the Google account associated with it. Is it safe to do so or will I lose any further system apps or worse, brick my phone? I have the apk's of the system apps that I removed, but for some reason I am not able to restore/install all of them. I used ES File Explorer back then to remove those apps. [My phone is Samsung GT-I5801 running Android 2.2]

View 2 Replies View Related

Android :: Shared Code Project Across Applications In Common Library

Apr 14, 2010

I am currently moving from Xcode and iPhone development to Android with Eclipse. I want to have a shared code project so that I can store all the code to be shared across apps in one common library. However it would appear that the only android project available is for applications and not for code libs how can i achieve this?

View 4 Replies View Related

HTC Incredible :: Can't Sign Into Application Store Pass Invalid Go To Recover Pass?

Jul 13, 2010

I was just on there yesterday i go into browse tonight and now all of a sudden it says pass world invalid from last night till this morning i tried typing in the little letters they had and I cant read it so I go to the google site. I put the info in and it says sorry account has been terminated for terms and conditions I didnt even do any thing to violate them?

View 1 Replies View Related

Motorola Droid :: Moving Applications To System - Missing Something

May 12, 2010

I would like to move a few apps (such as Terminal Emulator and OSMonitor) to the /system/app folder. I'm able to get them moved, then chmod them to 644, but upon trying to launch them, they force close. Am I missing something?

View 19 Replies View Related

General :: Backup APK Files Of Both User And System Applications?

May 13, 2013

I am searching an application that allows me to backup the .apk files of both user and system applications like AppWererabbit (http:url...). The problem is that i need this app to be compatible with android versions below 4.0, i.e. android 2.3.X.

I have already installed titanium backup on my phone, but i miss the ability to set an automatic .apk backup when each system/user app is updated. I think that to keep .apk files of older versions of the same app could be usefull.

View 8 Replies View Related

General :: Stop Some Applications From Starting On System Startup?

Jul 10, 2012

Is there any way to stop some applications from starting on system startup? I means not killing them. just don't let them to start.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved