I need to add a shake feature in my android application. I am planning to do this :
First time user will shake phone and register one shake pattern, this shake pattern should be stored in local SQL Lite database. Next time when user open application at that time application will ask user to shake his/her phone again and previously stored shake pattern will be match. If its same then application will allow user to access something.
How much feasible is this idea? This idea will work robust fully?
As I now I am able to store shaking speed in database and next time I am trying to match with previously registered shake speed. This is working but it not looks secure way to verify user.
Guys, Please share your ideas for the same. It its possible then how can I implement in my application, please give me hint or tips.
Thanks in advanced.
Regards
Related
Is it possible to have some controls on a mobile phone. ( Working for a company )
I want to do something like:
Disable access to parameter
Disable call
Disable play store
Disable message
...
Enable only my application for my company
I thaught that I could made my own system, but it's seems to take so much time. So if someone has an idea. Thanks
I am looking to create an app that monitors an online sql database and alerts the user if records change. In case you're interested, the database is being updated by a computer as to the state of some sensors the computer is monitoring. I have already got the database and monitoring computer working perfectly and have made an app to see the data in a list view. What I want is an app that opens on start up and runs in the background constantly and when changes occur can trigger an alarm and a toast telling me what's going on. I suppose it's similar to all the push notifications your phone gets from facebook and the like but I intend the app to be actively querying the database.
Anyone able to help or point me in the right direction? I've looked around but can't seem to find the info. I'm sure it's there, I must just not be using the right terms.
Thanks for your help.
So basically here is the systems approach to what you're trying to do. You're going to want to establish some sort of websocket on your backend and some sort of NoSQL like Redis to help manage the pub/sub part to your Android App in order to stream live updates from your web/database server. Then when you go to update the record in your database you also send information over the websocket to your Android App.
That's the gist of how that type of thing works.
i am going to implement emergency calling in cordova phonegap. For safety purpose, app which can provide calling functionality (user can save emergency phone number using app user can edit whenever he/she want).
I cant find way to move forward. please help me out. I even dont know is this possible or not using cordova.
i wanted to know is there any way to find what pattern was made in the pattern unlock of android.
i mean i want to know what pattern has been made by the user while trying to unlock the phone.
there are broadcast receivers that inform u when the phone is unlocked..... but i want to know whether there is any way i know the pattern every time user tries to unlock correctly or falsely.
Are there any receivers that inform the application at every unlocking pattern?
Thank you..
Thankfully, this isn't possible - it would represent a significant security flaw. Imagine logging the passcode used to unlock an iDevice...
Frankly, I can't see any beneficial use of such a function either. I'd have expected that such things were strictly used for malicious purposes. Why would you be interested in such data?
I am working on an android application which can be used to capture the sequence of user interaction on android device. Starting from when the device is powered ON.
This is to be done by an application, based on the users event a script (Comma (,) delimited text format) will be generated which can be used further to played back the records of events.The application must have various button to start, pause, stop button for recording, script creation should also work according to button pressed.
Is it possible to keep track of record of user interaction from background in android?
I didn't get anything about this. Any help or suggestion is well appreciate.
The application you are describing is a KeyLogger. Unless you have root permissions you cannot do this. If you could it would represent a huge security gap in android. It would allow any app to capture credit card numbers, passwords, email address, etc...
Your only options are to use root privileges or write a custom android keyboard; however, that will only let you record keystrokes when your custom keyboard is used.
A better question is what are you trying to do, as there is probably a better way to acheive what you want.