[android-beginners] Re: Invalid apk file

2009-08-24 Thread Sean Hodges
Which version of Eclipse are you both running? I've not come across this problem before, but its possible that your emulator needs resetting. Try running: emulator -wipe-data from the command line to reset the data image. Sean On Sun, Aug 23, 2009 at 2:57 PM, Ivan wrote: > Does anybody has a

[android-beginners] Re: 3 icons for one app

2009-08-18 Thread Sean Hodges
Can you post up your manifest file? On Tue, Aug 18, 2009 at 2:41 AM, tinyang wrote: > I am developing an app and so far it has 3 complete acticities.  For some > reason, everytime I install it and run it in my emulator, it creates an icon > for each activity instead of creating only one activity

[android-beginners] Re: Android SDK

2009-08-11 Thread Sean Hodges
You have not downloaded the Android SDK. You have downloaded some random Java applet called "Anfy" that has something to do with manipulating images. Please download the *Android* SDK from here: http://developer.android.com/sdk/1.5_r3/index.html Regards, Sean On Fri, Aug 7, 2009 at 9:07 PM,

[android-beginners] Re: Learning? Windows or Linux?

2009-07-30 Thread Sean Hodges
Eclipse works just as well in Linux as it does in Windows. The error you are getting can have several manifestations, try pulling any third-party .jars out of your project and start Eclipse using the -clean switch. Building from command-line works as well, you can write a build script in ANT or m

[android-beginners] Re: Supposed to use javac?

2009-07-30 Thread Sean Hodges
> I thought I had read that Android does not use Sun's Java because > of copyright issues but rather uses Dalvik, which is not 100% > compliant. Where did you read this? Dalvik is a JVM implementation optimised for the mobile platform. It isn't a Java SDK, hence no javac. --~--~-~--~

[android-beginners] Re: Folder under raw or drawable

2009-07-29 Thread Sean Hodges
On Wed, Jul 29, 2009 at 10:35 AM, BORO wrote: > > Hi. I would like to create a folder (s) under raw or/and drawable > folders. > Is it even possible and why not? According to the documentation it > seams that folder names are limited to a specific set of names which > have to do with phone setting

[android-beginners] Re: multiple image attachment

2009-07-28 Thread Sean Hodges
On Tue, Jul 28, 2009 at 12:33 PM, SrilankanKK wrote: > > Hi > > i have put this question on several time on this forum. But i didn't > get any answer. > It's fine to bump a unanswered post after a few days, but please don't post to multiple lists at the same time. You just infuriate the other

[android-beginners] Re: XML and Java/Android

2009-07-26 Thread Sean Hodges
elegos, The official dev guide provides an example for XmlPullParser: http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html Bear in mind XmlPullParser has some specific uses. If you are looking for an alternative to SimpleXML then you should probably look at basic SAX parsing,

Re: Automatic Updates - iphone vastly superior (Was Re: [android-beginners] Re: Availability of Developer Phone.)

2009-07-24 Thread Sean Hodges
Shawn, I fail to see how this is a problem with Android. As Mark has stated repeatedly, it is the carrier who pushes OTA updates for the devices, not Google or the android-beginners mailing list. The issue you describe sounds like the blame rests solely with NTT DoCoMo. They are the ones pushing

[android-beginners] Re: Is it possible from Android device to access a local pc?

2009-07-23 Thread Sean Hodges
Android supports bluetooth, Wifi (local networking) and USB. Which one you want will depend on your requirements. For easy sychronisation of files between phone and PC, USB is probably a good choice; assuming you don't require the connection to be wireless. Regards, Sean On Thu, Jul 23, 2009

[android-beginners] Re: [android-beginners]

2009-07-23 Thread Sean Hodges
An intent is an instruction you send so the system will perform an operation. You pass in a command in the form of a context string, such as "android.intent.action.DIAL", along with some data, like "tel:01234567890". See here: http://developer.android.com/reference/android/content/Intent.html An

[android-beginners] Re: How Do I Install Market Apps on the Emulator, and other questions about Intents

2009-07-20 Thread Sean Hodges
In addition to option #2, you could write a small application that listens on the intent contexts and acts as a stub for the radar app you want to target. Just accept the data being passed in and send back some static dummy responses. You can then deploy this dummy app on your emulator. This will

