Re: [android-developers] Google banned AdSense account, and will not pay money earned with Paid App

2013-11-30 Thread Nando
That's confusing. So you had a AdSense account with with $4.000 in it but you never got a pin because you needed $10? The account is verified by the end of each month, in you had in there more than $10 you could get the PIN. What might happen is that it may not be sent right away. -Nando

[android-developers] Scrollview inside ViewFlipper?

2011-09-04 Thread Nando
ck the the action but I can't get the horizontal action to work. Any ideas on how to properly pass the event? -Nando -- 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@google

[android-developers] InputStream broken?

2011-03-30 Thread Nando
e SDK and still I see this happening. I suppose InputStream is not working as intended. -Nando Sent from my Sinclair ZX81 -- 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@g

Re: [android-developers] NFC connection between 2 Android-devices

2011-03-16 Thread Nando
Yes it is possible, starting from 2.3.3. -Nando Sent from my Sinclair ZX81 On 16 March 2011 17:31, Marcin Orlowski wrote: > > On 16 March 2011 18:25, Benjamin wrote: >> >> i have a question about nearfieldcommunication: Is it possible to >> establish an connection b

Re: [android-developers] Re: Removing applications programatically.

2010-06-30 Thread Nando Android
Thank you NightGospel! On Tue, Jun 29, 2010 at 11:48 PM, NightGospel wrote: > Hi Nando, > > When a package is installed or removed, system will broadcast out the > messages: "android.intent.action.PACKAGE_ADDED" or > "android.intent.action.PACKAGE_REMOVED". &

Re: [android-developers] Removing applications programatically.

2010-06-29 Thread Nando Android
:52 PM, Mark Murphy wrote: > On Tue, Jun 29, 2010 at 3:40 PM, Nando Android > wrote: > > Is it possible to remove an application programatically? > > If you write your own firmware, yes. I am not aware of a means in the > SDK to trigger the uninstall process. > > > Wh

[android-developers] Removing applications programatically.

2010-06-29 Thread Nando Android
Is it possible to remove an application programatically? If so, shall I look at the package manager for that or is there an example some place? When a package is installed, I believe there is a broadcast message to the system saying that. Is it possible to capture that broadcast message? Maybe

[android-developers] How to get the license type of each installed package

2010-06-28 Thread Nando Android
Hello all, Not all the packages have license information and I am not sure if those that do have that on the manifest but it doesn't seem like it. Therefore, is there a way to extract the license of all the packages installed on a Android system? Thanks. -- You received this message because yo

Re: [android-developers] Re: Download and install application

2010-06-26 Thread Nando Android
> > On Jun 26, 4:47 pm, Nando Android wrote: > > Hello all, > > > > Is there any howto on donwloading via HTTP an application package and > > installing it afterwards? > > > > Thanks. > > -- > You received this message because you are subscribed to

Re: [android-developers] Re: How to fetch phone's phone number or unique ID

2010-06-26 Thread Nando Android
returns the phone number, which > is probably not what you really want on a GSM phone. It might not even > be what you want on a CDMA phone, since there are obsure models with > two lines, and even more obscure models that take a SIM even on CDMA. > > On Jun 25, 2:36 pm, Nando Android

[android-developers] Download and install application

2010-06-26 Thread Nando Android
Hello all, Is there any howto on donwloading via HTTP an application package and installing it afterwards? Thanks. -- 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

Re: [android-developers] How to get the version of installed apps

2010-06-25 Thread Nando Android
Perfect, thanks! I had the VersionName before. On Fri, Jun 25, 2010 at 3:41 PM, Mark Murphy wrote: > On Fri, Jun 25, 2010 at 5:36 PM, Nando Android > wrote: > > How can I get the version information of the current installed apps on my > > phone. > > If I do : > >

[android-developers] Accessing APNs on the phone

