Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
555 views

Android battery usage report for developers

On Gingerbread users can report apps for their battery usage, by going to Settings -> About phone -> Battery use, and then tap on a specific app. My question is, as a developer where can I see these ...
7
votes
1answer
116 views

Battery use, what to expect?

I'm making a 2D game for android and I've recently been looking at optimisation. I looked at the battery-use in settings and found that after leaving my game in the foreground (with screen on) for a ...
5
votes
3answers
163 views

How does memory use affect battery life?

How does memory allocation affect battery usage? Does holding lots of data in variables consume more power than performing many iterations of basic calculations? P.S. I'm working on a scientific app ...
5
votes
4answers
3k views

How to get information about android battery usage by application

How can i get battery usage by application in android. I need to know % of battery spent by application. It's possible using SDK? The information that i need, using an android device it's on ...
4
votes
2answers
321 views

Appropriate audio format for sound effects on Android phones regarding efficiency

I profiled my programs, and it turned out a large portion of CPU was spent on SoundPool.play(). The game has ~10 sound files, each under 1 second. Currently they are 64kbs variable MP3s. They are ...
3
votes
2answers
92 views

iPhone4 how to find out if the power cable is plugged in?

I would like to know if my app is running with an external power cable attached. Is it possible to find out this state at runtime? An extra question: would this be able to differentiate between true ...
3
votes
2answers
449 views

Android Static Variable Scope and Lifetime

I have an application that has a Service uses a ArrayList to store in the background for a very long time, the variable is initialized when the service started. The service is in the background and ...
3
votes
1answer
466 views

Do android broadcast recievers consume battery life?

I have two recievers that are listening for android.intent.action.BOOT_COMPLETED and android.intent.action.PACKAGE_REPLACED. I was wondering how much battery life they are causing my phone to consume ...
2
votes
1answer
42 views

What are the units for battery voltage?

I retrieved battery temperature and voltage information using the intent Intent.ACTION_BATTERY_CHANGED and the values I got are pretty weird. I could not get any clue: temperature=270 and ...
2
votes
3answers
295 views

iPhone GPS - Battery Draining Extremely Fast

Will greatly appreciate your help. We are developing an app that has heavy GPS usage and we are unable to optimize the battery life. Even when the device is not moved, there is significant battery ...
2
votes
3answers
122 views

What are the things which reduces (Android) battery time?

In one of our application we need to use the GPS continuesly ,the purpose is to get the user driving speed. Recently I found that while using the GPS continuesly can drain the device battery. If the ...
2
votes
0answers
22 views

How to calculate the amount of battery power used by a particular application in Meego OS?

i'm trying to calculate how much battery power is used by a particular application when i run it on mobile (Nokia N900, Meego OS). i don't know how to do that. how can i calculate accurately? thank ...
2
votes
2answers
576 views

how to find out Battery consumption of each application in android device

Could any one tell me the way, how to find out the battery usage of each application in android device.
2
votes
1answer
369 views

Acquiring PARTIAL_WAKELOCK every 10 seconds

Is there any problem with an application which acquires a partial wake lock at 10 second intervals. My use-case for this is being able to continually monitor the user's movement via the device ...
2
votes
3answers
396 views

How to save the Battery life in Android Phone?

I want to know about the battery usage percentage for each apps and available battery power in the android.
2
votes
2answers
1k views

Is there any battery power consumption benefit if Network Location Provider (vs. GPS) is used?

Is there any real battery power consumption benefit if Network Location Provider (vs. GPS) is used? I believe there should be some benefit, but since I develop on emulator I can not prove my ...
2
votes
1answer
448 views

What are the units for battery temperature and voltage when Intent.BATTERY_ACTION_CHANGED on android device?

I retrieved battery temperature and voltage information using the intent Intent.ACTION_BATTERY_CHANGED and the values I got are pretty weird. I could not get any clue: temperature=270 and ...
2
votes
2answers
224 views

Android battery when working with http

Recently google introduced push to device service, but it's only available 2.2 and up. I need similar system in my app and trying to get around limitations. The issue is battery life. Since user ...
2
votes
3answers
602 views

how to minimize battery drain in a heavy service

I will create a service to do something when some hot situation occurs. By hot situation I mean: the GPS/cell coordinates are in known zone; known Bluetooth device detected; known Wi-Fi network ...
1
vote
2answers
52 views

battery-friendly way to detect if a textbox's content has changed

This question's answers propose using window.setInterval as the only reliable way to immediately detect (without waiting for blur) if a text box's content is changed, given that some textbox changes ...
1
vote
1answer
91 views

Battery notification in every application that is running

Is it possible to have a battery notification in every application that is running? For example: If I'm going to run an application like Angry Birds, is it possible to have some sort of a ...
1
vote
2answers
72 views

what is the battery drain for sending one http request in iPhone/iPad?

I want to know how much of battery is drained if we do X no. of HTTP request. Putting it in different way, if I want to let the iPhone battery be drained by 10% how many HTTP request I have to make ? ...
1
vote
1answer
514 views

iPhone4 vs iPod touch 4g battery life: is there a 50% difference? [closed]

Sorry if this question is not programmatic enough, but it has significant implications to my future development efforts for the iPod. I'm running the same app on a ~3 month old iPhone4 (16Gb) and on ...
1
vote
0answers
54 views

when Bluetooth is in discoverable moed, does it still consume a lot of battery? [closed]

I know that discovering other devices using Bluetooth is very expensive, but I was wondering if being in discoverable mode for Bluetooth also consume a lot of battery ?
1
vote
3answers
151 views

Check Battery Status in a Batch File?

I'm trying to find a way to check the battery status on a batch file, i.e stop the execution of the script if the laptop is running on battery. I'm trying with the poercfg command with no results. ...
1
vote
1answer
174 views

