We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InfoDao_Impl 这个类没有提交。
package com.example.qingchen.vrmr.mainactivity.module;
import com.example.qingchen.vrmr.DataBase.InfoDao; import com.example.qingchen.vrmr.DataBase.InfoDao_Impl; import com.example.qingchen.vrmr.DataBase.InfoDataBase; import com.example.qingchen.vrmr.MyApplication;
import javax.inject.Named;
import dagger.Module; import dagger.Provides;
/**
The text was updated successfully, but these errors were encountered:
No branches or pull requests
InfoDao_Impl 这个类没有提交。
package com.example.qingchen.vrmr.mainactivity.module;
import com.example.qingchen.vrmr.DataBase.InfoDao;
import com.example.qingchen.vrmr.DataBase.InfoDao_Impl;
import com.example.qingchen.vrmr.DataBase.InfoDataBase;
import com.example.qingchen.vrmr.MyApplication;
import javax.inject.Named;
import dagger.Module;
import dagger.Provides;
/**
*/
@module
public class InfoModule {
@provides
@nAmed("InfoDao")
InfoDao provideInfoDao(){
return new InfoDao_Impl(InfoDataBase.getInstance(MyApplication.getContext()));
}
}
The text was updated successfully, but these errors were encountered: