|
| 1 | +"use strict"; |
| 2 | +var __importDefault = (this && this.__importDefault) || function (mod) { |
| 3 | + return (mod && mod.__esModule) ? mod : { "default": mod }; |
| 4 | +}; |
| 5 | +Object.defineProperty(exports, "__esModule", { value: true }); |
| 6 | +exports.withViroAndroid = void 0; |
| 7 | +const config_plugins_1 = require("@expo/config-plugins"); |
| 8 | +const fs_1 = __importDefault(require("fs")); |
| 9 | +const path_1 = __importDefault(require("path")); |
| 10 | +const insertLinesHelper_1 = require("./util/insertLinesHelper"); |
| 11 | +const withBranchAndroid = (config, props) => { |
| 12 | + // Directly edit MainApplication.java |
| 13 | + config = (0, config_plugins_1.withDangerousMod)(config, [ |
| 14 | + "android", |
| 15 | + async (config) => { |
| 16 | + const mainApplicationPath = path_1.default.join(config.modRequest.platformProjectRoot, "app", "src", "main", "java", ...(config?.android?.package?.split?.(".") || []), "MainApplication.java"); |
| 17 | + const root = config.modRequest.platformProjectRoot; |
| 18 | + fs_1.default.readFile(mainApplicationPath, "utf-8", (err, data) => { |
| 19 | + data = (0, insertLinesHelper_1.insertLinesHelper)("import com.viromedia.bridge.ReactViroPackage;", `package ${config?.android?.package};`, data); |
| 20 | + /** |
| 21 | + * ******************************************************************** |
| 22 | + * Sample app.json with property config |
| 23 | + * Options: "AR", "GVR", "OVR_MOBILE" |
| 24 | + * |
| 25 | + * https://docs.expo.dev/guides/config-plugins/#using-a-plugin-in-your-app |
| 26 | + * ******************************************************************** |
| 27 | + * |
| 28 | + * plugins: [ |
| 29 | + * [ |
| 30 | + * "@viro-community/react-viro", |
| 31 | + * { |
| 32 | + * "androidXrMode": "GVR" |
| 33 | + * } |
| 34 | + * ] |
| 35 | + * ], |
| 36 | + * |
| 37 | + * ******************************************************************** |
| 38 | + * Sample app.json with multiple options for Viro config |
| 39 | + * ******************************************************************** |
| 40 | + * plugins: [ |
| 41 | + * [ |
| 42 | + * "@viro-community/react-viro", |
| 43 | + * { |
| 44 | + * "androidXrMode": ["GVR", "AR"] |
| 45 | + * } |
| 46 | + * ] |
| 47 | + * ], |
| 48 | + * ******************************************************************** |
| 49 | + * Sample app.json without property config |
| 50 | + * The default configuration is "AR" |
| 51 | + * ******************************************************************** |
| 52 | + * |
| 53 | + * plugins: [ "@viro-community/react-viro" ], |
| 54 | + * |
| 55 | + */ |
| 56 | + const viroPlugin = config?.plugins?.find((plugin) => Array.isArray(plugin) && plugin[0] === "@viro-community/react-viro"); |
| 57 | + console.log("viroPlugin", viroPlugin); |
| 58 | + let viroPluginConfig = ["AR"]; |
| 59 | + if (Array.isArray(viroPlugin)) { |
| 60 | + if (Array.isArray(viroPlugin[1].androidXrMode)) { |
| 61 | + viroPluginConfig = viroPlugin[1].androidXrMode.filter((mode) => ["AR", "GVR", "OVR_MOBILE"].includes(mode)); |
| 62 | + } |
| 63 | + else if (["AR", "GVR", "OVR_MOBILE"].includes(viroPlugin[1]?.androidXrMode)) { |
| 64 | + viroPluginConfig = [viroPlugin[1]?.androidXrMode]; |
| 65 | + } |
| 66 | + } |
| 67 | + console.log("viroPluginConfig", viroPluginConfig); |
| 68 | + let target = ""; |
| 69 | + for (const viroConfig of viroPluginConfig) { |
| 70 | + target = |
| 71 | + target + |
| 72 | + ` packages.add(new ReactViroPackage(ReactViroPackage.ViroPlatform.valueOf("${viroConfig}")));\n`; |
| 73 | + } |
| 74 | + console.log("target", target); |
| 75 | + data = (0, insertLinesHelper_1.insertLinesHelper)(target, "List<ReactPackage> packages = new PackageList(this).getPackages();", data); |
| 76 | + fs_1.default.writeFile(mainApplicationPath, data, "utf-8", function (err) { |
| 77 | + if (err) |
| 78 | + console.log("Error writing MainApplication.java"); |
| 79 | + }); |
| 80 | + }); |
| 81 | + return config; |
| 82 | + }, |
| 83 | + ]); |
| 84 | + return config; |
| 85 | +}; |
| 86 | +const withViroProjectBuildGradle = (config) => (0, config_plugins_1.withProjectBuildGradle)(config, async (newConfig) => { |
| 87 | + newConfig.modResults.contents = newConfig.modResults.contents.replace(/minSdkVersion.*/, `minSdkVersion = 24`); |
| 88 | + newConfig.modResults.contents = newConfig.modResults.contents.replace(/classpath\("com.android.tools.build:gradle.*/, `classpath('com.android.tools.build:gradle:4.1.1')`); |
| 89 | + return newConfig; |
| 90 | +}); |
| 91 | +const withViroAppBuildGradle = (config) => (0, config_plugins_1.withAppBuildGradle)(config, async (config) => { |
| 92 | + config.modResults.contents = config.modResults.contents.replace(/implementation "com.facebook.react:react-native:\+" \/\/ From node_modules/, `implementation "com.facebook.react:react-native:+" // From node_modules |
| 93 | +
|
| 94 | + implementation project(':gvr_common') |
| 95 | + implementation project(':arcore_client') |
| 96 | + implementation project(path: ':react_viro') |
| 97 | + implementation project(path: ':viro_renderer') |
| 98 | + implementation 'com.google.android.exoplayer:exoplayer:2.7.1' |
| 99 | + implementation 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-7'`); |
| 100 | + return config; |
| 101 | +}); |
| 102 | +const withViroSettingsGradle = (config) => (0, config_plugins_1.withSettingsGradle)(config, async (config) => { |
| 103 | + config.modResults.contents += ` |
| 104 | +include ':react_viro', ':arcore_client', ':gvr_common', ':viro_renderer' |
| 105 | +project(':arcore_client').projectDir = new File('../node_modules/@viro-community/react-viro/android/arcore_client') |
| 106 | +project(':gvr_common').projectDir = new File('../node_modules/@viro-community/react-viro/android/gvr_common') |
| 107 | +project(':viro_renderer').projectDir = new File('../node_modules/@viro-community/react-viro/android/viro_renderer') |
| 108 | +project(':react_viro').projectDir = new File('../node_modules/@viro-community/react-viro/android/react_viro') |
| 109 | + `; |
| 110 | + return config; |
| 111 | +}); |
| 112 | +const withViroManifest = (config) => (0, config_plugins_1.withAndroidManifest)(config, async (newConfig) => { |
| 113 | + const contents = newConfig.modResults; |
| 114 | + contents.manifest.$["xmlns:tools"] = "http://schemas.android.com/tools"; |
| 115 | + contents?.manifest?.application?.[0]["meta-data"]?.push({ |
| 116 | + $: { |
| 117 | + "android:name": "com.google.ar.core", |
| 118 | + "android:value": "optional", |
| 119 | + }, |
| 120 | + }); |
| 121 | + contents.manifest.queries = [ |
| 122 | + { |
| 123 | + package: [ |
| 124 | + { |
| 125 | + $: { |
| 126 | + "android:name": "com.google.ar.core", |
| 127 | + }, |
| 128 | + }, |
| 129 | + ], |
| 130 | + }, |
| 131 | + ]; |
| 132 | + contents.manifest["uses-feature"] = []; |
| 133 | + contents.manifest["uses-permission"].push({ |
| 134 | + $: { |
| 135 | + "android:name": "android.permission.CAMERA", |
| 136 | + }, |
| 137 | + }); |
| 138 | + contents.manifest["uses-feature"].push({ |
| 139 | + $: { |
| 140 | + "android:name": "android.hardware.camera", |
| 141 | + }, |
| 142 | + }); |
| 143 | + contents.manifest["uses-feature"].push({ |
| 144 | + $: { |
| 145 | + "android:name": "android.hardware.camera.autofocus", |
| 146 | + "android:required": "false", |
| 147 | + "tools:replace": "required", |
| 148 | + }, |
| 149 | + }); |
| 150 | + contents.manifest["uses-feature"].push({ |
| 151 | + $: { |
| 152 | + "android:glEsVersion": "0x00030000", |
| 153 | + "android:required": "false", |
| 154 | + "tools:node": "remove", |
| 155 | + "tools:replace": "required", |
| 156 | + }, |
| 157 | + }); |
| 158 | + contents.manifest["uses-feature"].push({ |
| 159 | + $: { |
| 160 | + "android:name": "android.hardware.sensor.accelerometer", |
| 161 | + "android:required": "false", |
| 162 | + "tools:replace": "required", |
| 163 | + }, |
| 164 | + }); |
| 165 | + contents.manifest["uses-feature"].push({ |
| 166 | + $: { |
| 167 | + "android:name": "android.hardware.sensor.gyroscope", |
| 168 | + "android:required": "false", |
| 169 | + "tools:replace": "required", |
| 170 | + }, |
| 171 | + }); |
| 172 | + return newConfig; |
| 173 | +}); |
| 174 | +const withViroAndroid = (config, props) => { |
| 175 | + (0, config_plugins_1.withPlugins)(config, [[withBranchAndroid, props]]); |
| 176 | + withViroProjectBuildGradle(config); |
| 177 | + withViroManifest(config); |
| 178 | + withViroSettingsGradle(config); |
| 179 | + withViroAppBuildGradle(config); |
| 180 | + return config; |
| 181 | +}; |
| 182 | +exports.withViroAndroid = withViroAndroid; |
0 commit comments