What to do if there is no obb folder in android

Как установить кэш в /obb и /data на Android 11 без Root

В новой версии Android Google не только внедрила новые полезные фичи, но и внесла некоторые изменения в файловую систему. Если быть точным, «корпорация добра» запретила сторонним приложениям выполнять действия с папками /Android/obb и /Android/data — файловые менеджеры выдают ошибку: «Не удалось создать папку… Android/obb. Permission denied. Не удалось создать… Android/obb. No such file or directory. Файлы не были извлечены».

По словам команды разработчиков, они пошли на этот шаг ради безопасности. Но вместе с этим теперь нельзя устанавливать сторонние приложения, требующие кэша. После установки Android 11, я первым же делом решил изучить этот вопрос и попытался обойти ограничение. На данный момент я нашёл только один метод, не требующий Root-права, — использование adb (Android Debug Bridge). Сразу отмечу, что для этого способа обязательно наличие ПК.

Содержание

Подготовка

Для начала необходимо на смартфоне зайти в «Настройки», затем в раздел «Для разработчиков» и включить в нём «Отладку по USB». Если у вас нет пункта «Для разработчиков», сперва придётся зайти в раздел «О телефоне», найти там «Номер сборки» и тапнуть по нему несколько раз, пока не появится надпись «Вы стали разработчиком».

Следующим шагом станет скачивание adb на ПК. Для этого необходимо зайти на официальный сайт и загрузить софт для своей платформы, после чего распаковать полученный ZIP-архив в удобном месте (если у вас Windows, для упрощения рекомендую переместить извлечённую папку в корень диска C).

Как скопировать кеш в Android/obb или Android/data на Android 11

Итак, всё настроено и смартфон подключен к ПК. Если у вас Windows, первым делом нужно открыть «Командную строку» от имени администратора. Сделать это можно, набрав в поиске системы «cmd» и выбрав соответствующий пункт.

Далее необходимо прописать следующую команду: cd . Например, если, как я советовал выше, папка находится в корне диска C, команда будет выглядеть следующим образом: cd C:/platform-tools. Как только вы окажетесь в нужной директории, можно прописать команду adb devices. Если всё сделано верно, в консоли отобразится подключённое устройство. В случае, если появится надпись unauthorized, необходимо со смартфона подтвердить вход в режим отладки на данном компьютере (скорее всего, это окно появится сразу же, как смартфон будет подключен к ПК).

Для владельцев компьютеров на macOS действия почти аналогичные. После загрузки и распаковки инструментов, необходимо открыть терминал, перейти в директорию с файлами (по дефолту это будет папка Downloads) командой cd и прописать ./adb devices. По сути, отличие от Windows лишь в том, что каждый раз вместо adb надо писать ./adb.

Переходим непосредственно к загрузке файлов. Команда, которая для этого потребуется, строится по следующему шаблону: adb push . Для владельцев macOS-устройств всё то же самое, но с ./ в самом начале команды. Важное замечание касательно второго пути (на смартфоне): он выглядит как sdcard/android/obb или sdcard/android/data.

Читайте также:  Закрыть уязвимые порты андроид

Примечательно, что adb не умеет отправлять на устройство целые папки, поэтому для этого придётся заранее создать папку, и уже в неё кидать файл(ы). Создаётся папка командой: adb shell mkdir .

В качестве примера я рассмотрю процесс переноса кэша для игры GRIS. Изначально он поставляется в папке com.devolver.grispaid, поэтому сначала я создам директорию на смартфоне командой adb shell mkdir sdcard/android/obb/com.devolver.grispaid.

Создав папку, я использую команду, о которой я рассказывал ранее: adb push C:/com.devolver.grispaid/main.25.com.devolver.grispaid.obb sdcard/android/obb/com.devolver.grispaid

Как удалить кеш из Android/obb или Android/data на Android 11

