org.robovm.compiler.config.ExperimentalFeatures Maven / Gradle / Ivy
The newest version!
package org.robovm.compiler.config;
import org.simpleframework.xml.Element;
/**
* Configuration to control experimental settings
*/
public class ExperimentalFeatures {
/**
* specifies if entries in list should be considered as XCFramework candidates
* (option useful when configuration for frameworks is provided in dependency pods as robopods,
* in this case it is not possible to provide full path requirement in )
*/
@Element(required = false)
private boolean xcFrameworkLookup = true;
public boolean isXCFrameworksEnabled() {
return xcFrameworkLookup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy