SlideShare a Scribd company logo
#postiotour#dfua
#postiotour
Cherkasy-Kropyvnytskyi-Poltava-Kremenchuk-Kharkiv
Post I/O Tour UA 2017
Vlad Ivanov, Anna Kurylo, Valentyn Shybanov, Kateryna Zavorotchenko, Yelyzaveta Losieva
GDG Kyiv-Center, WTM Kyiv
#postiotour#dfua
#postiotour
Google I/O 2017
ззовні
і зсередини
Volodymyr Ivanov
GDG Kyiv-Center, GDG Community Mentor
#postiotour#dfua
#postiotour
Що оточує Google I/O?
#postiotour
Що оточує Google I/O?
Stanford
#postiotour#dfua
#postiotour
Що оточує Google I/O?
Stanford
GDG Global Summit
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour
Google I/O 2016
#postiotour
Google I/O 2016
Що було не так?
#postiotour
Спека
#postiotour
Спека
Спрага
#postiotour
Спека
Спрага
Плейсмент
#postiotour#dfua
#postiotour#dfua
#postiotour
Keynote
Session
CodeLab
Office Hour
Speechless Live
#postiotour#dfua
#postiotour#dfua
Чого/кого не було на
I/O’17?
#postiotour
Sergey Brin, Larry Page
Matias Duarte
Astro Teller
Sebastian Thrun
Regina Dugan
#postiotour#dfua
Чому?
#postiotour#dfua
Бо частина завжди менше цілого!
#postiotour#dfua
Хто запам’ятався?
#postiotour#dfua
Tal Oppenheimer
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
Community Lounge
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
Питання?
Volodymyr Ivanov
GDG Kyiv-Center, GDG Community Mentor
#postiotour#dfua
Дякую!
Volodymyr Ivanov
GDG Kyiv-Center, GDG Community Mentor
#postiotour
Google I/O for Android
developers
Highlights from I/O’17
Kateryne Zavorotchenko
Android Developer
#postiotour
Google I/O News
for Android Developers
#postiotour
What's New in Android O
Notifications
Autofill Framework
ShortCut Manager
Alert window overlay
Autofill Framework
Kotlin
Instant Apps
Architecture Components
Spring Animation
Picture in Picture
AnimationSet reverse()
ANDROID_ID unique
Background app behavior Adaptive icons
#postiotour
Architecture Components
Percictence and Offline
Room stores data in the SQL.
Solving the Lifecycle Problem
ViewModel contains LiveData.
Stored per Activity.
LiveData<T> - observable
Data Holder.
Lifecycle aware component
#postiotour
Android Instant Apps
Is the same app but used by demand. Same UI and
Navigation.
Works without installation
Modularization. Every instant app must have one (and
only one) base feature APK and can have a few feature
modules.
Design for multiple entry points. Use DeepLinking.
Sign in with SmartLock works with Instant Apps.
#postiotour
Notifications
ShortCut Manager
Notification Channels
notificationManager
.createNotificationChannel(channel);
Channels - mandatory once you target API 26.
A named category of notifications from one
app that share the same behavior (sound,
light, vibration) for one app.
#postiotour
Notifications
Adaptive Icons
<adaptive-icon>
<background
android:drawable="@color/ic_background"/>
<foreground
android:drawable="@mipmap/ic_foreground"/>
</adaptive-icon>
#postiotour
Kotlin
https://kotlinlang.org/
https://developer.android.com/kotlin/
Google partners with
JetBrains to move Kotlin
into a nonprofit foundation.
It is already open-sourced
under Apache2.
#postiotour
Kotlin
data class User(var name: String)
public class VideoGame {
private String name;
public VideoGame(String name) { this.name = name; }
public String getName() { return name; }
public void setName(String name) { this.name = name;}..
@Override
public boolean equals(Object o) {..}
@Override
public int hashCode() {..}
@Override
public String toString() {..}
}
#postiotour
Android Animations Spring to Life
Fling friction
Spring Animation
dependencies {
...
compile "com.android.support:support-dynamic-animation:26.0.0-beta2"
}
FlingAnimation fling = new FlingAnimation(view, DynamicAnimation.SCROLL_X);
final SpringAnimation springAnim = new SpringAnimation(view,
DynamicAnimation.TRANSLATION_Y, 0);
#postiotour
Android OS Framework
Throttle queries over time. No limits on AlarmManager, SyncAdapter, JobScheduler for periodic work (yet).
Background services stopped shortly after leaving foreground.
JobIntentService. Uses jobs in O+ and services in pre-O. Handles wakelocks for you.
Bg location updates will be provided a few times per hour, wi-fi results in 30min, geofencing 2-3min.
#postiotour
Android OS Framework
Alert window type
APPLICATION_OVERLAY
Autofill Framework
AutofillManager afm =
this.getSystemService(AutofillManager.class);
#postiotour
Android Support Library
VectorCompatDrawable svg android:fillType
fixed
<aapt:attr
name="android:drawable">
<vector ...>
Path Interpolator
<objectAnimator ..
android:interpolator="@interpolator/path_fastSlo
w"
../>
We can inline drawable
#postiotour
Android Support Library
Removed support for SDK < 14 (1400 methods)
Fonts in XML. Fonts are a new resource type
FontsContractCompat with FontProvider.
Provide entire Google Fonts catalog.
android:fontFamily="@font/myfont"
TextView autosize. app:autoSizeTextType="uniform"
#postiotour
Android Design Tools
ConstraintSet.
TransitionManager
.beginDelayedTransision(constraintLayout);
#postiotour
Android Development Tools
Android Studio 3.0. Breaking Gradle API change. Kotlin. Code -> Convert Java file to Kotlin file.
xml new resource type tools:text="@tools:sample/lorem"
XML Fonts. In layout in the fontFamily option - browse available online fonts.
Profiler. CPU, Memory and Network state.
Instant Apps. Context menu -> Extract -> Modularize (in Canary 1)
Adaptive Icons. In the image asset wizard - option for adaptive icons.
Build Cache. Get output from the cache rather than re-run the task.
Java 8. Use {sourceCompativility JavaVersion.VERSION_1_8..}
Match attribute on build type on lib and app: "debug" lib with debug app.
#postiotour
Fragment Tricks
Fragments vs Views
Views display info and publish user interaction events (draw, clicks, scroll). Don't add external
dependencies to a View - service bind, network call.
Fragments integrate with lifecycle and may be aware of other app components. Bind to a service,
communicate with data model.
FragmentManager.beginTransaction()
.replace(R.id.container, fragment1)
.addToBackStack("state1")
.setReorderingAllowed(true)
.commit();
Optimisation
#postiotour
Fragment Tricks
Transitions
FragmentManager.beginTransation()
.setTransition(TRANSIT_FRAGMENT_FADE)
.replace..
Shared Elements
fragment
.setSharedElementEn
terTransition(.); // for
shared views
fragment
.setEnterTransition(.)
; // for not shared
views
.addSharedElement(vi
ew, "target") // name of
the element ..
#postiotour
Contextual App Experiences
Nearby Messages exposes simple publish and subscribe methods.
Nearby Notifications Triggers an app intent from
beacon to launch an app
Awareness API:
Fence API (Callbacks), Snapshot API (Polling)
Require Google Play services 7.8.0 or higher.
Eddystone supported beacon hardware required. Rely on the phone
detecting a Bt Low Energy beacon nearby.
Fused Location Provider, Activity recognition, Geofencing,
Place detection, State of the device (Time, Headphones)
#postiotour
Android Fireside Chat
Q: How do you ensure that OEM actions does not break OS
A: Project Treble created a foundation layer for Android, vendor interface. Reduce the cost of updating
Android OS. New devices will have it.
Q: What's the difference between Systrace and Profiler
A: Systrace gets all of its data from the Linux kernel. Profiler sample the run-time of your app and its
functions.
Q: Are you still working on a data binding
A: Yes it one of our responsibilities
Q: How Kotlin related to Swift
A: We are independent. Kotlin was announced in 2011.
Q: Will Google Play Services will be open-source as Firebase SDK
A: Play Services extends some google apps, which are not open-sourced.
Q: Are you going to implement platform framework components using Kotlin
A: Java code for the near future because of millions of code lines. Main goal -make the Java and Kotlin API
interoperatable
Q: Is Volley still recommended
A: We recommend use Retrofit and OkHttp and Glide
#postiotour
Google I/O Products
for Android Developers
#postiotour
Assistant (Google Actions)
#postiotour
Cloud AI & TensorFlow
Image Analysis
Video Analysis
Speech Recognition
Dynamic Translation
Text Analysis
#postiotour
VR & AR
#postiotour
Sites
https://developers.google.com/actions/
https://cloud.google.com/products/machine-learning/
https://codelabs.developers.google.com/codelabs/tensorflow-style-transfer-android
https://codelabs.developers.google.com/codelabs/vr_view_app_101/
https://developers.google.com/tango/apis/java/
#postiotour
Google I/O Tips
for Android Developers
#postiotour
Schedule
#postiotour
App Reviews and Office Hours
#postiotour
Codelabs
#postiotour
Googleplex
#postiotour
Thank You
questions?
#postiotour
Highlights from I/O’17
Web & Google Assistant
Anna Kurylo
Web Developer @ DAXX
#postiotour
My way to pick an agenda
Expected: lots of talks for Angular
#postiotour
My way to pick an agenda
Expected: lots of talks for Angular
Reality: 2 talks on Angular ¯_(ツ)_/¯
#postiotour#dfua
#postiotour
Web. Mobile Web
#postiotour#dfua
#postiotour#dfua
ROADSHOW
ROADSHOW
Lie-Fi
ROADSHOW
of users abandon sites that take
longer than 3 seconds to load40%
ROADSHOW
Reliable Fast Engaging
User experiences need to be...
#postiotour
ROADSHOW
ROADSHOW
are a new level of caring about
the quality of your user experience
Progressive Web Apps
ROADSHOW
ROADSHOW
ROADSHOW
ROADSHOW
ROADSHOW
ROADSHOW
ROADSHOW
`
PWAs with
Web Push
Notifications
#postiotour#dfua
#postiotour#dfua
smashingmagazine.com/2016/12/progressive-web-amps
#postiotour
Chrome DevTools
Lots of improvements for debugging async code
#postiotour#dfua
#postiotour#dfua
#postiotour#dfua
Real-time coverage
#postiotour#dfua
Lighthouse, ˈlītˌhous (n): a tower or other structure tool containing a
beacon light to warn or guide ships at sea developers.
#postiotour#dfua
#postiotour#dfua
Polymer Summit 2017
August 22-23
Copenhagen, Denmark
Two days of talks, codelabs, and
breakout sessions from the Polymer
team, Googlers, and major
companies using Polymer and Web
Components.
https://events.withgoogle.com/poly
mer-summit-2017/
#postiotour
Google Assistant
#postiotour
#postiotour
Google Assistant Grows
New platforms: now on iPhone (but only in the US),
later — on Android Auto, on IoT etc.
#postiotour
Google Assistant Grows
New platforms: now on iPhone (but only in the US),
later — on Android Auto, on IoT etc.
New ways to build with Google Assistant:
Actions on Google
#postiotour
#postiotour
Google Assistant Grows
New platforms: now on iPhone (but only in the US),
later — on Android Auto, on IoT etc.
New ways to build with Google Assistant:
Actions on Google
Transactions API
#postiotour
#postiotour
Google Assistant Grows
New platforms: now on iPhone (but only in the US),
later — on Android Auto, on IoT etc.
New ways to build with Google Assistant:
Actions on Google
Transactions API
Google Assistant on Hardware
#postiotour
#postiotour#dfua
Actions on Google Developer
Challenge
Win 1 of more than 20 prizes,
including ticket to Google I/O 2018,
for creating an app with Actions on
Google.
#postiotour
Links
Web:
https://www.ampproject.org/
https://developers.google.com/web/tools/lighthouse/
https://events.withgoogle.com/polymer-summit-2017/
Google Assistant:
https://g.co/dev/ActionsDesign
https://developers.google.com/actions/challenge/
https://codelabs.developers.google.com/
#postiotour
Thank you!
Questions?Questions?
@bluebirrrrd
#postiotour
Thank you!
Questions?
#postiotour
Thank you!
Questions?
#postiotour
Thank you!
Questions?

More Related Content

PDF
Testable Android Apps using data binding and MVVM
PPTX
Google Plus SignIn : l'Authentification Google
PDF
Android Unit Testing With Robolectric
PDF
Device fragmentation vs clean code
PDF
Testable Android Apps DroidCon Italy 2015
PDF
Trying to build an Open Source browser in 2020
PDF
Android Wear CodeLab - GDG Firenze
PPT
A Noob’S Guide To Android Application Development
Testable Android Apps using data binding and MVVM
Google Plus SignIn : l'Authentification Google
Android Unit Testing With Robolectric
Device fragmentation vs clean code
Testable Android Apps DroidCon Italy 2015
Trying to build an Open Source browser in 2020
Android Wear CodeLab - GDG Firenze
A Noob’S Guide To Android Application Development

What's hot (7)

PDF
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
PDF
Isolating GPU Access in its Own Process (Foss-North 2018)
PDF
Vaadin DevDay 2017 - DI your UI
PDF
How to develop nice portlet with Juzu framework
PDF
Apache Maven - From the reason to the implementation
PPTX
Android 3D by Ivan Trajkovic and Dotti Colvin
PDF
Unit testing on Android (Droidcon Dubai 2015)
Droidcon2013 pro guard, optimizer and obfuscator in the android sdk_eric lafo...
Isolating GPU Access in its Own Process (Foss-North 2018)
Vaadin DevDay 2017 - DI your UI
How to develop nice portlet with Juzu framework
Apache Maven - From the reason to the implementation
Android 3D by Ivan Trajkovic and Dotti Colvin
Unit testing on Android (Droidcon Dubai 2015)
Ad

Similar to Встреча Google Post IO ( Владимир Иванов, Катерина Заворотченко и Сергей Комлач) (20)

PDF
A gently introduction to AngularJS
PPT
GWT Extreme!
PDF
Exploring Google (Cloud) APIs with Python & JavaScript
PPTX
Lecture 12 - Maps, AR_VR_aaaaHardware.pptx
PDF
How to code to code less
PPTX
從零開始學 Android
PDF
Google's serverless journey: past to present
PDF
Refactoring Wunderlist. UA Mobile 2016.
PDF
Stmik bandung
PDF
DIY: Computer Vision with GWT.
PDF
DIY- computer vision with GWT
PDF
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Jforum S...
PDF
Introduction to Cloud Computing with Google Cloud
PDF
From Legacy to Hexagonal (An Unexpected Android Journey)
KEY
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
ZIP
iPhone/iPad Development with Titanium
PDF
purely_functional_play_framework_application
PDF
Exploring Google (Cloud) APIs with Python & JavaScript
PDF
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...
PDF
Android - Open Source Bridge 2011
A gently introduction to AngularJS
GWT Extreme!
Exploring Google (Cloud) APIs with Python & JavaScript
Lecture 12 - Maps, AR_VR_aaaaHardware.pptx
How to code to code less
從零開始學 Android
Google's serverless journey: past to present
Refactoring Wunderlist. UA Mobile 2016.
Stmik bandung
DIY: Computer Vision with GWT.
DIY- computer vision with GWT
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Jforum S...
Introduction to Cloud Computing with Google Cloud
From Legacy to Hexagonal (An Unexpected Android Journey)
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
iPhone/iPad Development with Titanium
purely_functional_play_framework_application
Exploring Google (Cloud) APIs with Python & JavaScript
Microservices for the Masses with Spring Boot, JHipster, and OAuth - Switzerl...
Android - Open Source Bridge 2011
Ad

More from Alina Vilk (20)

PDF
Designer in you, Irina Shapoval, Lead Designer, DataArt
PDF
.NET framework vs .net core 3.1 commons &amp; differences
PPTX
Expression trees in c#, Алексей Голубь (Svitla Systems)
PPTX
"Dev to PM" D.Fedotov
PPTX
Игорь Литвиненко (Senior iOS- и Android-разработчик,DataArt)
PDF
Алексей Рыбаков (Senior Engineer,Technical Evangelist DataArt )
PDF
Ирина Шаповал,(Lead UI/UX дизайнер, DataArt)
PPTX
Devops, v.02, Alexander Pavlenko (DataArt)
PPTX
O DevOps, Stanislav Kolenkin ( DataArt)
PPTX
Interactive 3D graphics for web with three.js, Andrey Vedilin, DataArt
PPTX
Architecture components, Константин Марс, TeamLead, Senior Developer, DataArt
PPTX
Al around ML 2017, Оксана Савенко, студентка НТУ имени Каразина
PPTX
Кирилл Безпалый, .NET Developer, Ciklum
PPTX
Игорь Леонтьев, Lead Architect on all Blockchain projects of Viseo group
PPTX
Александр Сергиенко, Senior Android Developer, DataArt
PPTX
Евгений Дубовик, Senior Developer, DataArtDb presentation gdg
PDF
Дмитрий Козицкий,Lead UX / UI Designer, DataArt
PPTX
Игорь Юзовицкий,UX Expert, DataArt
PPTX
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
PPTX
«Делегирование как идеальный способ угробить проект», Александр Ивахненко, IT...
Designer in you, Irina Shapoval, Lead Designer, DataArt
.NET framework vs .net core 3.1 commons &amp; differences
Expression trees in c#, Алексей Голубь (Svitla Systems)
"Dev to PM" D.Fedotov
Игорь Литвиненко (Senior iOS- и Android-разработчик,DataArt)
Алексей Рыбаков (Senior Engineer,Technical Evangelist DataArt )
Ирина Шаповал,(Lead UI/UX дизайнер, DataArt)
Devops, v.02, Alexander Pavlenko (DataArt)
O DevOps, Stanislav Kolenkin ( DataArt)
Interactive 3D graphics for web with three.js, Andrey Vedilin, DataArt
Architecture components, Константин Марс, TeamLead, Senior Developer, DataArt
Al around ML 2017, Оксана Савенко, студентка НТУ имени Каразина
Кирилл Безпалый, .NET Developer, Ciklum
Игорь Леонтьев, Lead Architect on all Blockchain projects of Viseo group
Александр Сергиенко, Senior Android Developer, DataArt
Евгений Дубовик, Senior Developer, DataArtDb presentation gdg
Дмитрий Козицкий,Lead UX / UI Designer, DataArt
Игорь Юзовицкий,UX Expert, DataArt
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
«Делегирование как идеальный способ угробить проект», Александр Ивахненко, IT...

Recently uploaded (20)

PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
RMMM.pdf make it easy to upload and study
PDF
Indian roads congress 037 - 2012 Flexible pavement
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
advance database management system book.pdf
PPTX
Digestion and Absorption of Carbohydrates, Proteina and Fats
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PPTX
Unit 4 Skeletal System.ppt.pptxopresentatiom
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PPTX
Cell Types and Its function , kingdom of life
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PDF
What if we spent less time fighting change, and more time building what’s rig...
PPTX
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
PPTX
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
PDF
1_English_Language_Set_2.pdf probationary
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PDF
Empowerment Technology for Senior High School Guide
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
202450812 BayCHI UCSC-SV 20250812 v17.pptx
RMMM.pdf make it easy to upload and study
Indian roads congress 037 - 2012 Flexible pavement
A systematic review of self-coping strategies used by university students to ...
advance database management system book.pdf
Digestion and Absorption of Carbohydrates, Proteina and Fats
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
Unit 4 Skeletal System.ppt.pptxopresentatiom
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
Cell Types and Its function , kingdom of life
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
A powerpoint presentation on the Revised K-10 Science Shaping Paper
What if we spent less time fighting change, and more time building what’s rig...
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
1_English_Language_Set_2.pdf probationary
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
Empowerment Technology for Senior High School Guide
LDMMIA Reiki Yoga Finals Review Spring Summer

Встреча Google Post IO ( Владимир Иванов, Катерина Заворотченко и Сергей Комлач)