- Автоматизация установки множества apk файлов на Android
- Способ с локальным хранилищем apk файлов
- Так как всё-таки скачать?
- Как быть с обновлениями
- Способ без локального хранилища apk файлов
- Установить приложение программно на Android
- Download and Install APK Programmatically
- Conclusion
- Get Solution Code
- Keep in touch
- Android: install .apk programmatically [duplicate]
- 4 Answers 4
- Install Application programmatically on Android
- 17 Answers 17
- Please make sure the provider authorities are the same!
Автоматизация установки множества apk файлов на Android
Приходилось ли вам сталкиваться с ситуацией, когда вам нужно автоматизировать установку определённого списока приложений на андроид девайс? Такой вопрос может возникнуть у вас в случае, если у вас много устройств и на все требуется установить одни и те же программы. Или в ситуации, если вы часто перепрошиваете свой смартфон разными прошивками и хотите сразу иметь определённые приложения на борту для работы.
Как это можно осуществить? В официальном магазине Google Play вы не можете этого сделать. Там есть категория «Мои приложения», в которой две вкладки: «установленные» и «все» (которые когда-либо были установлены, а затем удалены). Также есть категория «Список желаний». Но нигде нет кнопки для установки всего списка желаний, и нигде нет списка «Избранные».
Таким образом, в Google Play для установки нужного списка программ вам придётся долго и терпеливо выбирать из вашего списка по одному приложению и на каждом нажимать кнопку установить. Такой вариант нас не устраивает.
Способ с локальным хранилищем apk файлов
Следующий вариант: попробуем закачать к себе все приложения в виде apk файлов и устанавить их. Плюс этого способа в том, что не надо зависеть от Google Play и бояться, что там удалят какое-то приложение. Также можно ставить свои приложения, которых нет в Google Play.
Тут начинается самое интересное. Как скачать из Google Play? Просто так вытянуть из него apk файл не получится. На сайте play.google.com просто нет кнопки «Скачать». Есть только «установить» (и то только в случае «совместимости» с устройством) и «добавить в список желаний». Во-вторых, на телефоне мы можем не увидеть интересующие нас приложения. Те, которые «несовместимы» с вашим устройством, просто не отображаются, как будто их нет. Слово «Несовместимы» в кавычках — потому что на самом деле приложение вполне может быть совместимым. Это искусственное ограничение на установку делается по вполне понятным причинам — ограничение себя от отрицательных отзывов и соблюдение местного законодательства, или же желание дать доступ к приложение только определённой «илите». На «несовместимость» могут влиять название производителя телефона, разрешение экрана, страна проживания, сотовый оператор, частота и архитектура процессора и так далее (существуют программы для подмены всего этого). И, видимо, поэтому нельзя просто так взять и скачать apk c Google play. Этот сервис хочет знать под какой конкретный аппарат и аккаунт скачивается приложение и выдать ему нужный apk.
Так как всё-таки скачать?
Погуглив проблему, нашел я такой онлайн сервис как APK downloader (http://apps.evozi.com/apk-downloader/). Вы даёте ссылку на приложение на сайте play.google.com и получаете прямую ссылку на apk. Однако этим сервисом нельзя скачать с Samsung Apps.
Закачиваем себе всё необходимое. Теперь подключаем девайс, включаем отладку по usb и устанавливаем скриптом все приложения. Примерно такой скрипт:
#/bin/sh
for i in <1..50>
do
adb install apk$i.apk
done
Всё. Теперь все приложения установлены.
Решение это не очень красивое. В любой момент APK Downloader может быть прикрыт. И вообще для меня этот сервис как черный ящик. Я не знаю, как он качает. Кстати, этот же Apk downloader доступен в виде неофициального расширения для хрома (crx). Это zip архив с файлами. Я планирую посмотреть исходники из него. Может быть узнаю как инициализируется скачка. Вот он: codekiem.com/apk-downloader/crx/1.2.crx
Догадываюсь, что единственным способом скачать с плея остаётся закачка на какой-то девайс. Этот сервис наверняка так и скачивает: извлекает файл из «памяти устройства», а потом отдаёт уже скачанный апк. Почему бы тогда ему так же не сделать скачку и с самсунг аппс?
Как быть с обновлениями
Тут ещё проблема с обновлениями. Как мне обновлять приложения в своём хранилище? Всё заново качать? Нет удобного просмотра версии пакета и вообще автоматического обновления. Но есть одна софтина, которая может решить все эти проблемы. Правда, я её не пробовал стаить. Называется она Real apk leecher. Автор выложил исходный код на xda developers.
Вот здесь 4pda.ru/forum/index.php?showtopic=384677&st=60#entry16248359 инструкция как обновлять локальное хранилище.
Способ без локального хранилища apk файлов
Хотелось бы иметь возможность установки не только со своего хранилища, а прямо с гугл плея. Это решает проблему старых версий приложений. Как это сделать программно я не знаю.
Для установки apk на устройство можно использовать такие команды:
$ adb install
или же
$ adb shell pm install [опции]
Обратите внимание, что в Google Play на компьютере есть кнопка «установить» под приложением. Нажитие на неё прводит к чтению разрешений и подтверждением желания установки. Далее на телефон подключенный к интернету [ К НЕМУ ВООБЩЕ ДАЖЕ МОЖЕМ НЕ ПРИКАСАТЬСЯ ] приходит сам апк и устанавливается. То есть достаточно прислать какую-то команду из интернета на телефон и он всё сделает. Это вселяет какую-то надежду. Точно так же с сайта кнопкой можно установить приложение из Samsung Apps.
Я догадываюсь, что маркетодержатели (Гугл и Самсунг) оставили себе возможность подключения к рутовому шеллу. При нажатии кнопки «установить» на сайте они делают
$ adb shell pm install .
Потом кидают в уведомления «успешно установлено». Или какая-то похожая схема. Вот и получается установка с компа.
Проблема тогда в том, как узнать какую команду и каким образом надо послать на телефон, чтобы он сам всё скачал и установил из их хранилища? Они же наверняка спрашивают телефон о его серийнике, версии установленной уже программы. Может надо предварительно поставить сниффер и прослушивать весь траффик, между телом и интернетом. Но я не знаю как это сделать. Опытные хабровчане подскажут?
Источник
Установить приложение программно на Android
Мне интересно знать, возможно ли программно установить динамически загруженный apk из пользовательского приложения для Android.
Вы можете легко запустить ссылку на магазин Play Play или приглашение к установке:
Однако вы не можете установить .apks без явного разрешения пользователя ; нет, если устройство и ваша программа не рутированы.
У меня была такая же проблема, и после нескольких попыток у меня все получилось. Я не знаю почему, но установка данных и типа по отдельности провалила мои намерения.
Решения, предоставленные на этот вопрос, все применимы к targetSdkVersion с 23 и ниже. Однако для Android N, то есть уровня API 24 и выше, они не работают и аварийно завершают работу со следующим исключением:
Это связано с тем, что, начиная с Android 24, Uri изменился адрес для загруженного файла. Например, установочный файл с именем, appName.apk хранящимся в основной внешней файловой системе приложения с именем пакета, com.example.test будет иметь вид
для API 23 и ниже, тогда как что-то вроде
за API 24 и выше.
Более подробную информацию об этом можно найти здесь, и я не собираюсь проходить через это.
Чтобы ответить на вопрос targetSdkVersion о 24 и выше, необходимо выполнить следующие шаги: Добавьте следующее в AndroidManifest.xml:
2. Добавьте следующий paths.xml файл в xml папку res в src, main:
Это pathName то, что показано в приведенном выше примере содержимого и pathValue является фактическим путем в системе. Было бы неплохо поставить «.» (без кавычек) для pathValue в приведенном выше, если вы не хотите добавлять какие-либо дополнительные подкаталоги.
Напишите следующий код для установки apk с именем appName.apk в основной внешней файловой системе:
Разрешение также не требуется при записи в личный каталог вашего приложения во внешней файловой системе.
Я написал здесь библиотеку автообновления, в которой я использовал вышеизложенное.
Источник
Download and Install APK Programmatically
Hello guys, as per title in this post I ‘ll tell you how to download the app using a download manager and install it programmatically. For doing that will create a sample app, for more detail you can watch feature video as well. So let’s get started
Download and Install APK (Demo APP)
Create a new Project
Open Android Studio and create a new android project with any default template. Once project sync is finished, open app-level build.gradle. In this android example we’ll use Snackbar for that we have to add material io dependencies. so let’s do that
Add uses permission
I’m going to download the APK file so we need storage permission and Internet permission. Once the app is download successfully than we will install it programmatically. For doing that we must need REQUEST_INSTALL_PACKAGES permission. Let’ s all needed permission in android manifest.
Create a file provider
You guys, already aware that in android N or above we have to write a file provider. Let’s create a resource file inside res=>xml=> named is file_provider_paths.xml
Now declare the file provider inside the manifest
Add some value inside strings.xml file
Create a download controller
Let’s create a file named is DownloadController, It’s controller is responsible to download file install it. This DownloadController we are using download manager for downloading APK.
Open the main activity layout file add one button
Create an extension file
For better coding practice, removing boilerplate code. We’ll write few extensions for AppCompatActivity and Snackbar. let’s create extension file and paste below code
Open main activity file
Let’s open the file and paste the below code. In this activity, we are checking storage permission first. If permission is granted than calling download function otherwise requesting for storage permission.
Conclusion
All done, In this tutorial, we have learned how to download APK and Install it programmatically. I hope it’s helpful for you, Help me by sharing this post with all your friends.
Get Solution Code
Keep in touch
If you have any queries, feel free to ask them in the comment section below. 🙂
Источник
Android: install .apk programmatically [duplicate]
I want to make auto-update and auto-install at once. It is local so it’s non-market application.
Here is my code for it:
My permissions are INTERNET , WRITE_EXTERNAL_STORAGE , INSTALL_PACKAGES , and DELETE_PACKAGES .
When Intent promptInstall is loaded, the app crashes =/
So, am I missing permissions or is my code incorrect, or is there a better way to do this?
4 Answers 4
I solved the problem. I made mistake in setData(Uri) and setType(String) .
That is correct now, my auto-update is working. Thanks for help. =)
Edit 20.7.2016:
After a long time, I had to use this way of updating again in another project. I encountered a number of problems with old solution. A lot of things have changed in that time, so I had to do this with a different approach. Here is the code:
For ICS I´ve implemented your code and made a class that extends AsyncTask . I hope you appreciate it! Thanks for your code and solution.
To use it, in your main activity call by this way:
Thank you for sharing this. I have it implemented and working. However:
1) I install ver 1 of my app (working no problem)
2) I place ver 2 on the server. the app retrieves ver2 and saves to SD card and prompts user to install the new package ver2
3) ver2 installs and works as expected
4) Problem is, every time the app starts it wants the user to re-install version 2 again.
So I was thinking the solution was simply delete the APK on the sdcard, but them the Async task wil simply retrieve ver2 again for the server.
So the only way to stop in from trying to install the v2 apk again is to remove from sdcard and from remote server.
As you can imagine that is not really going to work since I will never know when all users have received the lastest version.
Any help solving this is greatly appreciated.
I IMPLEMENTED THE «ldmuniz» method listed above.
NEW EDIT: Was just thinking all me APK’s are named the same. Should I be naming the myapk_v1.0xx.apk and and in that version proactivily set the remote path to look for v.2.0 whenever it is released?
I tested the theory and it does SOLVE the issue. You need to name your APK file file some sort of versioning, remembering to always set your NEXT release version # in your currently released app. Not ideal but functional.
Источник
Install Application programmatically on Android
Is possible to programmatically install a dynamically downloaded apk from a custom Android application.
17 Answers 17
You can easily launch a market link or an install prompt:
However, you cannot install .apks without user’s explicit permission; not unless the device and your program is rooted.
I had the same problem and after several attempts, it worked out for me this way. I don’t know why, but setting data and type separately screwed up my intent.
The solutions provided to this question are all applicable to targetSdkVersion s of 23 and below. For Android N, i.e. API level 24, and above, however, they do not work and crash with the following Exception:
This is due to the fact that starting from Android 24, the Uri for addressing the downloaded file has changed. For instance, an installation file named appName.apk stored on the primary external filesystem of the app with package name com.example.test would be as
for API 23 and below, whereas something like
for API 24 and above.
More details on this can be found here and I am not going to go through it.
To answer the question for targetSdkVersion of 24 and above, one has to follow these steps: Add the following to the AndroidManifest.xml:
2. Add the following paths.xml file to the xml folder on res in src, main:
The pathName is that shown in the exemplary content uri example above and pathValue is the actual path on the system. It would be a good idea to put a «.» (without quotes) for pathValue in the above if you do not want to add any extra subdirectory.
Write the following code to install the apk with the name appName.apk on the primary external filesystem:
No permission is also necessary when writing to your own app’s private directory on the external filesystem.
I have written an AutoUpdate library here in which I have used the above.
Well, I dug deeper, and found sources of PackageInstaller application from Android Source.
From manifest I found that it require permission:
And the actual process of installation occurs after confirmation
I just want to share the fact that my apk file was saved to my app «Data» directory and that I needed to change the permissions on the apk file to be world readable in order to allow it to be installed that way, otherwise the system was throwing «Parse error: There is a Problem Parsing the Package»; so using solution from @Horaceman that makes:
This can help others a lot!
First:
Second: For android 7 and above you should define a provider in manifest like below!
Third: Define path.xml in res/xml folder like below! I’m using this path for internal storage if you want to change it to something else there is a few way! You can go to this link: FileProvider
Forth: You should add this permission in manifest:
Allows an application to request installing packages. Apps targeting APIs greater than 25 must hold this permission in order to use Intent.ACTION_INSTALL_PACKAGE.
Please make sure the provider authorities are the same!
Do not forget to request permissions:
Add in AndroidManifest.xml the provider and permission:
Create XML file provider res/xml/provider_paths.xml
Use below example code:
In Android Oreo and above version we have to approach different methods to install apk programatically.
In Oreo and above version we need unknown resource installation permission. so in activity result u have to check the result for the permission
Another solution that doesn’t not require to hard-code the receiving app and that is therefore safer:
Yes it’s possible. But for that you need the phone to install unverified sources. For example, slideMe does that. I think the best thing you can do is to check if the application is present and send an intent for the Android Market. you should use something the url scheme for android Market.
I don’t know exactly how to start the activity but if you start an activity with that kind of url. It should open the android market and give you the choice to install the apps.
It’s worth noting that if you use the DownloadManager to kick off your download, be sure to save it to an external location e.g. setDestinationInExternalFilesDir(c, null, » ).apk»; . The intent with a package-archive type doesn’t appear to like the content: scheme used with downloads to an internal location, but does like file: . (Trying to wrap the internal path into a File object and then getting the path doesn’t work either, even though it results in a file: url, as the app won’t parse the apk; looks like it must be external.)
Just an extension, if anyone need a library then this might help. Thanks to Raghav
First add the following line to AndroidManifest.xml :
Then use the following code to install apk:
Came at this some two months ago and supposedly figured it out. Came back today and couldn’t make heads or tails of it. Nothing had changed in my setup as far as I am aware, so apparently whatever past me had come up with wasn’t robust enough for present me. I finally managed to get something working again, so documenting it here for future me and anyone else who might stand to benefit from yet another attempt.
This attempt represents a direct Xamarin C# translation of the original Android Java Install APK — Session API example. It could probably use some additional work, but it’s at least a start. I have it running on an Android 9 device, though I have the project targetting Android 11.
What I particularly like about this approach is that it does not require any special work in the manifest — no broadcast receivers, file providers, etc. Granted, this takes as its source some APK in the app’s assets, whereas a more useful system will probably use some given APK path. I imagine that will introduce a certain level of additional complexity. In addition, I never ran into any issues here (at least as far as I could tell) with the Xamarin GC closing streams before Android was done with them. Nor did I have any issues with the APK not being parsed. I made sure to use a signed APK (the one generated by Visual Studio when deploying to the device worked just fine), and again I did not run into any file access permission issues simply due to using an APK from the app’s assets in this example.
One thing that some of the other answers here provided was the idea of making the sideloading permission grant more streamlined. The answer by Yabaze Cool provided this feature:
When I tested my translation, I uninstalled both the launcher demo and the app it installed. Not providing the check to canRequestPackageInstalls made it to where I had to manually press an additional Settings button to take me to the same dialog as does the ACTION_MANAGE_UNKNOWN_APP_SOURCES intent above. So adding this logic can help to somewhat simplify the installation process for the user.
Источник