forked from OneSignal/onesignal-expo-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestRuniOS.ts
28 lines (24 loc) · 988 Bytes
/
testRuniOS.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { xcodeProjectAddNse } from "./onesignal/withOneSignalIos";
import { Mode } from "./types/types";
// Quick testing on any Xcode project
// 1. Update values for your project
// 2. Run `yarn build` from here
// 3. Open a terminal to the root of your Xcode project
// 4. Run `node ~/WHERE_YOU_CLONED_ME/onesignal-expo-plugin/build/testRuniOS.js`
// 5. Run `pod init`, if you haven't already.
// - Make sure you are testing with 2 targets in your Podfile, your main target AND your NSE
// - If you forget your main target in your Podfile you will get the
// "Please add the host targets for the embedded targets to the Podfile." error
// even if your .xcodeproj is correct.
const options = {
iosPath: '.',
mode: Mode.Dev,
bundleIdentifier: "com.onesignal.XcodeTestProj",
devTeam: "99SW8E36CT",
iPhoneDeploymentTarget: '12.0'
};
xcodeProjectAddNse(
"XcodeTestProj",
options,
"../../repos/onesignal-expo-plugin/support/serviceExtensionFiles/"
);