forked from Ninjalama/streamyfin_mirror
30 lines
870 B
JavaScript
30 lines
870 B
JavaScript
const { readFileSync, writeFileSync } = require("fs");
|
|
const { join } = require("path");
|
|
const { withDangerousMod } = require("@expo/config-plugins");
|
|
|
|
const withChangeNativeAndroidTextToWhite = (expoConfig) =>
|
|
withDangerousMod(expoConfig, [
|
|
"android",
|
|
(modConfig) => {
|
|
if (modConfig.modRequest.platform === "android") {
|
|
const stylesXmlPath = join(
|
|
modConfig.modRequest.platformProjectRoot,
|
|
"app",
|
|
"src",
|
|
"main",
|
|
"res",
|
|
"values",
|
|
"styles.xml"
|
|
);
|
|
|
|
let stylesXml = readFileSync(stylesXmlPath, "utf8");
|
|
|
|
stylesXml = stylesXml.replace(/@android:color\/black/g, "@android:color/white");
|
|
|
|
writeFileSync(stylesXmlPath, stylesXml, { encoding: "utf8" });
|
|
}
|
|
return modConfig;
|
|
},
|
|
]);
|
|
|
|
module.exports = withChangeNativeAndroidTextToWhite; |