G
G
GreatRash2017-12-19 14:44:55
JavaScript
GreatRash, 2017-12-19 14:44:55

How to free up space on Android?

At some point, I stopped receiving software updates on my phone, it says that the place has run out. In the memory management section, it tells me that 3 gigabytes are occupied by "other files", if you go into these other files, you can see that there is no nichrome there: Books (60 Kb) and Playlists (12 Kb).
What can take up 3 gigabytes of phone memory? If I:

  • I don't store or listen to music on my phone.
  • I do not use VKontakte, Facebook and other heresy
  • I have at most 5 photos on my phone

From the downloaded programs:
  • Yandex.Electric trains
  • Yandex.Navigator
  • Firefox
  • Google Authenticator

Cleared browser caches. In the settings of Google maps and Yandex maps, the cache was rummaged and the saved maps were deleted. There is no root and I do not want to put it. Phone Samsung Galaxy Core 2 Duo.

Answer the question

In order to leave comments, you need to log in

6 answer(s)
E
Evgeny Samsonov, 2019-10-10
@Tolly

With variable substitution

const x = 6;
const y = 2;
const pattern = new RegExp(`^\\d{0,${x}}(\\.\\d{0,${y}})?$`, 'g');

K
kova1ev, 2019-10-09
@kova1ev

Try like this:

const pattern = new RegExp("^\\d{0," + x + "}(\\.?)\\d{0," + y + "}$", 'g');

V
v_gz, 2019-10-10
@v_gz

^\d{0,6}(\.?)\d{0,2}$/g
If you don't have a dot, you can enter 8 digits.
Your expression says:
And you need:
First 0..6 digits; then either emptiness or (dot; then 0..2 digits).
^\d{0,6}(\.\d{0,2})$/g

S
shushpanio, 2017-12-19
@shushpanio

At one time I caught such a glitch.
This situation can arise with a crooked update of one of the Google services.
My question was resolved as follows - remove all updates related to Google services:
Market, Music, books, games, etc.

A
Astrohas, 2017-12-19
@Astrohas

temporarily install es filemanager and analyze folders with its analyzer

M
Moris Haos, 2017-12-19
@morihaos

Hello,
Do you have automatic recording of all conversations? There's a bunch of mp3's in there...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question