SlideShare a Scribd company logo
Retrofit 2.0
KRISTIJAN JURKOVIC
WHAT IS RETROFIT?
USAGE
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
WHAT’S DIFFERENT?
com.squareup.retrofit > com.squareup.retrofit2
Converters
Rest interface methods return Call<T>
OkHttp is required
Security exception if no Internet permission
RestAdapter > Retrofit
CALL<T>
call.enqueue(new Callback<T> { … })
call.execute();
call.cancel();
ONRESPONSE
response.isSuccess();
response.code();
response.body();
response.errorBody().string();
URL HANDLING
same as web <a href=“…” /> handling
@GET(“blog”)
Base url: http://www.infinum.co/api/v1
Result: http://www.infinum.co/api/blog
Base url: http://www.infinum.co/api/v1/
Result: http://www.infinum.co/api/v1/blog
URL HANDLING
@GET(“/blog”)
Base url: http://www.infinum.co/api/v1
Result: http://www.infinum.co/blog
@GET(“http://www.infinum.co/api/v1/blog”)
@GET
void get(@Url String url);
LOG
CONVERTERS
.addConverterFactory({pass in converter here});
Gson: com.squareup.retrofit:converter-gson
Jackson: com.squareup.retrofit:converter-jackson
Moshi: com.squareup.retrofit:converter-moshi
Protobuf: com.squareup.retrofit:converter-protobuf
Wire: com.squareup.retrofit:converter-wire
Simple XML: com.squareup.retrofit:converter-simplexml
Converter.Factory interface
CONVERTERS
.addConverterFactory({pass in converter here});
Gson gson = new GsonBuilder()
... add type converters here
.create();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(“http://www.infinum.co/api/”)
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
Any questions?
KRISTIJAN.JURKOVIC@INFINUM.CO
@KJURKOVIC
Visit infinum.co or find us on social networks:
infinum.co infinumco infinumco infinum

More Related Content

PPTX
Retrofit 2 - O que devemos saber
Bruno Vieira
 
PDF
Android Libs - Retrofit
Daniel Costa Gimenes
 
PDF
Retrofit
bresiu
 
DOCX
Client server part 12
fadlihulopi
 
PPTX
Retrofit Technology Overview by Cumulations Technologies
Cumulations Technologies
 
PDF
Retro vs volley (2)
Artjoker Digital
 
PDF
Extending Retrofit for fun and profit
Matthew Clarke
 
PPT
Pemrograman Jaringan
belajarkomputer
 
Retrofit 2 - O que devemos saber
Bruno Vieira
 
Android Libs - Retrofit
Daniel Costa Gimenes
 
Retrofit
bresiu
 
Client server part 12
fadlihulopi
 
Retrofit Technology Overview by Cumulations Technologies
Cumulations Technologies
 
Retro vs volley (2)
Artjoker Digital
 
Extending Retrofit for fun and profit
Matthew Clarke
 
Pemrograman Jaringan
belajarkomputer
 

What's hot (20)

PDF
Service Oriented Web Development with OSGi - C Ziegeler
mfrancis
 
PPTX
Sensu wrapper-sensu-summit
Lee Briggs
 
PDF
Asynchronen Code testen
ndrssmn
 
PDF
Easy REST APIs with Jersey and RestyGWT
David Chandler
 
PPTX
My sql failover test using orchestrator
YoungHeon (Roy) Kim
 
PPTX
MySQL Monitoring using Prometheus & Grafana
YoungHeon (Roy) Kim
 
PDF
How to send gzipped requests with boto3
Luciano Mammino
 
PPTX
Behind modern concurrency primitives
Bartosz Sypytkowski
 
PDF
NestJS
Wilson Su
 
PDF
Spark Day 2017- Spark 의 과거, 현재, 미래
Moon Soo Lee
 
PDF
Nestjs MasterClass Slides
Nir Kaufman
 
PDF
Source Plugins
Matthew Pickering
 
PDF
Crawler 2
Cheng-Yi Yu
 
PDF
Analysing Github events with Neo4j
Christophe Willemsen
 
PDF
Programação Assíncrona com Asyncio
Allisson Azevedo
 
PDF
Mobile Programming - Network Universitas Budi Luhur
Riza Fahmi
 
PDF
Mobile Programming - 3 UDP
Riza Fahmi
 
PDF
Making the most of your gradle build - Gr8Conf 2017
Andres Almiray
 
PDF
Making the most of your gradle build - Greach 2017
Andres Almiray
 
PPTX
StackExchange.redis
Larry Nung
 
Service Oriented Web Development with OSGi - C Ziegeler
mfrancis
 
Sensu wrapper-sensu-summit
Lee Briggs
 
Asynchronen Code testen
ndrssmn
 
Easy REST APIs with Jersey and RestyGWT
David Chandler
 
My sql failover test using orchestrator
YoungHeon (Roy) Kim
 
MySQL Monitoring using Prometheus & Grafana
YoungHeon (Roy) Kim
 
How to send gzipped requests with boto3
Luciano Mammino
 
Behind modern concurrency primitives
Bartosz Sypytkowski
 
NestJS
Wilson Su
 
Spark Day 2017- Spark 의 과거, 현재, 미래
Moon Soo Lee
 
Nestjs MasterClass Slides
Nir Kaufman
 
Source Plugins
Matthew Pickering
 
Crawler 2
Cheng-Yi Yu
 
Analysing Github events with Neo4j
Christophe Willemsen
 
Programação Assíncrona com Asyncio
Allisson Azevedo
 
Mobile Programming - Network Universitas Budi Luhur
Riza Fahmi
 
Mobile Programming - 3 UDP
Riza Fahmi
 
Making the most of your gradle build - Gr8Conf 2017
Andres Almiray
 
Making the most of your gradle build - Greach 2017
Andres Almiray
 
StackExchange.redis
Larry Nung
 
Ad

Viewers also liked (19)

PDF
Retro vs Volley
Artjoker
 
PPTX
introduce Okhttp
朋 王
 
PDF
Simplificando chamadas HTTP com o Retrofit
Felipe Pedroso
 
PDF
Retrofit
Amin Cheloh
 
PDF
Realm @Android
Theodore(Yongbin) Cha
 
PDF
Android DevConference - Dagger 2: uso avançado em projetos Android
iMasters
 
PDF
Reactive programming on Android
Tomáš Kypta
 
PPTX
大鱼架构演进
Jun Liu
 
PDF
Reactive programming with RxJava
Jobaer Chowdhury
 
PPTX
Retrofit2 &OkHttp 
でAndroidのHTTP通信が快適だにゃん
removed_96f4639f4009e61a478bf38f188e8404
 
PDF
Java Libraries You Can’t Afford to Miss
Andres Almiray
 
PDF
Flask, Redis, Retrofit을 이용한 Android 로그인 서비스 구현하기
Manjong Han
 
PDF
Practical RxJava for Android
Tomáš Kypta
 
PDF
RxJava - introduction & design
allegro.tech
 
PDF
Reactive programming on Android
Tomáš Kypta
 
PDF
Seismic retrofit methods
Paul McMullin
 
PPTX
Reactive Programming on Android - RxAndroid - RxJava
Ali Muzaffar
 
PDF
Java 8 Stream API and RxJava Comparison
José Paumard
 
PDF
Staying Afloat with Buoy: A High-Performance HTTP Client
lpgauth
 
Retro vs Volley
Artjoker
 
introduce Okhttp
朋 王
 
Simplificando chamadas HTTP com o Retrofit
Felipe Pedroso
 
Retrofit
Amin Cheloh
 
Realm @Android
Theodore(Yongbin) Cha
 
Android DevConference - Dagger 2: uso avançado em projetos Android
iMasters
 
Reactive programming on Android
Tomáš Kypta
 
大鱼架构演进
Jun Liu
 
Reactive programming with RxJava
Jobaer Chowdhury
 
Retrofit2 &OkHttp 
でAndroidのHTTP通信が快適だにゃん
removed_96f4639f4009e61a478bf38f188e8404
 
Java Libraries You Can’t Afford to Miss
Andres Almiray
 
Flask, Redis, Retrofit을 이용한 Android 로그인 서비스 구현하기
Manjong Han
 
Practical RxJava for Android
Tomáš Kypta
 
RxJava - introduction & design
allegro.tech
 
Reactive programming on Android
Tomáš Kypta
 
Seismic retrofit methods
Paul McMullin
 
Reactive Programming on Android - RxAndroid - RxJava
Ali Muzaffar
 
Java 8 Stream API and RxJava Comparison
José Paumard
 
Staying Afloat with Buoy: A High-Performance HTTP Client
lpgauth
 
Ad

Similar to Infinum Android Talks #16 - Retrofit 2 by Kristijan Jurkovic (20)

PPTX
Performance #4 network
Vitali Pekelis
 
PDF
Android Performance #4: Network
Yonatan Levin
 
PPTX
Salesforce Integration using REST SOAP and HTTP callouts
RAMNARAYAN R
 
PPTX
Rpi python web
sewoo lee
 
PDF
Vladimir Vorontsov - Splitting, smuggling and cache poisoning come back
DefconRussia
 
PPTX
Solving anything in VCL
Fastly
 
PDF
Build resource server &amp; client for OCF Cloud (2018.8.30)
남균 김
 
PDF
An introduction to PHP 5.4
Giovanni Derks
 
ODP
Formal Verification of Web Service Interaction Contracts
Gera Shegalov
 
PDF
Debugging: Rules And Tools - PHPTek 11 Version
Ian Barber
 
PPTX
Unit testing CourseSites Apache Filter
Wayan Wira
 
PDF
Command pattern vs. MVC: Lean Beans (are made of this)
philipdurbin
 
PDF
Web Sockets - HTML5
Matheus Marabesi
 
PDF
TADHack 2015 Webinar Oracle Comms & Optare
Alan Quayle
 
PDF
TADHack 2015 webinar Oracle Comms & Optare
antonry
 
ODP
Building and Incredible Machine with Pipelines and Generators in PHP (IPC Ber...
dantleech
 
PDF
Debugging: Rules & Tools
Ian Barber
 
PDF
Ruby HTTP clients comparison
Hiroshi Nakamura
 
PDF
How to monitor your micro-service with Prometheus?
Wojciech Barczyński
 
PPTX
ASP.NET MVC 4 Request Pipeline Internals
Lukasz Lysik
 
Performance #4 network
Vitali Pekelis
 
Android Performance #4: Network
Yonatan Levin
 
Salesforce Integration using REST SOAP and HTTP callouts
RAMNARAYAN R
 
Rpi python web
sewoo lee
 
Vladimir Vorontsov - Splitting, smuggling and cache poisoning come back
DefconRussia
 
Solving anything in VCL
Fastly
 
Build resource server &amp; client for OCF Cloud (2018.8.30)
남균 김
 
An introduction to PHP 5.4
Giovanni Derks
 
Formal Verification of Web Service Interaction Contracts
Gera Shegalov
 
Debugging: Rules And Tools - PHPTek 11 Version
Ian Barber
 
Unit testing CourseSites Apache Filter
Wayan Wira
 
Command pattern vs. MVC: Lean Beans (are made of this)
philipdurbin
 
Web Sockets - HTML5
Matheus Marabesi
 
TADHack 2015 Webinar Oracle Comms & Optare
Alan Quayle
 
TADHack 2015 webinar Oracle Comms & Optare
antonry
 
Building and Incredible Machine with Pipelines and Generators in PHP (IPC Ber...
dantleech
 
Debugging: Rules & Tools
Ian Barber
 
Ruby HTTP clients comparison
Hiroshi Nakamura
 
How to monitor your micro-service with Prometheus?
Wojciech Barczyński
 
ASP.NET MVC 4 Request Pipeline Internals
Lukasz Lysik
 

More from Infinum (20)

PDF
Infinum Android Talks #20 - Making your Android apps fast like Blue Runner an...
Infinum
 
PDF
Infinum Android Talks #20 - DiffUtil
Infinum
 
PDF
Infinum Android Talks #20 - Benefits of using Kotlin
Infinum
 
PDF
Infinum iOS Talks #4 - Making our VIPER more reactive
Infinum
 
PDF
Infinum iOS Talks #4 - Making your Swift networking code more awesome with Re...
Infinum
 
PDF
Infinum Android Talks #13 - Using ViewDragHelper
Infinum
 
PDF
Infinum Android Talks #14 - Log4j
Infinum
 
PDF
Infinum Android Talks #9 - Making your app location-aware
Infinum
 
PDF
Infinum Android Talks #14 - Gradle plugins
Infinum
 
PDF
Infinum Android Talks #14 - Facebook for Android API
Infinum
 
PDF
Infinum Android Talks #19 - Stop wasting time fixing bugs with TDD by Domagoj...
Infinum
 
PDF
Infinum Android Talks #18 - Create fun lists by Ivan Marić
Infinum
 
PDF
Infinum Android Talks #18 - In-app billing by Ivan Marić
Infinum
 
PDF
Infinum Android Talks #18 - How to cache like a boss by Željko Plesac
Infinum
 
PDF
Infinum iOS Talks #2 - VIPER for everybody by Damjan Vujaklija
Infinum
 
PDF
Infinum iOS Talks #2 - Xamarin by Ivan Đikić
Infinum
 
PDF
Infinum iOS Talks #1 - Swift under the hood: Method Dispatching by Vlaho Poluta
Infinum
 
PDF
Infinum iOS Talks #1 - Swift done right by Ivan Dikic
Infinum
 
PDF
Infinum iOS Talks #1 - Becoming an iOS developer swiftly by Vedran Burojevic
Infinum
 
PDF
Infinum Android Talks #17 - Testing your Android applications by Ivan Kust
Infinum
 
Infinum Android Talks #20 - Making your Android apps fast like Blue Runner an...
Infinum
 
Infinum Android Talks #20 - DiffUtil
Infinum
 
Infinum Android Talks #20 - Benefits of using Kotlin
Infinum
 
Infinum iOS Talks #4 - Making our VIPER more reactive
Infinum
 
Infinum iOS Talks #4 - Making your Swift networking code more awesome with Re...
Infinum
 
Infinum Android Talks #13 - Using ViewDragHelper
Infinum
 
Infinum Android Talks #14 - Log4j
Infinum
 
Infinum Android Talks #9 - Making your app location-aware
Infinum
 
Infinum Android Talks #14 - Gradle plugins
Infinum
 
Infinum Android Talks #14 - Facebook for Android API
Infinum
 
Infinum Android Talks #19 - Stop wasting time fixing bugs with TDD by Domagoj...
Infinum
 
Infinum Android Talks #18 - Create fun lists by Ivan Marić
Infinum
 
Infinum Android Talks #18 - In-app billing by Ivan Marić
Infinum
 
Infinum Android Talks #18 - How to cache like a boss by Željko Plesac
Infinum
 
Infinum iOS Talks #2 - VIPER for everybody by Damjan Vujaklija
Infinum
 
Infinum iOS Talks #2 - Xamarin by Ivan Đikić
Infinum
 
Infinum iOS Talks #1 - Swift under the hood: Method Dispatching by Vlaho Poluta
Infinum
 
Infinum iOS Talks #1 - Swift done right by Ivan Dikic
Infinum
 
Infinum iOS Talks #1 - Becoming an iOS developer swiftly by Vedran Burojevic
Infinum
 
Infinum Android Talks #17 - Testing your Android applications by Ivan Kust
Infinum
 

Recently uploaded (20)

PPTX
Contractor Management Platform and Software Solution for Compliance
SHEQ Network Limited
 
PPTX
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
PDF
MiniTool Power Data Recovery Crack New Pre Activated Version Latest 2025
imang66g
 
PDF
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
PDF
Generating Union types w/ Static Analysis
K. Matthew Dupree
 
PDF
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PDF
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
PDF
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
PDF
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
PPT
Activate_Methodology_Summary presentatio
annapureddyn
 
PDF
Applitools Platform Pulse: What's New and What's Coming - July 2025
Applitools
 
PPTX
Maximizing Revenue with Marketo Measure: A Deep Dive into Multi-Touch Attribu...
bbedford2
 
PDF
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
PPTX
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
PDF
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
PDF
New Download FL Studio Crack Full Version [Latest 2025]
imang66g
 
Contractor Management Platform and Software Solution for Compliance
SHEQ Network Limited
 
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
MiniTool Power Data Recovery Crack New Pre Activated Version Latest 2025
imang66g
 
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
Generating Union types w/ Static Analysis
K. Matthew Dupree
 
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
Activate_Methodology_Summary presentatio
annapureddyn
 
Applitools Platform Pulse: What's New and What's Coming - July 2025
Applitools
 
Maximizing Revenue with Marketo Measure: A Deep Dive into Multi-Touch Attribu...
bbedford2
 
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
New Download MiniTool Partition Wizard Crack Latest Version 2025
imang66g
 
New Download FL Studio Crack Full Version [Latest 2025]
imang66g
 

Infinum Android Talks #16 - Retrofit 2 by Kristijan Jurkovic