Advertisement
Guest User

What to delete and what to add

a guest
Aug 9th, 2015
13,529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Delete the following lines:
  2. <uses-permission android:name="android.permission.CALL_PHONE"/>
  3. <uses-permission android:name="android.permission.SEND_SMS"/>
  4.  
  5. And add the line:
  6. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  7.  
  8.  
  9. Now go down a little to line 18, the line which says:
  10. <application android:label="@string/app_name">
  11. Change this line to:
  12. <application android:label="@string/app_name" android:icon="@drawable/icon" >
  13.  
  14. Now back to nullbyte.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement