This question is similar to
but I really didn't get the answer from that post. I also saw some posts on C2D_MESSAGE, but never saw anything about the permission no longer working in 23+.
In my manifest, so that I can build and receive GCM notifications, I have:
<uses-permission android:name="com.mydomain.myapp.permission.C2D_MESSAGE" />
<permission android:name="com.mydomain.myapp.C2D_MESSAGE" android:protectionLevel="signature" />
Now I have to target API level 26, so I had to go to the new permission level. My phone is no longer getting the notifications I build. Do I need to specifically request the C2D_MESSAGE permission now, and if so, how do I do that? --- Thanks