org.robolectric.res.android.AssetPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resources Show documentation
Show all versions of resources Show documentation
An alternative Android testing framework.
package org.robolectric.res.android;
import org.robolectric.res.FsFile;
public class AssetPath {
public final FsFile file;
public final boolean isSystem;
public AssetPath(FsFile file, boolean isSystem) {
this.file = file;
this.isSystem = isSystem;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy