mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-09 20:25:15 +08:00
21 lines
745 B
JavaScript
21 lines
745 B
JavaScript
var Platform = require("Platform");
|
|
|
|
var testPackage = {
|
|
description: "Angry flappy birds",
|
|
appVersion: "1.5.0",
|
|
label: "2.4.0",
|
|
isMandatory: false,
|
|
isAvailable: true,
|
|
updateAppVersion: false,
|
|
packageHash: "hash240",
|
|
packageSize: 1024
|
|
};
|
|
|
|
if (Platform.OS === "android") {
|
|
// Genymotion forwards 10.0.3.2 to host machine's localhost
|
|
testPackage.downloadUrl = "http://10.0.3.2:8081/CodePushDemoAppTests/InstallUpdateTests/CodePushDemoApp.includeRequire.runModule.bundle?platform=android&dev=true"
|
|
} else if (Platform.OS === "ios") {
|
|
testPackage.downloadUrl = "http://localhost:8081/CodePushDemoAppTests/InstallUpdateTests/CodePushDemoApp.includeRequire.runModule.bundle?platform=ios&dev=true"
|
|
}
|
|
|
|
module.exports = testPackage; |