use of com.android.tools.idea.npw.deprecated.ChooseModuleTypeStep in project android by JetBrains.
the class NewModuleWizardDynamic method addPaths.
private void addPaths() {
Collection<NewModuleDynamicPath> contributions = getContributedPaths();
Iterable<ModuleTemplateProvider> templateProviders = Iterables.concat(ImmutableSet.of(new AndroidModuleTemplatesProvider()), contributions);
addPath(new SingleStepPath(new ChooseModuleTypeStep(templateProviders, getDisposable())));
for (NewFormFactorModulePath path : NewFormFactorModulePath.getAvailableFormFactorModulePaths(getDisposable())) {
path.setGradleSyncIfNecessary(false);
addPath(path);
}
for (NewModuleDynamicPath contribution : contributions) {
addPath(contribution);
}
}
Aggregations