Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Use standard cordova variable in place of applicationId
Browse files Browse the repository at this point in the history
  • Loading branch information
cfsnyder committed Feb 16, 2016
1 parent 2c1d939 commit 48c4a56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 25 deletions.
7 changes: 3 additions & 4 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="${applicationId}.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />
<permission android:name="$PACKAGE_NAME.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="$PACKAGE_NAME.permission.C2D_MESSAGE" />
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest/application">
Expand All @@ -53,7 +53,7 @@
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="${applicationId}" />
<category android:name="$PACKAGE_NAME" />
</intent-filter>
</receiver>
<service
Expand All @@ -76,7 +76,6 @@
</service>
</config-file>

<framework src="push.gradle" custom="true" type="gradleReference" />
<framework src="com.android.support:support-v13:23+" />
<framework src="com.google.android.gms:play-services-gcm:+" />

Expand Down
21 changes: 0 additions & 21 deletions push.gradle

This file was deleted.

0 comments on commit 48c4a56

Please sign in to comment.