[android-beginners] Re: Basic Layout

2009-06-23 Thread Sean Hodges
Carl, Can you post your activity XML? Ill take a look, its difficult to visualise exactly what you are trying to do On Jun 23, 2009 6:33 PM, "Carl" wrote: Why has it got to be s difficult? For a week now I’ve been reading and playing around with code and have still not found the answer!!!

[android-beginners] Re: How Do you enter a negative number into an EditText

2009-06-23 Thread Sean Hodges
On Tue, Jun 23, 2009 at 1:07 PM, MMC2 wrote: > > Can someone please tell me how to enter a negative number into an > EditText? Ensure the EditText box is in focus (the cursor will be blinking inside it), then press the minus key "-" followed by the numerical digits required for your number. > >

[android-beginners] Re: Android Emulator Orientation on Macbook

2009-06-23 Thread Sean Hodges
Ed, F11 and F12 are apparently alternatives: http://developer.android.com/guide/developing/tools/emulator.html You should also be able to start the emulator in landscape/portrait mode using the -skin command switch: emulator -skin HVGA-L -avd emulator -skin HVGA-P -avd Regards, Sean On

[android-beginners] Re: pseudotarget of android build

2009-06-22 Thread Sean Hodges
I hit the same issue a while back. I believe what you are looking for is: make modules On Fri, Jun 19, 2009 at 1:48 PM, Jimmy-Creupagu wrote: > > Same problem... i thought it was something wrong in my > configuration...but maybe there is something missing :S > > On Jun 18, 2:22 pm, nikki w

[android-beginners] Re: Where is tools.jar file

2009-06-22 Thread Sean Hodges
Richard, Have you installed the JDK? tools.jar is bundled in the lib/ directory. http://java.sun.com/javase/downloads/index.jsp <- You want the download labelled "Java SE Development Kit (JDK)" Regards, Sean On Fri, Jun 19, 2009 at 11:40 PM, richard cobb wrote: > After installing Ecilpse an

[android-beginners] Re: How to enable Google search by voice?

2009-06-17 Thread Sean Hodges
Voice search is disabled in the UK as well, from my understanding it has something to do with the build customisations made by the service providers. I don't think you can turn it on, at least I've never heard of a way to do it. Vodafone might be able to shed some light as to why they chose to dis

[android-beginners] Re: Integrate Own Application in Contact Application

2009-06-17 Thread Sean Hodges
No, but I believe it is possible to distribute a new modified Contact app that includes the functionality you want to add. On Wed, Jun 17, 2009 at 11:05 AM, Swissdroid wrote: > > is it possible to add a link to the default contact application which > links to the own application. > > default ther

[android-beginners] Re: REG: Xml to Wbxml using EAS.

2009-06-17 Thread Sean Hodges
These topics are quite specialised, you might get better responses on the android-developer list... The IM app was probably being developed around the same time, or before, the kxml2 component was added. You might get some help with kXML here: http://kxml.sourceforge.net/kxml2/ Regards, Sean

[android-beginners] Re: android' is not recognized as an internal or external command,

2009-06-10 Thread Sean Hodges
Yogesh, >From my recollection, with the 1.1 SDK you don't need to create an AVD, that functionality was introduced later on. You should be able to just type "emulator" and the emulator will launch the built-in AVD. If you actually want more than one AVD, you'll need to upgrade your SDK. Is ther

[android-beginners] Re: 500kb OPML parsing issues

2009-06-10 Thread Sean Hodges
Andy, A simple example is provided on the already linked article for PullParser (http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html) An example for using the SAXParser is available here: http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html If you

[android-beginners] Re: SMS

2009-06-10 Thread Sean Hodges
Janardhan, Sorry, I'm not sure what your question was in the follow-up email, is there something specific that you are struggling with that Balwinder did not provide in his links? There are various ways to achieve the kind of synchronous messaging you want: standard TCP sockets, Web services, Jab

[android-beginners] Re: Hello, Android the book

2009-06-05 Thread Sean Hodges
Yep, I third that. A great beginners book. Keeps you interested with lots of examples. On Fri, Jun 5, 2009 at 4:51 PM, Steve wrote: > > I'll second that!  And it packs a lot of very good material in only > 200 pages, so a great way to get an intro to Android dev in a short > time. > > On Jun 4,

