build.gradle
ファイルにcompile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
を追加して、依存関係を解決するか、対応するjarをbulidパスに追加してください。その後、
私は2.0.0-beta1
を使用してみましたが、下記のようそれは私の工場のための違法な型変換エラーを与えたので、だから私の提案はにある2.0.0-beta2
error: method addConverterFactory in class Builder cannot be applied to given types;
required: Factory
found: GsonConverterFactory
reason: actual argument GsonConverterFactory cannot be converted to Factory by method invocation conversion
に移動Converter Factory
を取得するためにGsonConverterFactory.create()
を使用使用2.0.0-beta2
私のbuild.gradleは改造を解決するために以下の依存関係があります。
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
iagreenによる回答は、ベータ2を改造するためには機能しません.. retrofit2が使用されている場合、私はconverter-gson beta 2を@manojのように使用する必要があります。 – DJphy
は上記の依存関係 – NarendraJi