use of com.android.tools.idea.npw.cpp.ConfigureCppSupportPath in project android by JetBrains.
the class NewProjectWizardDynamic method addPaths.
/**
* Add the steps for this wizard
*/
private void addPaths() {
addPath(new ConfigureAndroidProjectPath(getDisposable()));
for (NewFormFactorModulePath path : NewFormFactorModulePath.getAvailableFormFactorModulePaths(getDisposable())) {
addPath(path);
}
addPath(new ConfigureCppSupportPath(getDisposable()));
}
Aggregations