okhttp3.Cache не может быть предоставлен без конструктора @Inject или из метода с аннотацией @ Provides

Я использую Android Dagger2, но получаю сообщение об ошибке ниже. Мой класс AppModule:

@Module
public class AppModule {

RetrofitExample retrofitExample;

AppModule(RetrofitExample retrofitExample) {

    this.retrofitExample = retrofitExample;

}

@Singleton
@Provides
RetrofitExample provideApplication() {
    return retrofitExample;
}
}

Мой класс модуля API

@Module
class ApiModule {

String BaseUrl;

private  MainActivity  mainActivity;

ApiModule(String baseUrl) {
    this.BaseUrl = baseUrl;
}


public ApiModule(MainActivity downloadFileView) {
    this.mainActivity = downloadFileView;
}
@Provides
@Singleton
Gson provideGson() {
    GsonBuilder gsonBuilder = new GsonBuilder();
    gsonBuilder.setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES);
    return gsonBuilder.create();
}

@Provides
@Singleton
OkHttpClient provideOkhttpClient(Cache cache) {
    OkHttpClient.Builder client = new OkHttpClient.Builder();
    client.cache(cache);
    return client.build();
}

@Singleton
@Provides
Retrofit providesRetrofit(Gson gson, OkHttpClient okHttpClient) {
    return new Retrofit.Builder()
            .addConverterFactory(GsonConverterFactory.create(gson))
            .baseUrl(BaseUrl)
            .client(okHttpClient)
            .build();
}

}

Мой класс компонента API.

void inject(MainActivity activity);

Вот мой класс приложения

private static RetrofitExample mInstance;

private ApiComponent mApiComponent;

@Override
public void onCreate() {
    super.onCreate();

    mInstance = this;

    mApiComponent = DaggerApiComponent.builder()
            .appModule(new AppModule(this))
            .apiModule(new ApiModule("https://simplifiedcoding.net/demos/"))
            .build();
}

public static synchronized RetrofitExample getInstance() { return mInstance;    }
ApiComponent getApiComponent()
{
    return mApiComponent;
}

Я получаю следующую ошибку

okhttp3.Cache cannot be provided without an @Inject constructor or from an 
@Provides-annotated method.
okhttp3.Cache is injected at
net.simplifiedlearning.retrofitexample.ApiModule.provideOkhttpClient(cache)
okhttp3.OkHttpClient is injected at
net.simplifiedlearning.retrofitexample.ApiModule.providesRetrofit(…, 
okHttpClient)
retrofit2.Retrofit is injected at
net.simplifiedlearning.retrofitexample.MainActivity.retrofit
net.simplifiedlearning.retrofitexample.MainActivity is injected at
net.simplifiedlearning.retrofitexample.ApiComponent.inject(activity)

person Diya Bhat    schedule 16.11.2018    source источник


Ответы (1)


okhttp3.Cache cannot be provided without an @Inject constructor or from an 
@Provides-annotated method.

Тебе нужно

@Provides
@Singleton
Cache provideOkHttpCache(Application application) { 
    int cacheSize = 10 * 1024 * 1024; // 10 MiB
    Cache cache = new Cache(application.getCacheDir(), cacheSize);
    return cache;
}

в вашем ApiModule. Проверьте NetModule, который похож на ваш, на https://github.com/codepath/android_guides/wiki/Dependency-Injection-with-Dagger-2

person Raghunandan    schedule 16.11.2018
comment
@Raghunandan, могу я узнать ваш адрес электронной почты? - person Pie; 07.12.2018
comment
Не могли бы вы разобраться в этой проблеме, я не смог решить эту ошибку stackoverflow.com/questions/56513672/ @Raghunandan - person Pie; 09.06.2019