I do a similar thing with regards to my applications, if you get the paid version you get notifications, if you get the free version you don't get such updates.
I accomplished this by adding a field to the table where all my registration ID's are called status. When a notification push is done by my server it will only send to those registrations where the status is 'paid'.
So for your case I suggest adding the option to your application to stop receiving notifications. This method will perform a post to your server like follows:
Function updateNotificationStatus(boolean status)
{
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://yourserver/update.php");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("status", status));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = client.execute(post);
BufferedReader rd = new BufferedReader(new
}
Handle these posts on your server and just update the status field in you table.
Hope this helps