2010-06-25 Thread Nando Android
Hello, How can I get the information on this phone regarding its number, carrier, etc? I have tried this: String names = ""; Uri contentUri = Uri.parse("content://telephony/carriers/"); Cursor cursor = null; try { cursor = getContentResolver().query(contentUri, new String[]{"name"}, null, null

[android-developers] How to fetch phone's phone number or unique ID

2010-06-25 Thread Nando Android
Hello, I wonder how could I fetch the phone's phone number or an unique id to identify it? Thanks. -- 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 fro

[android-developers] How to get the version of installed apps

2010-06-25 Thread Nando Android
Hello all, How can I get the version information of the current installed apps on my phone. If I do : PackageManager packageManager = getPackageManager(); List packs = packageManager.getInstalledPackages(0); int size = packs.size(); apps += "\nTotal apps = "+ size+"\n"; for (int i = 0; i < size;

[android-developers] How to simulate a SMS

2010-06-24 Thread Nando Android
Hello, I've once read that you could telnet to a device to simulate a SMS to it. Meaning, sending a SMS to it. I do not know where I've read it. Does anyone knows how to do that? Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

[android-developers] How to setup Exchange progamaticaly

2010-06-24 Thread Nando Android
I would like to write a simple program to enter Exchange setup information. Is it possible to do so? Given a phone, this app will run and setup all the server, username, password, information so that it does not have to be done by hand. Thanks -- You received this message because you are subsc

Re: [android-developers] Re: Code repository to learn by examples

2010-06-07 Thread Nando Android
Thanks John! On Thu, Jun 3, 2010 at 7:22 PM, Maps.Huge.Info (Maps API Guru) < cor...@gmail.com> wrote: > Try here: > > http://code.google.com/hosting/search?q=label%3AAndroid > > This is a great place to find quality examples of full apps. > > -John Coryat > > -- > You received this message becau

Re: [android-developers] Code repository to learn by examples

2010-06-03 Thread Nando Android
Correct. TreKing. On Thu, Jun 3, 2010 at 12:49 PM, TreKing wrote: > On Thu, Jun 3, 2010 at 11:03 AM, Nando Android wrote: > >> Is there any source code repository for Android apps so one can learn by >> example? > > > You mean aside from the samples in the docume

[android-developers] Code repository to learn by examples

2010-06-03 Thread Nando Android
All, Is there any source code repository for Android apps so one can learn by example? Thanks. -- 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 th

Re: [android-developers] APIs to access email accounts or SMS/MMS messages

2010-06-03 Thread Nando Android
I am interested on that too. But what I want to do is to know how many SMS messages were sent and received. That is, I need to know stats. Is it possible? Thanks. On Mon, May 24, 2010 at 6:54 PM, sojan P.R. wrote: > What you want to do..reading emails and doing something automatically? I > th

Re: [android-developers] Re: SMS database access

2010-06-03 Thread Nando Android
: > There are undocumented content providers that allow "access" to SMS > databases. However they are subject to change, and can, and do differ > between devices. > > On Jun 3, 10:41 am, Nando Android wrote: > > Hello all, > > > > I believe the Java API do

[android-developers] Exchange server usage and settings

2010-06-03 Thread Nando Android
Hello all, Is there any way to log how the Exchange server is being used on the device? What can be obtained about Corporate email traffic and usage? Is it possible to change settings programatically for those accounts? Say, a domain is changed or a server is changed. Can I do those settings ch

[android-developers] SMS database access

2010-06-03 Thread Nando Android
Hello all, I believe the Java API does not give full access to the SMS database and other databases. Is there any way to have root access to some of those databases such as SMS and phone settings so that I can fetch some information out of it? Thanks -- You received this message because you ar

[android-developers] Maven and Android

2010-06-02 Thread Nando Android
Hi all, Is there any documentation out there that shows examples on how to start Android projects with Maven? I like Eclipse to develop and debug but I like to use Maven to create the project and control which jars are on the repository and need to be fetched from the Internet. Any suggestions o

[android-developers] How to access and change settings for the phone and email accounts

2010-06-01 Thread Nando Android
Hello, How can I get and connect to the internet Database of the device so that I can: - Obtain the phone number and other carrier information associated with the device? - Obtain email settings of the device? Is it possible to change the email settings via an app on the device? Thanks. -- Yo

[android-developers] How to best work with web services? REST

2010-05-31 Thread Nando Scheidecker
Are there any examples out there to best work with web service? I know that there is a port to SOAP stuff in the kSoap implementation. However, kSoap might be too heavy for me. Instead I was hopping for the device to be able to talk to RESTful services instead. Is there any good example on a RE

[android-developers] How to access and change settings

2010-05-31 Thread Nando Scheidecker
Hello, How can I get and connect to the internet Database of the device so that I can: - Obtain the phone number and other carrier information associated with the device? - Obtain email settings of the device? Is it possible to change the email settings via an app on the device? Thanks. -- Yo

Re: [android-developers] Re: HTTPS to acces my wcf from android appli

2010-05-31 Thread Nando Scheidecker
All you have to do is to specify https. For instance: HTTPRequestHelper helper = new HTTPRequestHelper(myResponseHandler); helper.performPost("https://localhost/service";, user, pass, null, null); On Mon, May 31, 2010 at 12:56 AM, Lamia Hannoun wrote: > Well i tried to change my app.config file

[android-developers] How to develop faster without the emulator?

2010-05-31 Thread Nando Scheidecker
All, Every time I have to bring the emulator (even on a fast Linux machine) to test an app is quite painful. What would you suggest to speed up the development of an app w/o usinf the emulator? I thought that JUnit for the logical parts would help. Basically, I want to be able to test the app w

[android-developers] How to install an app programaticaly on Android

2010-05-24 Thread Nando Android
I was hoping to write a service on Android that would list all applications installed as per previous post. Then, It would decide to update automatically some apps and install others. Is there any class on the SDK that has this kind of functionality? That is, can I call some API or code to instal

[android-developers] Add more options to WifiManager settings.

2009-01-26 Thread Nando
Hi, Is it possible to add more options to the Wifi Manager settings area? I mean for example when we long press a discovered wireless network it popup a box where i can choose to connect, and i wanted to add more options in there. Can this be done? Thanks. --~--~-~--~~~--