[android-beginners] Re: Suggestion required for displaying a table

2009-06-04 Thread Sean Hodges
Vignesh, Put the TableView inside a ScrollView: Using TextViews to represent the cells isn't particularly complicated. If you are building a table with a large number of rows/columns then you could add them programmatically

[android-beginners] Re: Android marketplace pricing currency

2009-06-01 Thread Sean Hodges
The short answer to both of those is "no". The market is still fairly limited with regards to i18n and currency conversion. This may change in the future, I suggest you raise both questions (separately) on the market forums to try and help this process. On Jun 2, 2009 12:26 AM, "myandroid" wrote

[android-beginners] Re: Getting a reference to the View corresponding to the id passed to setContentView()

2009-06-01 Thread Sean Hodges
I'm not sure why this might be considered the "hard way"... Can you elaborate on why it is not easy for you? In answer to your question; I believe getRootView() would also do what you want: http://developer.android.com/reference/android/view/View.html#getRootView() Regards, Sean On 5/31/09,

[android-beginners] Re: Setting Focus by code in an array list

2009-06-01 Thread Sean Hodges
Hello Mike, I'm not familiar with the code you are using, but I believe you want to use setSelection() inside the "onCreate" method of the activity, something like: findViewById(R.id.myListView).setSelection(0); See here for more info: http://developer.android.com/reference/android/widget/ListV

[android-beginners] Re: Sprite in Android