Для удаления файлов необходимо прописать следующую команду: adb shell rm -f . Если же необходимо удалить директорию со всем содержимым внутри, пригодится следующая команда: adb shell rm -rf .

Вывод

Google, несомненно, усложнила доступ к папкам data и obb, но всё же работать с этими директориями можно, пускай и с помощью дополнительных инструментов. Если вы знаете другие методы обхода данных ограничений в Android 11, делитесь ими в комментариях.

Источник

How to copy/install obb with Android 11 (beta)

Wolff07

Member

Hello, I open this trying to resolve this problem.

My phone is a Google Pixel 2XL with Android 11 beta.

When I download an apk with obb data I cant copy the obb files to Android/obb folder because the file Explorer app (I used a few) cant get permission to apply changes on this folder Even if I use the app Explorer that comes as defauld.

I want to know if it means that Android 11 won’t let install apps out of Playstore anymore or it just is happening to me?

Have someone the metod to can apply changes on this folder?

Thanks and sorry for my english

BryanHafidz

Senior Member

jwoegerbauer

Senior Member

OBB-files get stored in /sdcard/Android/obb

Wolff07

Member

Wolff07

Member

OBB-files get stored in /sdcard/Android/obb

BryanHafidz

Senior Member

jwoegerbauer

Senior Member

pavankalyanbolagani43

New member

Today I faced same for pubg kr. I saw ur post and tried and tried and succeed with twrp.

Kishan56

New member

Hello, I open this trying to resolve this problem.

My phone is a Google Pixel 2XL with Android 11 beta.

When I download an apk with obb data I cant copy the obb files to Android/obb folder because the file Explorer app (I used a few) cant get permission to apply changes on this folder Even if I use the app Explorer that comes as defauld.

I want to know if it means that Android 11 won’t let install apps out of Playstore anymore or it just is happening to me?

Have someone the metod to can apply changes on this folder?

Thanks and sorry for my english

Do one thing goto playstore and install Google Files if already installed than Hold, goto app info and in last allow «Install unknown app» that’s it now you can copy or move in obb or data folder.

Источник

How to copy/install obb with Android 11 (beta)

Wolff07

Member

Hello, I open this trying to resolve this problem.

My phone is a Google Pixel 2XL with Android 11 beta.

When I download an apk with obb data I cant copy the obb files to Android/obb folder because the file Explorer app (I used a few) cant get permission to apply changes on this folder Even if I use the app Explorer that comes as defauld.

I want to know if it means that Android 11 won’t let install apps out of Playstore anymore or it just is happening to me?

Have someone the metod to can apply changes on this folder?

Читайте также:  Планировщик для инстаграм android

Thanks and sorry for my english

BryanHafidz

Senior Member

jwoegerbauer

Senior Member

OBB-files get stored in /sdcard/Android/obb

Wolff07

Member

Wolff07

Member

OBB-files get stored in /sdcard/Android/obb

BryanHafidz

Senior Member

jwoegerbauer

Senior Member

pavankalyanbolagani43

New member

Today I faced same for pubg kr. I saw ur post and tried and tried and succeed with twrp.

Kishan56

New member

Hello, I open this trying to resolve this problem.

My phone is a Google Pixel 2XL with Android 11 beta.

When I download an apk with obb data I cant copy the obb files to Android/obb folder because the file Explorer app (I used a few) cant get permission to apply changes on this folder Even if I use the app Explorer that comes as defauld.

I want to know if it means that Android 11 won’t let install apps out of Playstore anymore or it just is happening to me?

Have someone the metod to can apply changes on this folder?

Thanks and sorry for my english

Do one thing goto playstore and install Google Files if already installed than Hold, goto app info and in last allow «Install unknown app» that’s it now you can copy or move in obb or data folder.

Источник

How to Open OBB File in Android(Step by Step Easy Guideline)

Android devices have taken the world by storm. This electronic device has made everything convenient for us. Before making the best use of our android devices, we must know some basic usage.

