Option to Limit How Much Phone Storage Spotify Uses

I have a starred list that is not huge by most standards: 1700 songs or so.
It's too large to fit in the available storage on my phone which is 4 or 5 GB (some of the files are local files which are probably a bit bigger than the low-bitrate ones Spotify uses for streaming).
I have a Nexus 4 with no SD card slot.
For a long time that was no problem, Spotify occasionally complained that it was out of space but most of the songs were available when in airplane mode even if some weren't, and Android seemed to enforce that it always had enough space to upgrade apps and whatnot.
But now since I've upgraded to lollipop, Android wants to upgrade all my apps and a lot of them seem to have grown. Once available space goes below 500MB Android refuses to download app updates any more so I'm stuck without being able to update any apps.
I'm trying to figure out how to limit the size of the storage used by Spotify and I can't find a setting in Spotify or in Android to do that.
It seems amazing to me that neither Spotify nor Android have this capability.
If I can't do that my only options would be to create a second "Mobile Starred" list with less songs which would be a management nightmare, or delete all of Spotify's data via Android settings, upgrade my apps, then download the Starred list again, after which Spotify would just fill up the phone's storage again immediately and I'd be back in the same boat the next time an app wants to update.
If Android is not going to provide an option to limit how much storage is used, then Spotify should do it.
I don't know if this is also an issue on iOS or not.

Hey agraham.
While perhaps not the solution you were looking for, I've just finished a Spotify web service that attempts to automate the creation of a limited-size randomly sampled playlist from a variety of sources (library and/or playlists). This would automate the creation of your  'Mobile Starred' playlist and will perhaps be sufficient for you as it was for me.
You can find it at http://shufflify.alexjf.net

