From 73b744c60ed4f9035ab0ef018df5ee2b5abc6d0b Mon Sep 17 00:00:00 2001 From: Geoffrey Goh Date: Thu, 28 Jan 2016 20:23:10 -0800 Subject: [PATCH] edit invalid package exception message --- .../codepush/react/CodePushInvalidPackageException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidPackageException.java b/android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidPackageException.java index 72f124e..1d6ad09 100644 --- a/android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidPackageException.java +++ b/android/app/src/main/java/com/microsoft/codepush/react/CodePushInvalidPackageException.java @@ -2,6 +2,6 @@ package com.microsoft.codepush.react; public class CodePushInvalidPackageException extends RuntimeException { public CodePushInvalidPackageException() { - super("Update is invalid - no files with extension .jsbundle or .bundle were found in the update package."); + super("Update is invalid - no files with extension .bundle, .js or .jsbundle were found in the update package."); } }