Skip to content

anddani/retrofit

This branch is 924 commits behind square/retrofit:trunk.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 18, 2018
687b3a6 · Feb 18, 2018
Dec 20, 2014
Feb 21, 2016
Feb 14, 2018
Feb 17, 2018
Feb 6, 2018
Feb 18, 2018
Oct 26, 2017
Jan 21, 2018
Jun 2, 2016
Aug 23, 2015
May 11, 2015
May 14, 2017
Apr 10, 2012
Jan 21, 2018
May 6, 2017
Oct 26, 2015
Feb 18, 2018

Repository files navigation

Retrofit

Type-safe HTTP client for Android and Java by Square, Inc.

For more information please see the website.

Download

Download the latest JAR or grab via Maven:

<dependency>
  <groupId>com.squareup.retrofit2</groupId>
  <artifactId>retrofit</artifactId>
  <version>2.3.0</version>
</dependency>

or Gradle:

compile 'com.squareup.retrofit2:retrofit:2.3.0'

Snapshots of the development version are available in Sonatype's snapshots repository.

Retrofit requires at minimum Java 7 or Android 2.3.

ProGuard

If you are using ProGuard you need to add the following options:

# Retain generic type information for use by reflection by converters and adapters.
-keepattributes Signature
# Retain service method parameters.
-keepclassmembernames,allowobfuscation interface * {
    @retrofit2.http.* <methods>;
}
# Ignore annotation used for build tooling.
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

License

Copyright 2013 Square, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Type-safe HTTP client for Android and Java by Square, Inc.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 97.5%
  • HTML 1.9%
  • Other 0.6%