Delete whatsapp messages of a particular number programmatically in android [closed] - java

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am creating an app where user can delete all history of a particular number or group of numbers. I am able to delete calls and sms was just thinking if there a way to delete message/chats related to a particular number from whatsapp pragmatically in android. As whatsapp is also a popular source now. Any views/directions would be helpful.
Thanks in advance.

No, you cannot do this.
WhatsApp is a third party app, and does not provide an API for you to edit their data. On a rooted device you may be able to gain access to their databases, by they are AES encrypted, and you will have a tough time editing them on the fly.

You can't access to other app. But if your device is root, you can access to database of Whatsapp

Related

Better Text to speech in Android [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
The default voice is not suitable for every purpose. Is there a way (some jar or some online API) by which we can have more natural speech.
Ps. my app is for prayers where computerized voice is not good enough and I don't want to ship self-recorded audio with the app.
You don't have to use any external JAR.You need to install another suitable text-to-speech engine for your application.(I think Loquendo is good option See here)
you can use following steps-
1)Get the APK of TTS engine
2)put it in your asset folder
3)install this APK from asset folder to android device when user install your app for the first time
4)set this TTS engine as your Default TTS engine
5)You are ready to go.
You can do other checks like:
a)if device has already have Loquendo install then no need to re-install it
b)if user does not set Loquendo as default TTS then prompt the user.
c)programmatically change the TTS language as per your need

how do i create/use an online user database for android app? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I want to create an user database online so people can create accounts via an android app and login. How can this be realized?
Your android app cannot connect directly to the database. You'll need to create a server side service layer that serves as an API between the Android app and the database. For example, if you want to get a list of all users, your app will make an HTTP GET request to
http://example.com/api/users
This script will query the DB for a list of all users, and respond back to the application with the data encoded as either XML, JSON or any other consumable format.

Possible features for MDM in android? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm doing a Mobile Device Management (MDM) solution for android device. I have found out few feature that are possible for this application:
Remote lock
Wipe data
Password policy
Disable Camera
Manage Applications
I have done all the things mentioned above. Is there any other possible feature that I can include in my application ? some feature using native android programming ?
I think there are alot of things to do in the arena of MDM policy and its implmentations like for example:
Backup/Restore.
New apps Installation notifications.
GPS tracking and mapping.
and for more information about those implmentation you can start by reading the following here
Some I can think right off the bat are:
Monitoring : Administrator can monitor device status .A lot of info available here, like battery, location, uptime, network usage history etc.
Settings : Administrator can configure the device.

mass mail application java versus php [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to build a mass mail application to send around 20 lacs mail per day. I need some suggestions regarding the technology choice between php and java.
Please suggest.
Either would work.
Java is typically good for bigger projects because it is strongly typed and good for collaboration, but a mass mail application might be simple enough to make that unnecessary.
Most people think of it as easier to do web stuff in PHP, so if you want this to live in a website, you might want to use PHP.

What is the best way to push data to the device? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I am making a web app that needs to communicate with the Android phone, what is the best way to get data from the web app to the phone? I have heard of C2DM but I don't know any good guides for it. I have tried polling, but that is way too heavy on the battery. Whats the best way to accomplish this?
The best practice is the following: using C2DM your phone should just receive a notification about the event. Basing on this event you connect to a resource and download necessary information. This and this resources I used when I've tried to develop my C2DM application.
As well as C2DM you could also look at services such as Urban Airship or if the communication with the device is interactive then you could look at a realtime web technology.

Categories

Resources