- Android Instant Apps 101
- Android Instant Apps are a cool new way to consume native apps without prior installation. Only parts of the app are downloaded and launched, giving the users a native look and feel in a couple of seconds.
- How Does it Work?
- What’s the Background of It?
- What Are App Links and How Are They Defined?
- Associate Your App With Your Domain
- How to Define Android Instant Modules?
- What Were the Android Instant Apps Challenges?
- Conclusion
- Marshmallow. Это должен сделать каждый. Добавляем поддержку SDK 23 в наши приложения
- Важное замечание
- Doze Mode, App Standby и Runtime Permissions
- Autobackup
- Deprecated
- Adoptable storage
- Небольшие, но важные дополнения
- Изменения в ART
- Новые возможности Android
- App Linking
- Fingerprint API
- Confirm Credentials
- Text Selection
- Direct share
- Voice Interaction
Android Instant Apps 101
Android Instant Apps are a cool new way to consume native apps without prior installation. Only parts of the app are downloaded and launched, giving the users a native look and feel in a couple of seconds.
How Does it Work?
First of all, don’t confuse them with Progressive Web Apps where a launcher icon opens a web app via Chrome browser. An Instant app will actually be installed on your phone, but without the need to search for it on the Play Store.
Web URLs will trigger the Google Play Store on your phone and fetch only the part of the app that is associated with the requested URL. The rest of the app is not downloaded. This way users can quickly enjoy the native experience of your Android application.
What’s the Background of It?
Well, you need to divide your Android project into a couple of modules. One of them is a base module with the essential code which is used in all other modules (API connection, database, shared preferences etc.). Other, feature modules, contain specific functionalities and activities which can be accessed via associated URLs.
Let’s say you have a web app with a list of products and a single page of the product. For example, you can link https://example.domain/products to launch the ProductsListActivity and https://example.domain/products/12 to launch the ProductActivity.
To make them accessible as instant app activities, they need to be packed into individual feature modules and they need to have associated App Links defined in their module manifests. We will call them Product and Product list modules.
Now, when a user tries to open https://example.domain/products/12, both Product and Base modules will start to download and the ProductActivity will be launched.
What Are App Links and How Are They Defined?
You’ve surely heard of deep links. They are defined in the app manifest, and they will be registered to the OS. When a user tries to open such a link, the OS will ask the user to choose between opening the link in a web browser or in your app. However, this is not enough for Instant apps, you need to go one step further – App Links. You need to include the autoVerify=”true” property.
Your app will verify if the links you specified are really associated with your domain. For this, you need to include the assetlinks.json file into the following folder of your domain root:
https://example.domain/.well-known/assetlinks.json.
Also, notice the android:order=”100″ property. This is actually a priority in this case. If you have a product list and a product single that correspond to the same path (/products and /products/10), the product single activity will be launched if there’s an id after the /products path. If not, then the product list activity is launched.
It is very important to define this. If there are two activities that correspond to the same path, Play Store won’t know which part of the app should be fetched.
Associate Your App With Your Domain
The assetlinks.json will need to contain your SHA256 keystore hashes. The relation field is set to the default value below, and the target object needs to be filled with app specific data and your SHA256 hash of the keystore.
When autoVerify=true does its magic, all associated App Links will directly launch your app. If you don’t have the app installed, the instant app will be downloaded instead.
Here’s an example of a demo app we did recently. When clicked on the associated link, a screen like this opens and offers to use the instant app instead. Note how quickly the app is opened, and on Oreo it’s even faster.
How to Define Android Instant Modules?
For an instant app, your project will consist of at least three different modules. You need to use Android Studio 3.0 for this. If you’re creating your app from scratch, there’s an option to enable the Instant app support for your project. All of the following modules will be initialised automatically. If you’re modifying an older app, you’ll need to break the old app module into a single base module and a couple of feature modules. Also, you’ll need to create an App and an Instant app module, which you will use to build both regular and instant app APKs.
App Module
First, you have to create an app module which defines the dependencies for all other modules (base + feature modules). In the build.gradle file of this module you will need to define the following:
Base Module
In this module, you will define the following dependency statements. Also, make sure that the ‘com.android.feature’ plugin is applied here.
Note that here, the compile statements become api statements for the regular dependencies we used before. The application project and feature projects are defined separately.
Feature Module
This module will have the following setting, also with the com.android.feature plugin applied.
You need to state which module is your base module and include it with the implementation project statement. Next, you can include the dependencies which are required only for this specific module. For example, if you’re using an animation library which is not used in any of the other modules.
Instant App Module
Finally, now there’s a com.android.instantapp plugin to be included in the build.gradle file for the instantapp module.
In this module, we will define which modules will be built as instant apps. The result of the instantapp module build is a zip file with the instant app APKs which you can upload separately to Google Play Store in the Android Instant Apps release manager. These APKs are handled similarly as the regular ones, they have their own rollout history and versioning.
That’s it! It’s fairly simple to start developing Android Instant Apps. But, there’s always a but!
What Were the Android Instant Apps Challenges?
First of all, the Instant Apps are not enabled by default for now. If you want to try it, you need to check your phone settings under Google account and enable the Instant Apps setting.
Next, we found that it’s extremely important to specify app links data in the following format:
Both http and https schemes need to be defined as shown in this code snippet. Any other way would cause a link verification failure and the app wouldn’t be linked properly.
Also, there is a recommendation to include the following code snippet into one of the activities in your app manifest. This annotates which activity should be launched in case the Instant app is launched from the Settings or a system launcher.
The official documentation states that the Google Search would offer Instant app annotation by default (small thunder icon), but we had problems with it. For our demo app, this was not the case. Google Search results didn’t annotate our demo links as Instant apps and the links led to the web page. Only if we tried to open the associated link from another app, like Gmail, the whole instant app process was triggered and the instant app was launched. Have you encountered any similar problems?
Conclusion
When first announced two years ago, I was very enthusiastic about Android Instant Apps. They respond to the problem of users having to search for the apps on the Store and wait till they’re downloaded to start using them. Web apps are much more accessible in that regard and the ease of discovery is much better. Instant apps come really close to filling this gap between web and native mobile apps. They already act very well and I think that they will become more popular with time. The main problems we encountered was a rather small community and the lack of proper documentation, but the situation on that matter is also getting better.
We would love to hear from you if you’ve tried using them or had any challenges implementing them!
__________
We’re available for partnerships and open for new projects. If you have an idea you’d like to discuss, share it with our team!
Subscribe to our newsletter
Subscribe now and get our top news once a month.
Источник
Marshmallow. Это должен сделать каждый. Добавляем поддержку SDK 23 в наши приложения
Мне повезло стать Google Developer Expert Android в России, и поэтому я вдвойне переживаю, что не все из вас подготовились к релизу заранее. Сейчас мы с вами постараемся запрыгнуть на уплывающий пароход с зефирками.
Вы можете не читать, а просто посмотреть мой доклад на прошедшем DroidCon.
Но специально для тех, кто любит читать хабр больше чем смотреть youtube — добро пожаловать под кат. Там мы пройдемся по чеклисту действий, которые каждый обязательно должен сделать в своем приложении, а потом посмотрим на новые возможности для разработчиков в sdk 23.
Важное замечание
Всё нижесказанное относится только к приложениям с targetSdk = 23 и выше! Как будут вести себя приложения с более старыми sdk на зефирке готов обсудить в комментариях.
Doze Mode, App Standby и Runtime Permissions
К сожалению длина статьи не смогла вместить эти три важнейших изменения в Android Marshmallow. Пожалуйста, прочтите о них в отдельной статье.
Autobackup
Теперь Android приложения каждую ночь, пока девайс на зарядке, будут сливать в пользовательский Drive все настройки. Вернее, те которые мы разрешим.
Зачем?
Пользователь при покупке нового сразу восстанавливает из Google Play не только все приложения, но и их настройки.
Чем плохо для нас?
В облако и на новые девайсы улетают из shared preferences данные аккаунтов и ключи GCM (пуши перестают работать). Нужно это предотвратить!
По дефолту бэкапятся все папки нашего приложения и все SharedPreferences. Не сохраняются лишь:
— пути на SD карте, не находящиеся в android/data/.
— getCacheDir()
— getCodeCacheDir()
— getNoBackupFilesDir()
Последняя папочка специально для этого как раз и создана.
Чтобы предотвратить часть файлов от бекапа пишем вот такую xml, где перечисляем все данные, которые не желаем пускать в бекап:
Чтобы определить наоборот лишь те файлы, которые хотим пустить в облако:
Если в бекап таки ушли ненужные для восстановления данные, мы можем сделать вот такую хитрость: в классе наследнике Application переопределить метод onRestoreFinished() и в нем удалить нежелательно восстановленные записи.
! Уберите из бекапа ключи Google Cloud Messages !
Deprecated
Если вы еще используете Apache Http client и напрочь отказываетесь перейти на современные аналоги, например, OkHttp, то вам срочно нужно добавить в build.gradle:
Теперь из sdk выпилили OpenSSL: libcrypto.so и libssl.so заменены на BoringSSL.
Если вы вдруг не знали до сегодняшнего дня о Notification.Builder, а использовали для содания нотификаций notification.setLatestEventInfo(), хватит, он удален. Прочитайте хотя бы мою статью, а лучше официальные доки, как правильно создавать и обновлять уведомления.
Adoptable storage
Теперь пользователь может отформатировать sd-карточку, превратив ее в почти внутреннее шифрованное хранилище. И тем самым система будет переносить и устанавливать приложения на новое хранилище. Чем это грозит для нас?
Если мы не используем в приложении стандартные методы и константы для получения путей (getFilesDir(), getCacheDir() и т.д.), а хардкодим пути к внутреннему хранилищу, то после перемещения файлов на карту точка монтирования сменится, и все наши старательно прописанные пути перестанут быть валидными.
Небольшие, но важные дополнения
Доступ к мак адресам устройств в округе теперь возможен только при сканировании методами WifiManager.getScanResults() BluetoothLeScanner.startScan() и при запрошенных пермишенах ACCESS_FINE_LOCATION или ACCESS_COARSE_LOCATION. А вот методы WifiInfo.getMacAddress() и BluetoothAdapter.getAddress() вернут всегда пустышку 02:00:00:00:00:00. это сделано в целях повышения секьюрности пользователя. Жаль не все обновятся на marshmallow, да и кастомные прошивки вряд ли сохранят это ограничение.
Из Android Keystore provider выкинули поддержку DSA-шифрования.
Теперь состояния WifiConfiguration объектов наши приложения могут менять только, если они сами их создали.
У камеры хорошие изменения по работе с доступом к сервису. Если приложение ушло в фон, а другое приложение наоборот вышло на первый план, то ему отдастся приоритет, а первое лишится сервиса. А еще, теперь можно использовать из разных приложений одновременно доступ к разным камерам устройства.
Изменения в ART
Новые возможности Android
С обязательными изменениями в нашем приложении покончено. Перейдем к основным фичам, которые нам предоставляет новый SDK.
App Linking
Многие разработчики встраивают в свои приложения фильтры url-схем, чтобы пользователю было предложено открыть определенный url с помощью приложения. Теперь появилась возможность лишить возможности других разработчиков обрабатывать url вашего сайта. Допустим если вы делаете банкинг, то точно не хотите, чтобы другие приложения, кроме приложения-клиента вашего банка могли открываться по нажатию пользователем на ссылку.
В манифесте нужно добавить вот такого вида фильтр:
И положить JSON на свой сайт (https://www.domain1.com/.well-known/assetlinks.json), вставив sha256 из кейстора, которым подписано приложение.
Единственное, о чем стоит помнить: если ваше приложение не будет установлено, то выскочит диалог «открыть с помощью» и приложение злоумышленника сможет открыться.
Fingerprint API
Наконец-то в Android появилась нативная поддержка сенсоров отпечатков пальцев. Теперь с помощью класса android.hardware.fingerprint.FingerprintManager проверяем наличие в устройстве сенсора isHardwareDetected(), запрашиваем разрешение USE_FINGERPRINT, и если у пользователя есть откатанные пальчики hasEnrolledFingerprints(), показываем стандартный диалог авторизации по отпечатку authentificate().
Confirm Credentials
Теперь у нас есть возможность перепроверить, что сейчас устройство в руках у его владельца, показав экран разблокировки перед важным действием в приложении, например, при попытке открыть папку «/отдых в Адлере 2007/».
Text Selection
Теперь контекстное меню для действий с выделенным текстом появляется непосредственно рядом с кареткой, для добавления своих действий мы так же можем воспользоваться меню, описанным в menu.xml, и добавить его с помощью метода startActionMode(Callback, ActionMode.TYPE_FLOATING).
Direct share
Важным дополнением в Marshmallow является возможность добавлять одному приложению до восьми различных объектов в стандартный диалог шаринга:
Главное не захламить диалог бесполезными вариантами шаринга. Старайтесь не злоупотреблять.
Voice Interaction
Важная, но не так подробно освещенная фишка, в отличии от «Now on tap» . Наше приложение, будучи запущенным из Google Now может вести диалог с пользователем с помощью класса android.app.VoiceInteractor.
На этом список не заканчивается. Более мелкие нововведения можно прочитать тут.
Обязательно пройдитесь по всем пунктам выше. Проверьте autobackup, doze mode и запросите все пермишены. На все вопросы буду рад ответить в комментариях.
Источник