YouTube in the background? - Samsung Galaxy Nexus

Is there a way to keep YouTube running music in the background as I'm exploring other apps? Coming from a pre there was a patch for this
Sent from my Galaxy Nexus using XDA App

Already a multiple page thread on this.

Never been possible on android and probably never will be.

noobdeagle said:
Never been possible on android and probably never will be.
Click to expand...
Click to collapse
It was doable before, but not anymore with the new update
Sent from my HTC Vision using Tapatalk

martonikaj said:
Already a multiple page thread on this.
Click to expand...
Click to collapse
Sorry, my bad.
Not used android before, I will also assume there isn't a hombrew/overclocking/patching repository and app like preware?
Also no way to enable flash in the background when flash becomes available?
Sent from my Galaxy Nexus using XDA App

Seems pretty silly having multi-core processing without the ability to multitask, doesn't it?

DirkGently said:
Seems pretty silly having multi-core processing without the ability to multitask, doesn't it?
Click to expand...
Click to collapse
You don't know much about Android, do you?
Android does have ability to multitask. It is just an effective multitasking. Applications can be left 'running' without them actually running. They are written in memory and kept there, without taking battery, until they are called back and continue on from where they left off. But Android also allows applications to open services in the background, triggered by specific time or event or by an application, that allows them to work while the application is not in focus. Many music players are done this way. Also a lot of apps synchronize in the background in this manner.
It is entirely the application developers decision to do what is best for the specific application. Android 4.0 gives all the tools the user needs. This is not Windows desktop where every working application and process takes processing power to keep running.

Would be awesome then if someone made a YouTube app that worked in the background
Sent from my Galaxy Nexus using XDA App

It'll never happen for the same reason that not all videos are viewable on mobile. You're using the service to watch something, not listen.

rmoney said:
You're using the service to watch something, not listen.
Click to expand...
Click to collapse
Not really. There are many people who use youtube for music playlists.

mcgon1979 said:
Not really. There are many people who use youtube for music playlists.
Click to expand...
Click to collapse
i know a jailbroken iphone has an app for that

iOS supports background audio in the browser and youtube app. I was hoping that ICS will support it.

Related

FEATURE SUGGESTION-MULTITASKING-add the ability to leave an application running

hello, I opened a thread in the forum "windows phone and feature suggestion," if you like my idea Vote it
http://windowsphone.uservoice.com/f...titasking-add-the-ability-to-leave-an-applica
Voted!
.
This is a must. Today only when was downloading some YouTube videos via easy tube and left it the download paused. I have to keep the app open until it finishes the download. It's not good at all.
True multitasking is a must.
Voted for the feature.
lekhwani said:
This is a must. Today only when was downloading some YouTube videos via easy tube and left it the download paused. I have to keep the app open until it finishes the download. It's not good at all.
True multitasking is a must.
Click to expand...
Click to collapse
it should be possible to continue downloading using a background task.
since resources are limited they must restrict what can run at the same time.
this is already possible with a background agent, I know supermusic continues to download music in the background.
elcapo24682 is right, I have a timer app that carries on in the background so it's down to devs to use background agents. True multitasking would ruin battery life anyway.
Sent from my Samsung Omnia 7 using XDA Windows Phone 7 App
Peew971 said:
elcapo24682 is right, I have a timer app that carries on in the background so it's down to devs to use background agents. True multitasking would ruin battery life anyway.
Sent from my Samsung Omnia 7 using XDA Windows Phone 7 App
Click to expand...
Click to collapse
yea and we can ask the android users how that's working out.
I don't care about "true multitasking". I just want to be able to pin an app to the switcher, so I know it will be there for a fast resume when I need it.
RoboDad said:
I don't care about "true multitasking". I just want to be able to pin an app to the switcher, so I know it will be there for a fast resume when I need it.
Click to expand...
Click to collapse
if u refresh the app every once in awhile it will remain in the switcher.
elcapo24682 said:
if u refresh the app every once in awhile it will remain in the switcher.
Click to expand...
Click to collapse
Duh. That is kind of obvious. My point is that doing that is an unacceptable and highly annoying "workaround", and in no way excuses the lack of the feature that I want.
RoboDad said:
Duh. That is kind of obvious. My point is that doing that is an unacceptable and highly annoying "workaround", and in no way excuses the lack of the feature that I want.
Click to expand...
Click to collapse
its not annoying at all. the background agents work fine for what u want, at least in the apps I use.
elcapo24682 said:
its not annoying at all. the background agents work fine for what u want, at least in the apps I use.
Click to expand...
Click to collapse
Don't tell me what is or isn't annoying. That is a typical fanboy attitude, trying to other people what to think or feel.
RoboDad said:
Don't tell me what is or isn't annoying. That is a typical fanboy attitude, trying to other people what to think or feel.
Click to expand...
Click to collapse
well it doesn't annoy me or most other wp7 users.

