Skip to content

Commit ce87d7f

Browse files
Mofl2328montymxb
authored andcommitted
Corrects Android error messages (#279)
The error messages were swapped. After checking for the permissions mentioned in the error message it would show the missing permissions for the other group.
1 parent 1c59dbf commit ce87d7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ParsePush/Internal/Android/ManifestInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ internal class ManifestInfo {
2929

3030
private const string MissingParsePushServiceMessage = "<service android:name=\"parse.ParsePushService\" />.\n";
3131

32-
private static string MissingParsePushBroadcastReceiverMessage {
32+
private static string MissingApplicationPermissionMessage {
3333
get {
3434
string gcmPackagePermission = PackageName + ".permission.C2D_MESSAGE";
3535
return
@@ -45,7 +45,7 @@ private static string MissingParsePushBroadcastReceiverMessage {
4545
}
4646
}
4747

48-
private static string MissingApplicationPermissionMessage {
48+
private static string MissingParsePushBroadcastReceiverMessage {
4949
get {
5050
return
5151
"<receiver android:name=\"parse.ParsePushBroadcastReceiver\" />.\n" +

0 commit comments

Comments
 (0)