We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc428ed + 24598a6 commit f2d7157Copy full SHA for f2d7157
auth/src/test/java/com/firebase/ui/auth/testhelpers/CustomRobolectricGradleTestRunner.java
@@ -30,6 +30,8 @@
30
import org.robolectric.res.FileFsFile;
31
import org.robolectric.res.FsFile;
32
33
+import java.io.File;
34
+
35
/**
36
* For custom manifest hack, see:
37
* https://gist.github.com/venator85/282df3677af9ecac56e5e4b91471cd8f
@@ -67,7 +69,8 @@ protected AndroidManifest getAppManifest(Config config) {
67
69
getModuleRootPath(config),
68
70
appManifest.getAndroidManifestFile()
71
.getPath()
- .replace("manifests/full", "manifests/aapt"));
72
+ .replace("manifests" + File.separator + "full",
73
+ "manifests" + File.separator + "aapt"));
74
75
return new AndroidManifest(
76
androidManifestFile,
0 commit comments