"Don't keep activities" - anybody use it?

Love the phone but a few times the launcher has redrawn after exiting an app because of most likely memory issues. Anybody using this option? Assuming over time this would keep more memory free and reduce this issue. Any thoughts?
Sent from my Galaxy Nexus using xda premium
mobilehavoc said:
Love the phone but a few times the launcher has redrawn after exiting an app because of most likely memory issues. Anybody using this option? Assuming over time this would keep more memory free and reduce this issue. Any thoughts?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
This is one of the reasons why I don't like that Google included these developer options pre-installed on this phone. They're developer options for a reason, we can install them if we need to.
This feature is designed so that developers can test their app to be sure that data is properly saved when is no longer in the foreground. For example, if a user receives a phone call or jumps to another app, the app needs to do what is necessary to save it's data. At times, Android can kill a process in the background. If the user plans to go back (perhaps they finished the phone call), they want to see what it is they were working on last. The developer is supposed to handle this case by rebuilding everything as it was before (to provide that seamless experience for the user when switching between apps).
This debug feature helps us test that it works.
For the average user, all you're really more likely to do is slow down your apps. As they will have to rebuild themselves when you resume them, and you may even open yourself to more quirky bugs (for those apps that didn't properly test the above scenario).
So please don't enable it unless you're doing it for development purposes. My 2 cents.
*EDIT* Here's a page from the Android Dev Guide justifying my explanation:
http://developer.android.com/guide/developing/debugging/debugging-devtools.html
Immediately destroy activities
Tells the system to destroy an activity as soon as it is stopped (as if Android had to reclaim memory). This is very useful for testing the onSaveInstanceState(Bundle) / onCreate(android.os.Bundle) code path, which would otherwise be difficult to force. Choosing this option will probably reveal a number of problems in your application due to not saving state. For more information about saving an activity's state, see the Activities document.
Click to expand...
Click to collapse
(and yes, they used to call it "Immediately destroy activities")
Thanks. I turned it off. Did notice some bugs while on. I just wish with 1GB of RAM the launcher wouldnt have to reload. Hopefully things get better. Might just be my apps but it happens quite often when leaving the browser.
Sent from my Galaxy Nexus using xda premium
mobilehavoc said:
Thanks. I turned it off. Did notice some bugs while on. I just wish with 1GB of RAM the launcher wouldnt have to reload. Hopefully things get better. Might just be my apps but it happens quite often when leaving the browser.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
weird.. how many widgets do you have on your launcher? the more widgets you have, the slower the launcher is.
Have you tried another launcher? The stock launcher has never been known for being fast and efficient, although I haven't had any issues with it (whereas I'm a LauncherPro fan on my other devices).
kwazi said:
weird.. how many widgets do you have on your launcher? the more widgets you have, the slower the launcher is.
Have you tried another launcher? The stock launcher has never been known for being fast and efficient, although I haven't had any issues with it (whereas I'm a LauncherPro fan on my other devices).
Click to expand...
Click to collapse
I have quite a few Widgets but nothing too crazy I don't think. I use LauncherPro on my other devices as well but I love this new launcher so I'm going to stick it out. Like I said the most common task that causes the issue is when I'm using the web browser and then come out of it. Otherwise its been stable. I've noticed the same thing with Honeycomb on my Xoom so it might just be one of those things I have to put up with.
Sent from my Galaxy Nexus using xda premium
i'm also noticing some redraw and occasional lag when hitting the home button.
I'm hoping that CM9's custom launcher will have an option to lock it in memory- that may increase the performance by a lot.
also when replacement launchers like go launcher start optimizing more for ICS those might be good options.
Have you tried converting your launcher into a system app? You'll need to use Titanium Backup Pro or something similar to do it for you, or simple copy the APK into your system/app folder... Really sped up my launcher!
shawnshine said:
Have you tried converting your launcher into a system app? You'll need to use Titanium Backup Pro or something similar to do it for you, or simple copy the APK into your system/app folder... Really sped up my launcher!
Click to expand...
Click to collapse
Did you see the date on this thread, almost 8 months old
Sent from my Galaxy Nexus using xda premium
95Z28 said:
Did you see the date on this thread, almost 8 months old
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
... and yet people still continue to discover the thread and benefit from it.
Thanks for clarifying the meaning of "Don't keep activities"
my razr xt910 cannot be counted upon to run smoothly with all the apps simultaneously running and forcing itself to go into reboot. i then fancied an iPhone single styled system (as compared to Android multi-talks) cuz iPhone looks robust and responsive. all the killer that claimed to do the job looked more of a farce and then when i stumbled upon the destroy activity i was like OMG. srsly b4 using it I've only got just inner 100mb of ram, after using it i have a whooping 400mb ram. UI appears faster and all. regarding the relaunching of apps and battery life being used up. i think I'll start to worry about it on a later date. what say any body. ooh yes to add on, even after i deleted 40 apps on my phone it still hanged like fcuked. i guess i can reinstall them back again and not have to worry about it. btw i can't seem to root my xt910 for nuts so i can't custom ROM it along with all other fanciful mods that i hear about what others did to their phones.

How can I enable true multitasking in ICS?

I love my Galaxy Nexus, but what's driving me crazy is how it shuts down any app whenever I switch out of it, even if I use the -completely useless so far- multitasking soft key. So for instance I'm waiting for a YouTube video to load, so I temporarily switch out of it to do something else (this is a smartphone isn't it) and come back, and find it reopening the video as if I just did it. Same thing with the browsers. I have 2-3 tabs open, and decided to check out something on the homescreen. Big mistake. When I get back will have to wait for all the tabs to reload.
Anyway to keep apps running in the background?
Sent from my Galaxy Nexus using XDA App
I think YouTube just does that. It has been mentioned before. No problem with the browser.
My grandma beat me down and took my nexus. Sent from a jitterbug with beats by dre.
If your using a Verizon nexus, it partly has to do with Verizon's cdma network, not just android. Plus it would slow your phones operation down and you would see more force closes due to limited resources.
Edit— sorry everybody, did a little drunk forum trolling last night. Everything I posted was false. The other poster was correct and I deserve all the shame.
Transmitted from my Galaxy Tab 10.1 via Tapatalk
Most likely you have an app running thats killing processes. If you have any task manager/killer remove it immediately.
As far as youtube goes, youtube will NEVER keep a video paused or continue playing if you leave. It saves what you were on, but thats it. few reasons for that.
Now, my experience today and no issues.
Facebook, Browser (4 tabs), NFL'11, and twitter all running and they all saved what i was doing and none of them ever closed.
in fact, 3 hours after, the 4 tabs were still open. I've actually had tabs open for 3 days straight that i forgot to close and the browser just made new ones.
and these are not just text sites. I had the Battlefield 3 battlelog, nfl.com, battlefield wiki, and the verge mobile all on.
My browser will keep pages open for days if I wanted to...strange! You're using stock browser?
Sent from my NookColor using XDA Premium App
stock browser is awesome. especially the inverted mode.
Pretty amateur thread. Come on
Sent from my Galaxy Nexus using xda premium
Stardate Tab 10.1 said:
If your using a Verizon nexus, it partly has to do with Verizon's cdma network, not just android. Plus it would slow your phones operation down and you would see more force closes due to limited resources.
Transmitted from my Galaxy Tab 10.1 via Tapatalk
Click to expand...
Click to collapse
I can't find one fact in your entire statement. What could CDMA possibly have to do with it? Also, you wouldn't see more 'force closes'. When Android runs low on RAM it selects the oldest cached app and ends it, unless it's active.
once again, amateur thread. **** needs to be closed down
TareX said:
I love my Galaxy Nexus, but what's driving me crazy is how it shuts down any app whenever I switch out of it, even if I use the -completely useless so far- multitasking soft key. So for instance I'm waiting for a YouTube video to load, so I temporarily switch out of it to do something else (this is a smartphone isn't it) and come back, and find it reopening the video as if I just did it. Same thing with the browsers. I have 2-3 tabs open, and decided to check out something on the homescreen. Big mistake. When I get back will have to wait for all the tabs to reload.
Anyway to keep apps running in the background?
Sent from my Galaxy Nexus using XDA App
Click to expand...
Click to collapse
Do you have Don't keep activities checked in the development part of settings? Go to Settings>Developer Options, scroll all the way down, and look if you've enabled the option I've mentioned above
Sent from my Galaxy Nexus using xda premium
I have this exact same problem, with the browser and even with games.
I have no task manager. I have watchdog which i believe doesnt kill any processes itself and i have juice defender; could that be whats causing this problem?
I keep hearing about this, am I seriously the only one that can swipe apps away from the recent apps and they actually close?
Sent from my Google phone
ChongoDroid said:
I keep hearing about this, am I seriously the only one that can swipe apps away from the recent apps and they actually close?
Sent from my Google phone
Click to expand...
Click to collapse
possibly you are...
because for me and more than 5 of my friends using the same phone, those swiping aways only close the shortcut regardless of the app running in background or not.
DO THE FOLLOWING
1) go to settings, apps, running apps.
2) with that open, hit the multitask button that shows all apps running.
3) swipe away
4) watch it get killed off your running apps list.
5) grow up
Im not sure what all the *****iness is about but the problen I and i believe the OP were having was quite real and serious.
Any time you switched out of an app or game, even if only for a second, when you switched back it would restart the app or game and in the case of the browser reload the webpage.
Now, ive uninstalled watchdog and the problem seems to have gone away.
Is anybody else using watchdog having this problem?
People need to understand that devs put this code INTO THEIR APPS. Killswitches are hard coded into apps to let the system kill them if they have been in the background. A good example is Opera Mobile. It has a low priority that is coded in BY THE DEV.
schizophrenia said:
possibly you are...
because for me and more than 5 of my friends using the same phone, those swiping aways only close the shortcut regardless of the app running in background or not.
Click to expand...
Click to collapse
Not possibly, I know I am. Home key keeps it running, back key caches/closes it. Certain apps perform differently as foreground tasks and some as background tasks. I think some can't be multi tasked like big games and stuff but as previously said that's on the dev side not androids.
Sent from my Galaxy Nexus using xda premium

Ram manager ??

So do you guys find it necessary to have a ram manager to free memory or no ?
No, ics have a good system to manage ram.
No. Creates more issues than it solves.
+1 for no. Watchdog has always been a must have for me, but it hasn't yet had to call out an app on my SGN.
No. Don't use automated tools to kill tasks and free up memory... in Android, free memory is wasted memory. You make your phone work harder when you interfere with its built-in memory management.
I kill running services that shouldn't be running... That allows for more RAM to be used by active applications.
EP2008 said:
I kill running services that shouldn't be running... That allows for more RAM to be used by active applications.
Click to expand...
Click to collapse
Users always feel they are smarter than the OS when it comes to killing processes. They are usually wrong.
adrynalyne said:
Users always feel they are smarter than the OS when it comes to killing processes. They are usually wrong.
Click to expand...
Click to collapse
Funniest thing I read all day and its true
adrynalyne said:
Users always feel they are smarter than the OS when it comes to killing processes. They are usually wrong.
Click to expand...
Click to collapse
Yes,I feel that having running SERVICES that I'm not using is a huge waste of memory and battery resources. Android is not smart in this regard.
For example, I use the amazon app store to check for free apps of the day ONCE a day. No need to have it run as a service all day, using up ram and CPU. Another example is pulse news reader. I want to go in the app, refresh the feeds, read them and exit, but the app remains running as a service for no reason. I also use a document scanner app which runs as a service when I'm not using it for no good reason. So, I kill the service.
To suggest that I'm wrong in doing this shows a lack of understanding of the issue at hand.
Sent from my Galaxy Nexus using Tapatalk
EP2008 said:
Yes,I feel that having running SERVICES that I'm not using is a huge waste of memory and battery resources. Android is not smart in this regard.
For example, I use the amazon app store to check for free apps of the day ONCE a day. No need to have it run as a service all day, using up ram and CPU. Another example is pulse news reader. I want to go in the app, refresh the feeds, read them and exit, but the app remains running as a service for no reason. I also use a document scanner app which runs as a service when I'm not using it for no good reason. So, I kill the service.
To suggest that I'm wrong in doing this shows a lack of understanding of the issue at hand.
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
You have no idea how android works and deserve to have your nexus confiscated.
Sent from my SGH-T989 using XDA App
EP2008 said:
Yes,I feel that having running SERVICES that I'm not using is a huge waste of memory and battery resources. Android is not smart in this regard.
For example, I use the amazon app store to check for free apps of the day ONCE a day. No need to have it run as a service all day, using up ram and CPU. Another example is pulse news reader. I want to go in the app, refresh the feeds, read them and exit, but the app remains running as a service for no reason. I also use a document scanner app which runs as a service when I'm not using it for no good reason. So, I kill the service.
To suggest that I'm wrong in doing this shows a lack of understanding of the issue at hand.
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
Android does not operate like windows. Apps listed as "Running" are actually only loaded in ram and are not using cpu cycles or battery power. Android loads them in ram in order for them to start/be available more quickly to the user. If Android needs more ram for a task, it will remove any thing it needs to in order to free up more ram. You are wasting battery power and cpu cycles by "killing" those apps/service. If you think of ram as a memory stick you will realize that once something is loaded there, it doesn't take any power to keep it there.
Good luck
Good luck
jordanishere said:
You have no idea how android works and deserve to have your nexus confiscated.
Sent from my SGH-T989 using XDA App
Click to expand...
Click to collapse
System services should obviously not be messed with, but disabling autostarting services that you don't use is generally not a problem. It may take more power/time to start up apps that use those services (since they will have to be manually started), but if it's an app that you use infrequently it may be worth doing.
Intelligently tuning what services are allowed to autostart themselves is NOT the same as indiscriminately killing apps chasing after "free memory".
Personally, I wouldn't terminate services, but only modify which ones are allowed to automatically start up with the OS.
codesplice said:
if it's an app that you use infrequently it may be worth doing.
Click to expand...
Click to collapse
Is it worth doing when Android does this automatically?
Sent from my SGH-T989 using XDA App
EP2008 said:
Yes,I feel that having running SERVICES that I'm not using is a huge waste of memory and battery resources. Android is not smart in this regard.
For example, I use the amazon app store to check for free apps of the day ONCE a day. No need to have it run as a service all day, using up ram and CPU. Another example is pulse news reader. I want to go in the app, refresh the feeds, read them and exit, but the app remains running as a service for no reason. I also use a document scanner app which runs as a service when I'm not using it for no good reason. So, I kill the service.
To suggest that I'm wrong in doing this shows a lack of understanding of the issue at hand.
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
you basically proved what he said was true
I agree with using "Autostarts", it's one of my fav apps and cuts down on startup time and certain apps like to be triggered for all kinds of rediculous things. Once again though I think it is counterproductive to use automated task killers. Watchdog will alert you of apps running away with your ram and battery, but does not just auto kill all random apps. As far as the Amazon AppStore, I agree that it can be very malicious with RAM if it wants to be even when just checking the FAOTD in the mornings, on my Atrix I would get constant alerts from Watchdog for Amazon AppStore. On my SGN however I have yet to recieve ANY alerts for ANY app yet from Watchdog, this leads me to think there is better optimization going on with ICS or the Nexus than I had with Gingerbread and Atrix.
Is there any reason not to use AutoStarts or WatchDog? They are not auto killing apps at all. And I am requesting a "real" technical explanation not just you opinion or a "think of it like.." story, those are useless to me and offer no explanation.
jordanishere said:
Is it worth doing when Android does this automatically?
Sent from my SGH-T989 using XDA App
Click to expand...
Click to collapse
Eh, usually there's not much benefit to be had - but preventing a service from auto starting when you might not use its app for the entire time Android is booted won't cause any problems. You're essentially "freezing" the service while still allowing it to be used on demand .
WiredPirate said:
I agree with using "Autostarts", it's one of my fav apps and cuts down on startup time and certain apps like to be triggered for all kinds of rediculous things. Once again though I think it is counterproductive to use automated task killers. Watchdog will alert you of apps running away with your ram and battery, but does not just auto kill all random apps. As far as the Amazon AppStore, I agree that it can be very malicious with RAM if it wants to be even when just checking the FAOTD in the mornings, on my Atrix I would get constant alerts from Watchdog for Amazon AppStore. On my SGN however I have yet to recieve ANY alerts for ANY app yet from Watchdog, this leads me to think there is better optimization going on with ICS or the Nexus than I had with Gingerbread and Atrix.
Is there any reason not to use AutoStarts or WatchDog? They are not auto killing apps at all. And I am requesting a "real" technical explanation not just you opinion or a "think of it like.." story, those are useless to me and offer no explanation.
Click to expand...
Click to collapse
I relied upon autostart tuning and Watchdog on my N1, but haven't experienced a real need for either on the SGN. Not necessarily a technical response, but just my experience.
Wow, the ignorance on XDA is staggering.
A RUNNING SERVICE is not the same as a cached app or background process.
Why the heck would anyone want 3 or 4 running services in the background when they don't need them running?
Right now, I have the logmein service using 26mb, Amazon app store using 38mb, pulse taking up 43mb and I'm NOT using these apps. They are running as services and using ram, battery and cpu.
Continue to defend Android and all its flaws. The user doesn't always have to accept how poorly some things function.
Sent from my Galaxy Nexus using Tapatalk
EP2008 said:
Right now, I have the logmein service using 26mb, Amazon app store using 38mb, pulse taking up 43mb and I'm NOT using these apps. They are running as services and using ram, battery and cpu.
Continue to defend Android and all its flaws. The user doesn't always have to accept how poorly some things function.
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
Less an Android flaw and more related to how developers wrote those apps. Otherwise I think we are in agreement though.
codesplice said:
I relied upon autostart tuning and Watchdog on my N1, but haven't experienced a real need for either on the SGN.
Click to expand...
Click to collapse
why?
10char

