OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:androidManifestFile
(Results
1 - 3
of
3
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricConfig.java
19
private final File
androidManifestFile
;
48
public RobolectricConfig(final File
androidManifestFile
, final File resourceDirectory) {
49
this(
androidManifestFile
, resourceDirectory, new File(resourceDirectory.getParent(), "assets"));
55
* @param
androidManifestFile
location of the AndroidManifest.xml file
59
public RobolectricConfig(final File
androidManifestFile
, final File resourceDirectory, final File assetsDirectory) {
60
this.
androidManifestFile
=
androidManifestFile
;
71
if (!
androidManifestFile
.exists() || !
androidManifestFile
.isFile()) {
72
throw new FileNotFoundException(
androidManifestFile
.getAbsolutePath() + " not found or not a file; it should point to your project's AndroidManifest.x (…)
[
all
...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestUtil.java
76
public static RobolectricConfig newConfig(String
androidManifestFile
) {
77
return new RobolectricConfig(resourceFile(
androidManifestFile
), null, null);
/frameworks/base/tools/aapt/
Resource.cpp
[
all
...]
Completed in 45 milliseconds