Similar Messages

  • Is there a way to limit how much music stays on iphone?

    I use iTunes Match, and it's great. But, I use the phone for other stuff, and those apps need space. Is there a way to limit how much the Music app stores before it throws away the old songs?
    Rephrasing the question, when using match, is there any way to control how the memory on my iPhone gets alloc

    Rephrasing the question, when using match, is there any way to control how the memory on my iPhone gets allocated...

  • I have iphone 32gb how much icloud  storage y need

    I have iphone 32gb how much icloud storage i need?

    Music on your phone is either purchased from iTunes or synced from a computer. If from iTunes, it doesn't use your iCloud allocation and can be redownloaded from the store if necessary, if from your computer then it is already elsewhere.
    I'm not suggesting your use will be identical to mine but I have the 32 GB phone I use less than 1 GB for syncing documents and data, however I back up to iTunes rather than iCloud, but if I did back up to iCloud, I'd need about 4 GB.

  • How do I know how much iCloud storage I need?

    How do I know how much iCloud storage I need?  I bought 10 GB and it said not enough, I bought 25 GB and it still says not enough.  I'm only backing up Contacts, Calendars, Photo Stream & Find my iPhone.

    Are you sure it's storage on icloud that you're getting messages about, and not your device.  If your device's memory is getting full, try deleting video, photos (after syncing them to a computer - but you should always be doing that), and any other large files and try doing whatever you were doing that led to those errors/warnings.
    It would also help if you told us exactly what operation(s) led to the warnings.

  • When I see the usage on my iPod touch 4 they have categories for how much space is being used where. What does the "other" category contain? Like what could I delete on my iPod to get rid of the "other" category?

    when I see the usage on my iPod touch 4 they have categories for how much space is being used where. What does the "other" category contain? Like what could I delete on my iPod to get rid of the "other" category?

    What is the Other on my iPhone and How to Remove It
    An "other" larger than about 1 1/2 GB usually indicates that the "other" includes corrupted files.
    First try:
    "First you go settings/general/usage/music/then left swipe over music and press delete and you would think it deletes your music but it doesn't instead it deletes your other but make sure your ipod is connected to a computer while doing this"
    as recommended by:
    How do I get rid of "other" storage: Apple Support Communities
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Why do I have to guess how much data I might use in a month when I select a plan?

    When I sign up for water service, I don't guess that I might use 1,000 gallons a month, and then pay three times the going rate for water if I take a few extra showers. I get charged for how much water I use that month.
    When I sign up for electricity service, I don't guess that I might use some set number of kilowatt hours, and then pay three times the going rate if we have a heat wave and I run my air conditioner for a few extra hours.
    Why do I have to guess how much data I might use, and then spend three times the going rate if I stay up watching youtube videos for a few extra nights?
    It is stressful to have to constantly monitor usage, and figure out ratios of how much I've used compared to how much time is left in the billing cycle to see if I need to curb my usage. It is not a good customer experience. I would prefer that data be charged a flat rate based on actual usage, perhaps with an option to throttle speeds at certain levels to prevent cases where a minor lapse in judgment could ruin my monthly budget, like forgetting to check data usage religiously on a device meant to simplify my life.
    Thank you for your consideration.

    Simple answer is Verizon is offering a block of data for usage.
    Where I live the water bill states my wife and I are being charged for 30,000 gallons per quarter/half and the price is say $60 however we never use any where near that amount. I send the meter reading in and it shows the amount we use. But the hamlet we are in has a set amount of gallons. Not fair but we live with it.
    For your data outside of the unlimited which is not available any more to new customers you may be a light user and never go over the 2GB for $30 dollars a month. If you do you will pay through the nose for data. If you pay for more data say 4GB and I don't have the price for it so lets say its $70 then you don't have to watch as much for overage fees. But you are paying for the data in advance so as not go over and get hit with whopping fees.
    It is just the way it is.

  • When it says your capacity is 6.43 GB does that mean how much memory you have used up or how much you have left

    when it says your capacity is 6.43 GB does that mean how much memory you have used up or how much you have left

    The 6.43 GB is how much storage that is available to you to use. The difference between 6.43 ansd 8 GB is taken up by the iOS.
    The Available entry show how much is unused.

  • How much memory do Objects use?

    I'm not sure how to ask this, but how does java manage memory usage for multiple objects? Is the memory needed for a classes methods shared amongst the objects of that class, or does each object have memory for it's methods allocated for its use alone?
    For example:
    class Foo {
       public void doSomething();
    }Let's say I have 30 instances of Foo. I can think of 2 options (but I maybe wrong)
    Case A: Each instance of Foo has it's own memory allocated for it's own copy of doSomething(), resulting in the total memory
    usage of 30 instances of Foo being about 30 times how much memory 1 Foo uses
    Case B: Each instance of Foo looks at a common copy of doSomething(), resulting in less memory needed since there is only one copy of doSomething in memory.
    If the case is A, Static methods would seem to be potentially more memory efficient. Assuming my thinking is correct(and feel free to say I'm dead wrong), would it not make sense to make as many functions as possible static?

    jverd wrote:
    Executable code (initializers, methods, constructors): One copy of the bytecodes per ClassLoader that loads the class. Static/non is irrelevant.Seems to answer the question in full.
    With reference (no pun intended) to the subject.
    Instance variables (non-static member variables): One copy of the variable per instance of the class. Stored on the heap.
    Class variables (static member variables): One copy of the variable per ClassLoader that loads the class. Stored on the heap.
    Local variables, including parameters: One copy of the variable per invocation of the method.Just to complete the picture a bit (but NOT to contradict earlier comments).
    Primitive variables - as above.
    Reference variables - as above. Note that method local reference variables are stored on the stack but
    any object instances referenced by these are stored on the heap even so.

  • Acmcneill1ug 14, 2014 7:16 AM I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great. When check how much memory I am using, with only Safar

    Acmcneill1ug 14, 2014 7:16 AM
    I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great.
    When check how much memory I am using, with only Safari open I am using 3.9 and more of her 4.0 memory. She is very. very slow in processing. I had 4000
    trash to clean out and it took her over an hour to expel. Also for some reason Safari will not allow me to click on a link, in my G-mail, and let it go to the page.
    It has a sign saying a pop-up blocker is on and will not let me do it. I must open the stamp to look at my e-mails and if I have redirected link now I can do it.
    I have not changed my preferences so where is this pop-up blocker?
    I have looked at preferences on Safari and Google, which I do not understand Google, and do not see where this blocker could be.
    Malware is something I want to make sure is not on my computer. Tech Tool Pro 6 is all I know of and it does not detect Malware.
    Help.
    Ceil

    Try Thomas Reed's Adware removal tool. He posts extensively in the communities.
    Malware Guide - Adware
    Malware Discussion

  • How much data does AirPlay use?

    Let's say one 90 min. movie streaming from my Mac to atv2. Any ideas aprox. How much Internet data that uses?

    You said internet data and the Apple TV doesn't use the internet when streaming from your mac ***. (The internet is the other side of your router).
    Additionally I assumed the question was related to cost or caps on data usage by your ISP, since any data you stream on your own local network doesn't cost anything (because it doesn't use the internet) it is somewhat irrelevant, although you may well stream 2-3 GB data per movie over your local network.
    *** If you stream purchased content from your own iTunes library on your mac, the Apple TV may well connect to Apple to verify authorisation, but this an insignificant amount of data and likely measured in a few KB. (1,000,000 KB = 1 GB)

  • How much data is being used when i mirror my ipad to my tv through the apple tv?

    how much data is being used when i mirror my ipad to my tv through the apple tv?

    wwcswapmeet wrote:
    I will try that. Thank you.  I am hoping to buy a wifi hotspot, but wondered what type of data plan I should get if I were to use it consistantly for 8 hours a day (only on saturdays and sundays).  A great tool for work & presentations!!
    It will use minimal internet bandwidth unless your content is streaming from web>iPad>AppleTV. 
    Local network comms for content already on the iPad (eg presentations) will not generally use internet bandwidth apart from protected iTunes material that requires brief internet authorisation.
    AC

  • HT5815 The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    http://www.apple.com/feedback/macosx.html

  • How much download time is used for facetime

    hi was wondering how much megabit a ipad2 use's when facetime is used is there a time line like 4mb for 4min
    thanks

    Facetime is not a download issue, it is a more or less instantaneous two way communication.  But that should not be an issue considering wifi only.    From experience with a metered wifi connection, facetime operates well on a .250 meg connection.  But that is kind of the edge.  Anything less i would question the viability of the connection.
    What are you really trying to figure out?

  • Is there a app that will tell all apps that are running and possibly how much battery power they use?

    Is there a app that will tell all apps that are running and possibly how much battery power they use?

    You don't need an app to do this.  Here's how you get the battery info.  Go to Settings>More>Battery. This will show you all the active apps and their individual battery usage.

  • How to find out how much internet i have used on my iphone4

    how to find out how much internet i have used on my iphone4

    Settings > General > Usage > Mobile usage.
    But you have to reset it every month, but it works fine on the iPhone.

Maybe you are looking for

  • HELP! Computer no longer sees base station

    Hope that somebody can help - I recently changed the password settings on my airport extremem base station and all of a sudden my computer will not recognise that there is a base station in the vicinity - I am using air port admin assistamt. I have r

  • Data slicing and dicing

    Hi, What is the difference between data slicing and data dicing?

  • Car charger for Macbook/Macbook Pro

    Okay Apple... so all of us road warriors who ponied up for the new laptops (for which there are precious few extra batteries) are wondering what is up with car chargers for the speedy new babies. According to Lind AND Kensington, you (Apple) have ref

  • Adding a subform instance

    Being relatively new to anything more complex than simple drop down lists and hiding fields, I am attempting to allow a button to insert another copy (unlimited times) of a specific subform.  I keep running into "you have reached the maximum number o

  • Triggering of process chain

    Hi, We are working in Production support project in BW 3.5.Recently many times the issue is happening like this the PC is getting struc in between and we have to run all the  remaining steps in PC manually.and manually go and trigger the subsequent c