app

Problem with iTunes and change a resource file on an app without compile again with xcode

Hi, I have a scenario to fill for a client: he want to have an ad-hoc app, were he can change a file (in this case an .xml file) when he want, without using xcode (because they dont have any mac). I created this file, but when I change something inside, copy to itunes again and I try to install, it says that the resources has been modifi...

iPhone add Icon to app

Hi, i have a icon (57x57 pixels) which i copyied to recources and addet it to info.plist but i don't see it on iPhone. Can someone help me? ...

What is the easiest way to get ads on an app?

I am developing android apps, and I want to start giving them away for free. I am wondering what the easiest way to put ads in the apps is, and what way is the best? I am signed up for Google Checkout, AdSense, AdMob and AdWhirl. I have been trying to put ads in my app for two hours now with AdMob/AdWhirl and I can't get it. So I suppos...

Using ActionChooser with Attachment for email and Facebook-App in Android

I trying to create a "publish" button for an image in my android app, that works with the Facebook App and Email. This is my code (imagePath is something like "/sdcard/myapp/image.jpg" Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("image/jpeg"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+image...

Would a scheduled Java app run when Windows is in sleep mode ?

If I start a Java app, it initiates and does some work then goes to thread sleep for an hour, then wake up after an hour and does some more work ... But my PC is running Win7 and after 15 minutes of inactivity, it will go into sleep mode, so my question is : an hour from I started the Java app, if I don't touch the PC, and it goes into ...

iphone - how to clear SQLite database?

I have an iphone app that is using a SQLite database, everything works and I can save the database to file and load it back up when the app is reloaded. But the problem i'm having is that I don't know how I can clear the database and start over from scratch. I have tried deleting the database file, doing so will cause the app to start a...

iPhone Image Resolution

I am creating an app that has images in a picker view, but I have noticed that these images appear pixelated. Currently, I have the resolution set at 72 pixels/inch. I have increased it to 300 pixels/inch, but have not noticed a change. Has anyone run into the issue? ...

HTML5 App Cache not working with POST requests

Hello, I'm working on a web application and I went through the necessary steps to enable HTML5 App Cache for my initial login page. My goal is to cache all the images, css and js to improve the performance while online browsing, i'm not planning on offline browsing. My initial page consist of a login form with only one input tag for en...

Country-Specific EULAs for Android

The Android app EULA has to be part of the app and is generated using the eula class. It appears to be USA specific. Is there a way to automatically generate country-specific EULAs in Android? On the iPhone, iTunes does this automatically. Has anyone had any experience in this area? ...

GAE - retrieving the last entry (python)

I am trying to get the most recent data item from the datastore. I am trying to apply the method as explained here but I am getting the object <__main__.Rep object at 0x075F1730> not the item. Can anyone explain what I am doing wrong? The Model is: class Rep(db.Model): sent = db.StringProperty() time = db.DateTimeProperty(auto_...

GAE import error

Hello, I am trying to use this python module HTML.py but GAE gives me ImportError: No module named HTML According to IDLE path browser the path is here: C:\Python26\lib\site-packages\HTML.py Can anyone help me to fix this problem? Thank you ...

Android application - cost estimation

Hi guys, I am developing Android application for the company. They want me to create digital newspaper that would: Display list of headlines for each category/subcategory Will have 4-6 categories and 4-8 subcategories for each category Display article with text and images, Play podcast, Save downloaded articles/headlines in db They ...

Architecture sketch for iphone stock app

I am currently trying to build a (simplified) stock app (like the one built-in on the iphone). I setup a simple server with a REST-interface which my app can communicate with. However I am struggling to find the right/best way to build this kind of (streaming data consumer) client on the iphone. My best bet at the moment is to use a ti...

Reserve the App Market URL in advance

We are currently developing an android app for our client. Client would like to include a barcode on a it’s mailing about the Android app, such that when the user scans the barcode, s/he will be taken directly to the application on the Android marketplace for download. To do this, client will need to know the exact URL on the marketplace...

Apple Ipad/Iphone Photos App - Delete Photo Animation

Hi, I am looking to create the animation like the one used in the photo app for ipad/iphone for deleting a photo. The photo needs to move to the recycle bin. is this a standard animation? or do we need lots of coding? ...

What to do with "invalid binary" in itunes connect

Hi I uploaded my app through the application loader, everything went fine. But then, after 30 min of waiting approval, my app gets rejected everytime with "invalid binary". I don't receive any mail, although I'm supposed to get one with this error message... I build my app in "debug" mode, is that the possible problem ? Thanks ...

Facebook sometimes fails to resize

For some reason the .autoresize(); fails and the iframe is left at its default size. I have seen it on some of the big apps like Mafia Wars even. Does anyone have a hack to fix this? I have to solutions, one is to reload the page (9 times out of 10 that fixes it), the other is to break out of the iframe. The problem is how can I detect t...

Facebook like button title on page

Hello I have a like button set up on my app. The link to one of the pages in the app is http://apps.facebook.com/heyulike/post3.php?id=4 If you click on the like button and then check your profile, you will see something like : Name likes Cool Pos on heyulike Everything is fine about this except in my php code, after Cool Po...

How can I implement a fake phone call simulator in an android app?

Suppose I want to make a fake phone call app, similar to this iphone app: http://magictap.net/fakecalls/ I've got an AlarmManager that is set to send a PendingIntent to my BroadcastReceiver. Once the BroadcastReceiver receives the intent, I want the fake phone call screen to display on the device (suppose I already have the UI for this ...

Background app drains too much battery

I have developed an application for iPhone that runs in the background with GPS mode on. I need to ask the server if there are any new tasks for the user? Fir this purpose, I have added the code in the didUpdateToLocation method. Now the problem is that it consumes the battery very fast. Please guide me how to avoid the battery consumpt...