
Typensichere HTTP-Client-Bibliothek für Android und Java, die REST-API-Kommunikation mit anmerkungsbasierter Anfragekonfiguration und Konverterunterstützung ermöglicht.
Typsicherer HTTP-Client für Android und Java von Square, Inc.
Weitere Informationen finden Sie auf der Website.
Laden Sie das neueste JAR herunter oder holen Sie es via Maven:
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.4.0</version>
</dependency>
oder Gradle:
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
Schnappschüsse der Entwicklungsversion sind im Sonatype-snapshots-Repository verfügbar.
Retrofit benötigt mindestens Java 7 oder Android 2.3.
Wenn Sie ProGuard verwenden, müssen Sie die folgenden Optionen hinzufügen:
# 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
Möglicherweise benötigen Sie auch Regeln für OkHttp und Okio, die Abhängigkeiten sind.
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.