Added feature for surveys provider to Settings

It is now possible to create and show surveys to a user
asking them for feedback within the Settings app.

Test: JUnitTests
Bug: 27823357
Change-Id: I824899045f6ce30e5b6f46d20888da673114f658
This commit is contained in:
Salvador Martinez
2016-10-19 12:51:45 -07:00
parent b305ec6762
commit 980f575955
4 changed files with 70 additions and 0 deletions

View File

@@ -110,4 +110,9 @@ public class FeatureFactoryImpl extends FeatureFactory {
}
return mSearchFeatureProvider;
}
@Override
public SurveyFeatureProvider getSurveyFeatureProvider(Context context) {
return null;
}
}