2009-05-28 Thread Sean Hodges
Vinny, GameDev.net (http://www.gamedev.net/reference/start_here/) and DevMaster.net (http://www.devmaster.net/wiki/Main_Page) are good places to start. There are some good books available too, check out Amazon. In my opinion, you should really gather some experience developing games for the PC b

[android-beginners] Re: Android emulator starts with a dialog promoting what is the HOME

2009-05-28 Thread Sean Hodges
It sounds like you installed an app on the emulator that declares itself as a "home" app to Android. Usually you have a checkbox at the bottom of the dialog that allows you to tell it not to ask again. Worst case scenario; just ditch the whole emulator and re-install it. I'm not sure on how you

[android-beginners] Re: vertical scrolling TableLayout

2009-05-28 Thread Sean Hodges
I'm not sure on the purpose of the scrollbar attributes on the TableLayout, usually if you want scrollbars on a layout, you wrap them in a ScrollView: ... Regards, Sean On Thu, May 28, 2009 at 12:07 AM

[android-beginners] Re: Where are the table layout sample files?

2009-05-27 Thread Sean Hodges
Check out table_layout_10.xml: http://developer.android.com/guide/samples/ApiDemos/res/layout/table_layout_10.html It uses a table containing TextView's and Button's. Basically, you want a series of TableRow views, containing the Button views inside (each View becomes a new cell).

[android-beginners] Re: very very urgent need

2009-05-27 Thread Sean Hodges
Abdelkarim, Take a look at the developer guide for information on data storage, including files: http://developer.android.com/guide/topics/data/data-storage.html There is a tutorial on reading/writing files in Android here: http://www.anddev.org/working_with_files-t115.html As an aside-note: t

[android-beginners] Re: can we use "adb install" or other else command to install all of .apk in a Dir once?

2009-05-27 Thread Sean Hodges
Luke, Perhaps you could run "adb install" across the directory contents? e.g. find ~/Desktop -name "*.apk" -execdir adb install {} \; On Tue, May 26, 2009 at 7:47 AM, Luke wrote: > > Greetings, > As the tittle. > Thx > > > > --~--~-~--~~~---~--~~ You received

[android-beginners] Re: MotionEvent coordinates

2009-05-26 Thread Sean Hodges
I haven't tried this before, but I'd imagine you could construct a region positioned at getX()/getY() with a circumcircle radius based on the output of getSize(). With this approach, you will have to define a relative size for the fingerprint. This may not be useful if you are looking for high pr

[android-beginners] Re: Android on Ubunty 9.04

2009-05-26 Thread Sean Hodges
k wrote: >> >> > I found some post suggesting copying (not renaming) >> >> > /etc/udev/rules.d/50-android.rules. >> >> > to >> >> > /etc/udev/rules.d/51-android.rules. >> >> > It helps. >> >> > regards >> &

[android-beginners] Re: Android source 1.0

2009-05-22 Thread Sean Hodges
Hey Justin, I believe you can retrieve the source from version control (http://source.android.com/download), and switch to the "android-1.0" tag. I'm not sure if/how you do this with the repo tool, but you could navigate into each of the project directories and use git to checkout the tag for eac

[android-beginners] Re: How to donload all the files from this site

2009-05-21 Thread Sean Hodges
Try: wget -r -np http://www.netmite.com/android/mydroid/packages/apps/Browser/ You're probably better off getting it from the official source though: http://source.android.com/ On Thu, May 21, 2009 at 9:56 AM, vineeth Desai wrote: > Hi All, >  Could you please tell me how to download the files

[android-beginners] Re: Cannot create AVD in window XP

2009-05-21 Thread Sean Hodges
Are you sure you downloaded the WINDOWS version of the SDK? I've just downloaded it and there is an "android.bat" inside the /android-sdk-windows-1.5_r1/tools/ directory. You want this one: http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.5_r1.zip On Tue, May 19, 2009 at 1

[android-beginners] Re: Show View object in a View object from layout

2009-05-20 Thread Sean Hodges
I would give it 24 hours before bumping a question. There are people in different time zones who may know the answer, and only haven't responded because they're dreaming of electric sheep. On Wed, May 20, 2009 at 3:47 PM, Junior Einsfeld wrote: > Anyone? > > Regards, > Junior > > On Wed, May 20

[android-beginners] Re: Is there an easy way to make EditText look like TextView but still behave like EditText?

2009-05-20 Thread Sean Hodges
Hello Nikolar, Your emails are getting sent, we've received it 3 times now. Don't Panic :) Drop the "android:" prefix to your style attribute and follow the style convention given here: http://developer.android.com/guide/topics/resources/available-resources.html#stylesandthemes I don't think

[android-beginners] Re: findViewById returns NULL (RadioButton/RadioGroup)

2009-05-19 Thread Sean Hodges
Hello Vignesh, onCreateDialog() is invoked before the dialog is populated, so the RadioGroup widget has not yet been created. You probably want to override onPrepareDialog(). See these sections in the API: http://developer.android.com/reference/android/app/Activity.html#onCreateDialog%28int%29 h

[android-beginners] Re: browser application..

2009-05-19 Thread Sean Hodges
How about you put the games on a website? You get the flexibility of using regular HTML/CSS for designing the site, and people will be able to access it from the Web browser on either their phones or their computers. I guess if you really want to build a client app for this, you could do so using

[android-beginners] How to determine if application is running on the emulator?

2009-05-19 Thread Sean Hodges
Hey all, I'm working on an application which requires a Wifi service. To ensure it does not start attempting to resolve addresses over the cell network, the app automatically starts the Wifi service when it is not available, and determines that connection has been established by polling for an IP

[android-beginners] Re: Unable to get adb to work with my Htc Magic

2009-05-18 Thread Sean Hodges
In Ubuntu/Kubuntu, you need to add a rule to the USB config so that debugging will work: http://telyas.com/wordpress2/2009/04/29/ubuntu-jaunty-and-android-adb/ If you haven't found it already, see this section in the development guide for info on how to set up device debugging: http://developer

[android-beginners] Re: Error Message

2009-05-18 Thread Sean Hodges
(eg. cube > or triangular based pyramid) I have no problems. I wouldn't know which > part of the code to post as there is no Exception it just drops back > to the previous Activity. > > Maybe I need to look at the memory usage or something else while it is > drawing the fram

[android-beginners] Re: Error Message

2009-05-16 Thread Sean Hodges
Well there is really no way of telling from the error dump you've given, it essentially points to a memory fault of some kind, but more likely something like attempting to access a released resource. Can you post up some of the offending code? On May 17, 2009 12:15 AM, "Julius Spencer" wrote: H

[android-beginners] Re: import an existing project

2009-05-16 Thread Sean Hodges
This confused me the first time I used eclipse, but yes, empty packages (including tld's) are shown in the package view. I believe this is partly to allow easy copy/move refactoring of classes across the entire namespace. On May 16, 2009 11:28 PM, "Raphael" wrote: Oh I see. That's just how Ecli

[android-beginners] Re: ADT Plugin

2009-05-16 Thread Sean Hodges
I can confirm, the ADT plugin site appears to be down for me as well. On May 15, 2009 5:39 PM, "medelin" wrote: Hi, I coudn't fetch the ADT Eclipse plugin using the address provided by doc: https://dl-ssl.google.com/android/eclipse/ Someone confirm this? Regards --~--~-~--~~---

[android-beginners] Re: Compiling C/C++ Code and Call It from Java

2009-05-14 Thread Sean Hodges
I'm not an expert, but you are probably looking for the NDK. Also, see this: http://honeypod.blogspot.com/2007/12/dynamically-linked-hello-world-for.html On Thu, May 14, 2009 at 1:23 PM, eka wrote: > > Hi, > > Can I compile my C/C++ code as an engine and then call it from Java as > the GUI? I h

[android-beginners] Re: Source not found.

2009-05-14 Thread Sean Hodges
When does this message appear? When you try to compile your code? Are you using Eclipse, or something else? Try the "Hello World" first, to make sure your environment is set up correctly. http://developer.android.com/guide/tutorials/hello-world.html On Thu, May 14, 2009 at 4:30 AM, aglagla wro

[android-beginners] Re: Android plugins not appearing in Eclipse (XP)

2009-05-14 Thread Sean Hodges
If you go to Help -> Software Updates -> Manage Configuration, is the Android plugin present in the left tree? Does it have an exclamation mark icon against it? On Thu, May 14, 2009 at 11:29 AM, khendar wrote: > > I have followed the instructions on this page (http:// > developer.android.com/sdk

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Sean Hodges
You may need to set your JAVA_HOME environment variable. What is the exact error you're getting? On Thu, May 7, 2009 at 1:40 PM, Dennis Christy wrote: > I'm sorry, I did not explain my problem completely. I just want to create > the AVD so I can run the tutorial. Opening the terminal window i

[android-beginners] Re: Emulator launch error in HelloAndroid tutorial

2009-05-07 Thread Sean Hodges
You want the "command prompt" in Windows. Try typing "cmd" into the launch box in the start menu. On Thu, May 7, 2009 at 1:12 PM, Dennis Christy wrote: > I get the following error in attempting to run the HelloAndroid tutorial: > "Failed to find an AVD compatible with target 'Android 1.5', Launc

[android-beginners] Re: Linux Kernel with SDK 1.5

2009-05-06 Thread Sean Hodges
The kernel version can be found in the .repo/manifests/default.xml in the corresponding SDK. 1.0 = 2.6.25 1.5 (current) = 2.6.27 Cupcake = 2.6.30-rc4 (pulled from latest kernel/common tree) On May 6, 2009 3:25 PM, "ja...@work" wrote: Hi to everybody :) I didn't understand which version of lin

[android-beginners] Re: New Android SDK

2009-05-06 Thread Sean Hodges
Ah, I'm glad its not just me going mad. Thanks for the link dragli, will give it a try later. On May 5, 2009 7:08 PM, "dragli" wrote: Try to create an AVD. Please follow the page below: http://developer.android.com/guide/tutorials/hello-world.html On 5月1日, 上午3時07分, "sbaye...@gmail.com" wrote:

[android-beginners] Re: Eclipse Error: SWT on ubuntu (amd turion )64 bit

2009-05-06 Thread Sean Hodges
I'm getting the same thing with Eclipse 3.4 On May 5, 2009 7:08 PM, "Lorenz" wrote: Hi i've just tried to install SDK 1.5 and I have a big problem, when I try to point the sdk directory(in Eclipse 3.3.2) from "Windows- >Preferences->Android" two windows appear: in the first is written "...pingU

[android-beginners] Re: Android and OpenJDK

2009-04-27 Thread Sean Hodges
I use OpenJDK 6 in Ubuntu, I've had no problems so far. Obviously the Android platform only officially supports the Sun implementation (http://developer.android.com/sdk/1.1_r1/requirements.html), so if you encounter unusual compilation problems it pays to have the Sun JDK available somewhere just

[android-beginners] Re: Android on Ubunty 9.04

2009-04-27 Thread Sean Hodges
I'll be upgrading in the next couple of days, if you don't get your answer already by then I'll let you know how I get on. On Sat, Apr 25, 2009 at 11:10 AM, wonglik wrote: > > Hi > > Does anybody have a problem connecting G1 to Ubuntu 9.04? > > It was working fine for me on 8.04 but now I just

[android-beginners] Re: this site in not available android plug in for Eclipse

2009-04-15 Thread Sean Hodges
Hmm, the site worked for me yesterday, I'm not in front of a pc today to test it but will get back to you if someone else doesn't get there first. On Apr 16, 2009 12:56 AM, "goodboyx" wrote: Can someone tell me where I can find the android plug in for Eclipse. This site is not available anymore

[android-beginners] Re: android and sensors

2009-04-15 Thread Sean Hodges
Hello Nikos, I'm not certain of your intentions, so this might be completely off the mark: A G1 dev phone would give you a degree of functionality, but depending on your requirements the built-in sensors may or may not be accurate or sensitive enough... By purchasing the dev phone you could int

[android-beginners] Re: London Android User Group - 16th April in Clerkenwell

2009-04-05 Thread Sean Hodges
Count me in, sounds good! On Apr 5, 2009 1:37 AM, "DJ Ksar" wrote: Sounds like a great event. Thanks for letting us know. -Randy Ksar http://twitter.com/motodev On Apr 1, 11:10 am, natalieskillsmatter wrote: > We are pleased to announce the next London Android User Gro... > Register now for

[android-beginners] Re: Maximum .apk file size to be uploaded to the gPhone

2009-04-02 Thread Sean Hodges
I meant double digits in MB of course :) On Apr 2, 2009 8:36 PM, "Sean Hodges" wrote: Are you sure you haven't run out of space on your phone? Just how big an app are we talking here? If you are pushing into double digits then you should probably trim it down a fair bit anyway..

[android-beginners] Re: Maximum .apk file size to be uploaded to the gPhone

2009-04-02 Thread Sean Hodges
Are you sure you haven't run out of space on your phone? Just how big an app are we talking here? If you are pushing into double digits then you should probably trim it down a fair bit anyway.. maybe start by compressing the audio data and reducing the resolution of the images? On Apr 2, 2009 5:4

[android-beginners] Re: Menu items and Contex Menu items

2009-03-31 Thread Sean Hodges
Not as far as I'm aware, you'll need to recompile those apps with the new code. Unfortunately some of them are not open source, so you might need to look for alternatives for those. On Mar 30, 2009 6:53 PM, "Mariam Rady" wrote: Hi all, I want to add a Menu item or a Context Menu item that can

[android-beginners] Re: Compiler Version

2009-03-30 Thread Sean Hodges
GCJ won't work (I assume that is what you are trying to use, GCC is a C++ compiler). I don't know where any official lists are, but I think the only supported are Sun JD On Mar 30, 2009 6:53 PM, "linuxjet" wrote: I don't know if I'm just blind but I can not see a recommended compiler version li

[android-beginners] Re: Android?

2009-03-26 Thread Sean Hodges
You have to use the Android SDK, but Eclipse isn't necessary. The SDK is written in the Java programming language (although Android uses a custom JVM). You can initially make do with the various phone emulators when developing, but it's important that you test apps on a real phone before distribut

[android-beginners] Re: Droidweb.com

2009-03-22 Thread Sean Hodges
Enjoying the blog, have added it to my news feeds :) On Mar 22, 2009 7:13 AM, "triplem" wrote: I've recently started a blog / forum dedicated to covering Android. I plan to cover the latest news reguarding Android, including new devices, programs, and other developments. Furthermore, there is a

[android-beginners] Re: I have problem with socket

2009-03-20 Thread Sean Hodges
Can you post up the socket code that you are trying to use? If this is your first time writing socket code in Java, you might benefit from writing a small test program on your PC (not based on Android SDK) that confirms what you are trying to do... An example tutorial that might help: http://java

[android-beginners] Re: Show background applications dialog in front of current application

2009-03-09 Thread Sean Hodges
Interrupting another application with a custom dialog sounds quite invasive to the user. How about displaying a notification icon when you want the user input? Sean On Mon, Mar 9, 2009 at 3:25 PM, denzel wrote: > > Hi, > > I have an app that is running in the background doing some things. > So

<    1   2