vendredi 8 mai 2015

android Hide this may cost you money

When I add the following xml

 <uses-permission android:name="android.permission.CALL_PHONE" />

In AndroidMainfest I get this message when I install the android app : enter image description here

could I do something to hide this message when apk installed because it is not friendly for users.

Then I used this code on my adapter :

   public void onClick(View v) { 
               //do something
                   Intent callIntent = new Intent(Intent.ACTION_CALL);
               callIntent.setData(Uri.parse(PhoneCall));
               v.getContext().startActivity(callIntent); 
           //  notifyDataSetChanged();
         }
       });

Aucun commentaire:

Enregistrer un commentaire