How to learn how many battery charges programmatically on iOS/iPhone/iPad?

Is there any way to learn under iOS using C code how many times the battery has been charged? Thanks.
1
vote
3answers
873 views

Android battery usage keep awake explanation

In the Battery usage screen there is a time for "Keep awake". What does that mean exactly? Is there any documentation somewhere about those numbers?
1
vote
1answer
229 views

Android getting GPS Location on a fixed interval, how much impact on Battery and what goes in the background If we are getting location per hour

Just watnted to know if we are getting gps location on fixed interval (say per hour), does it expense battery every hour every minute or only when it gets location each hour or when the location is ...
1
vote
2answers
283 views

Very Battery Friendly App/Widget(Android)

I have been looking around here and There, and I have become curious. I was wondering if there is anything staple that is usually applied to android apps to make sure they do not become battery ...
1
vote
0answers
687 views

Android BroadcastReceiver android.intent.action.BATTERY_CHANGED

I am able to listen for the intent Intent.ACTION_BATTERY_CHANGED within my activity and it works great. I tried defining the receiver in the manifest <receiver ...
1
vote
1answer
443 views

iOS : Region monitoring and battery usage

I would like to use region monitoring in iOS , for location based alerts/calculations. I'm worried that it would drain the battery. I searched for it on the iOS reference , and couldn't find any ...
1
vote
2answers
133 views

Check the performance of the application?

Hey, I finished my code and everything works as it should but I'm wondering since smartphones have limited battery, CPU .. How can I check if my application will run good on older phones? and how can ...
1
vote
2answers
164 views

How to get an estimated amount of talktime,music/video playback time, idletime that could be possibly done based on the current level of battery left

I am working on the amazing android platform. I am creating an app which deals with the phone's battery level.I am showing the current battery level of the phone, along with few other technical ...
0
votes
0answers
17 views

When to Change or Calibrate Battery?

In my thesis i need to notify the phone user or give an information about their battery, this is one of my problem in my thesis when to change or calibrate battery progmatically? I search in the ...
0
votes
1answer
41 views

Lower battery consumption Android [closed]

Possible Duplicate: Optimizing Android application before release How can we lower battery consumption in Android? I've searched a bit, and found : Using darker colors Using as little ...
0
votes
1answer
81 views

How to detect Android App that prevents phone from sleeping

I know this is not really a programming question, but please, if somebody knows the answer... I would be very happy! Since a few days, my Android phone (HTC Sensation) never goes to sleep anymore. ...
0
votes
0answers
11 views

Device keeps updating location while app paused

I´m having trouble with the device updating the location. I call StartLocationListeners() onResume and call StopLocationListeners() onPause. I have the feeling that I shouldn´t declare twice the ...
0
votes
1answer
96 views

Any side effect of CLLocationManager with NSTimer using such approach?

I am working on an iPhone app which needs Location Updates with intervals specified by the user. Here is the code sample, which I am using to do this: @implementation TestLocation - ...
0
votes
1answer
152 views

android.permission.BATTERY_STATS usage

I'm exploring the Android API options about the battery. what possibilities grants the permission android.permission.BATTERY_STATS. I know how to use it if I can read the ...
0
votes
1answer
160 views

iPhone4 iOS5 battery level monitoring do I need to add setBatteryMonitoringEnabled:NO to periodic battery checks?

I'm running an app that samples accelerometer and gyroscope data overnight. This is a very battery intensive operation, and I would like to teach my app to recognize when the battery is getting low. ...
0
votes
1answer
153 views

Performance monitoring in Windows Phone 7 (power and FPS)

I have 2 questions on performance monitoring in WP7: 1) Enabling the FPS counters is easy, but how do I read current FPS into a variable? Is this even possible in WP7? 2) Is there an API to read ...
0
votes
1answer
177 views

Android Best Location Listener Implementation

I have been working on a Location - based app. Everything is ok except location implementation (That is the core point). I know location is so expensive but I couldn't handle this by taking into ...
0
votes
2answers
246 views

Best way to benchmark iPhone app's battery usage?

What's the best way to benchmark an iPhone app's battery usage? I'm working on an iPhone app that uses location services and runs in the background. It seems like the battery drains significantly ...
0
votes
1answer
78 views

setting interval distance for notifications in requestLocationUpdate in android

requestLocationUpdate allows you to set the interval distance for notifications. i wanted to know how does it work ? i mean does the manger location simply screen out unwanted changes? or it uses ...
0
votes
1answer
105 views

Reading battery value from bios using applescript

How to get battery status/level using applescript? Is it possible? Can anyone provide some code snippet. My battery kext is not working so I need some direct info from hardware.
0
votes
1answer
114 views

OpenGL-ES Puzzle game - making drawing battery efficient?

I've got an iPhone game that is basically finished, but I have been spending some time profiling as I want to get the power usage down as low as possible, but I'm an OpenGL ES noob so I'm looking for ...
0
votes
0answers
144 views

powerTutor, Android application battery consumption measurement

For my study I need to measure the bettery power consumption of my application. After searching, I found PowerTutor app. My question is: is using this app enough for measring the battery consumption? ...
0
votes
0answers
61 views

Thread and battery

I have 1 problem and 2 options for the implementation and I would like to know which one is the best in an Android environment (basicly best practice and which one is using less battery). My problem: ...
0
votes
1answer
162 views

Battey drain while listening to network location updates

I have an application which is running as a background service and constantly listens to network updates (course location). The service itself doesn't hold any wake locks. The listening part looks ...
0
votes
1answer
130 views

Location-based App prevents Device from Sleep mode

I wrote a location-based app using the LocationManager.addProximityAlert(double latitude, double longitude, float radius, long expiration, PendingIntent intent) function which is perfectly what I ...

1 2