Learning to open the Obb file in android is one of such basics. Let’s take a glimpse at what are OBB files are and how to open OBB file in Android.

What Are OBB files?

The OBBs are Opaque Binary Blob files. They are primarily linked to Android gadgets. They store the excess information that is not saved on the Application Package or APK.

As APK can save only 100 MB of data, the excess information is stored in the OBB files. The JOBB tool in the Android Studio is used for extracting data from those files.

Can Obb opener open every sort of Obb files?

Even though an OBB opener is used to open OBB files, it is not possible to open every type of OBBs using one OBB opener. It is possible to use the ZIP or MP4 file format to make expansions of a file, but the JOBB tool can also be used to encrypt information in an OBB file.

Developers of Android devices also use Linux applications to create OBB files. One of these Linux applications is Obbtool. People who download these OBB files get the Application Package (APK) file and the extension as well. Whenever someone uploads an APK file using the Google Play Console, one or two expansion files can be added. These are the expansions that are called OBB.

What Are the Things that You Need to Install OBB Files?

Before installing, make sure that you have the necessary apps that are required to install it. Ensure that you have the following tools or apps on your android gadget before installation.

  1. Data folder
  2. Android device
  3. Application Package file
  4. External memory card

You can easily install the OBB file on your Android device if you have these apps. But before downloading the OBB file, please ensure that your laptop or computer is linked to your Android phone with a USB cable.

Читайте также:  Facebook business suite android

Installing an APK file on your device?

Now you need to install an APK file on your device. You need to follow the following procedures to download an APK file:

  1. Download the APK file on your Android device or phone’s external SD card.
  2. Check the phone’s external memory card and then click on the option that says “APK file”.
  3. The next step is to press on the “Install” option.
  4. It will take some time for the APK to be downloaded to your device.
  5. After the download is finished, the OBB file needs to be placed in the correct place.

To learn how to open an OBB file in Android, you need to first locate the OBB file in the correct place. Follow the steps below and find out more about OBB files.

  • Once the OBB file has been downloaded as a ZIP file, you need to extract the information from the ZIP file.
  • Transfer the folder that stores data to the External Storage of the SD card. Next, go to External Storage, and then go to Android. Finally, choose the option called “Data”.
  • If you need to transfer an OBB file, then move the OBB file to the SD Card of your device. Then go to the Android option, and finally select “OBB”.
  • If you have looked for the “OBB” file or the “Data” file and you cannot find it, then the folder may be created manually.
  • Ensure that you have copied and pasted the files in the right way, to prevent further problems.
  • Disconnect the Android phone from the laptop or PC by opening the USB cable.
  • Run the downloaded APK on your device.

Now you know the twist and turns of the opening process. What’s next? There are some points that you have to remember further.

Things to Remember

First of all, try to understand the size of your compressed file. It’s important to keep space in your device and the size of your installed folder should be minimal. If the app that you are using utilizes greater space than 100 MB, then you can publish several APK files.

These APK files will only have the information required for the targeted screens. If you are publishing the file to Google Play, ensure that you upload an Android App Bundle, that includes the combined codes and resources.

  • You also need to decide which app resources should be separated from your APK file. So that you can use them as an expansion.
  • You need to ensure that the expansion files utilize the gadget’s shared storage location. The expansion folder should not be deleted, transferred, or renamed in any way. If there is no specific format required, then it is suggested to create ZIP folders for the expansion folder.
  • If you are unable to find the apps on your Android phone, then check the App Licensing Service of Google Play to get the URLS of the expansion files and install them.

Conclusion:

Many android users don’t know how to open Obb files. In this ever-changing world, it’s crucial to keep yourself updated with simple but necessary knowledge.

Ensure that you follow the above steps carefully if you are installing an OBB file for the first time. If you fail to open, find out which points you have missed. Then try again. Have a good day buddy!

Источник

Оцените статью