[Q] Taking Screenshots on the OUYA

Has anyone found (or created an app) to take screenshots on the OUYA?
I know there's the ADB method, but I really just want an internal application of button setup of some sort; the ADB over WiFi is semi buggy for me and I don't want to disconnect my OUYA from the TV to attach to the computer (then I can't see the screen of course...).
Can anyone think of a method without ADB?
You may try and side load airdroid on to the ouya. The app has a screen capture option along with remove control of your android device from a web browser.
Ouya has multitasking disabled. When an app isnt running in the foreground, it is killed. Its a performance thing to make games run more bettererer. I dont think any screenshot app would work out well with this option turned on.
mikeones42 said:
You may try and side load airdroid on to the ouya. The app has a screen capture option along with remove control of your android device from a web browser.
Click to expand...
Click to collapse
This is what I do. AirDroid was the first app I installed and it's the only app you need to sideload, manage, and take screen shots of the OUYA.
gianptune said:
Ouya has multitasking disabled. When an app isnt running in the foreground, it is killed. Its a performance thing to make games run more bettererer. I dont think any screenshot app would work out well with this option turned on.
Click to expand...
Click to collapse
I thought this originally, too, but I've found it doesn't effect the performance too much. I've had multitasking on for 3-4 daays now (I use my OUYA every day for hours) and have seen very little difference.
JLCollier2005 said:
This is what I do. AirDroid was the first app I installed and it's the only app you need to sideload, manage, and take screen shots of the OUYA.
I thought this originally, too, but I've found it doesn't effect the performance too much. I've had multitasking on for 3-4 daays now (I use my OUYA every day for hours) and have seen very little difference.
Click to expand...
Click to collapse
AirDroid didn't start for me, 2nd app I tried to load after getting xbmc running. And I'm on the same page as you, I've had multitasking enabled since day 1 and it's only made a small impact to performance, but nothing worth noting...
Sent from my XT912 using xda app-developers app
hakarune said:
AirDroid didn't start for me, 2nd app I tried to load after getting xbmc running. And I'm on the same page as you, I've had multitasking enabled since day 1 and it's only made a small impact to performance, but nothing worth noting...
Sent from my XT912 using xda app-developers app
Click to expand...
Click to collapse
Why didn't airdroid start for you? Where did you get the apk from? You might have had an old version or something.
JLCollier2005 said:
Why didn't airdroid start for you? Where did you get the apk from? You might have had an old version or something.
Click to expand...
Click to collapse
As a side question, were do most people put their sideloaded APKs? So far all I have done is clickrd on them within my Box.com app and they just start.
I use the install directly feature of AirDroid, the apk is only temporarily transferred to the OUYA and then deleted after install, like as if you were downloading it from the Play store or Amazon market.
JLCollier2005 said:
Why didn't airdroid start for you? Where did you get the apk from? You might have had an old version or something.
Click to expand...
Click to collapse
I just downloaded the newest version and then sideloaded it to my OUYA. It's up working now, though the WiFi setup requirement is redundant when it's on the LAN...
hakarune said:
I just downloaded the newest version and then sideloaded it to my OUYA. It's up working now, though the WiFi setup requirement is redundant when it's on the LAN...
Click to expand...
Click to collapse
yeah but this isn't uncommon... some apps look for either wifi or mobile network and just won't work on the OUYA without Wifi. It's one of those things that dev's of those apps probably never thought of a Android device running with ethernet.
JLCollier2005 said:
This is what I do. AirDroid was the first app I installed and it's the only app you need to sideload, manage, and take screen shots of the OUYA.
I thought this originally, too, but I've found it doesn't effect the performance too much. I've had multitasking on for 3-4 daays now (I use my OUYA every day for hours) and have seen very little difference.
Click to expand...
Click to collapse
When you say you've had multitasking turned on for 3-4 days what are you referring to Ive been trying to find a way to multitask applications on ouya with very little success I've been searching the web for hours and I landed on this thread because of your comment. Could you please elaborate i would be forever grateful? :fingers-crossed:
huckjam said:
When you say you've had multitasking turned on for 3-4 days what are you referring to Ive been trying to find a way to multitask applications on ouya with very little success I've been searching the web for hours and I landed on this thread because of your comment. Could you please elaborate i would be forever grateful? :fingers-crossed:
Click to expand...
Click to collapse
I would like to know this also.
lartomar2002 said:
I would like to know this also.
Click to expand...
Click to collapse
Go to settings, developer options, under apps, uncheck don't keep activities in the background.
mikeones42 said:
Go to settings, developer options, under apps, uncheck don't keep activities in the background.
Click to expand...
Click to collapse
How does multitasking affect your performance?
lartomar2002 said:
How does multitasking affect your performance?
Click to expand...
Click to collapse
It doesn't really at all honestly; though I have mine to only allow 3 background processes at 1 time. The only effect it has is on xbmc if you're watching 1080P with a heavy skin.
[Update] There is no screenshot app that I have found that works for OUYA (rooted, busybox, SuperSU); I resorted to adb over the network with https://play.google.com/store/apps/details?id=com.wmendez.adbovertcp and manually triggered screencaps from my tablet.
Sent from my Transformer Prime TF201 using XDA Premium HD app
hakarune said:
It doesn't really at all honestly; though I have mine to only allow 3 background processes at 1 time. The only effect it has is on xbmc if you're watching 1080P with a heavy skin.
[Update] There is no screenshot app that I have found that works for OUYA (rooted, busybox, SuperSU); I resorted to adb over the network with https://play.google.com/store/apps/details?id=com.wmendez.adbovertcp and manually triggered screencaps from my tablet.
Sent from my Transformer Prime TF201 using XDA Premium HD app
Click to expand...
Click to collapse
New to XBMC, what do you mean by "heavy skin"?
lartomar2002 said:
New to XBMC, what do you mean by "heavy skin"?
Click to expand...
Click to collapse
By "Heavy" I mean a big resource intensive skin. In the wiki I explained the skins that you should use with the OUYA, I tested as many skins as I could find and those were the only ones that are "Light" skins that produce little or no lag.
Sent from my XT912 using xda app-developers app
hakarune said:
By "Heavy" I mean a big resource intensive skin. In the wiki I explained the skins that you should use with the OUYA, I tested as many skins as I could find and those were the only ones that are "Light" skins that produce little or no lag.
Sent from my XT912 using xda app-developers app
Click to expand...
Click to collapse
WOW, did not know it was you that started the XBMC Ouya Wiki. Good start. Are you still recommending the Gotham Alpha 1 version that you linked to in the wiki?
lartomar2002 said:
WOW, did not know it was you that started the XBMC Ouya Wiki. Good start. Are you still recommending the Gotham Alpha 1 version that you linked to in the wiki?
Click to expand...
Click to collapse
I didn't start it, Ned did, but there wasn't much there; him and I have been working to make it complete. And at the moment yeah it is still recommended ATM. All nightly builds after Aug 2 all have the libstagefright built-in and should work, but I haven't tested and haven't heard anything. I'll be testing builds next week though.
Sent from my XT912 using xda app-developers app

Categories

Resources