All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robolectric.res.android.AssetPath Maven / Gradle / Ivy

There is a newer version: 4.14.1
Show newest version
package org.robolectric.res.android;

import java.nio.file.Path;

public class AssetPath {
  public final Path file;
  public final boolean isSystem;

  public AssetPath(Path file, boolean isSystem) {
    this.file = file;
    this.isSystem = isSystem;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy