Correct, if not quite correctly captioned the question. Noticed part of the uses-permission and action for example

 <uses-permission android:name="android.permission.ACTION_HEADSET_PLUG"/> <action android:name="android.provider.Telephony.SMS_RECEIVED" /> 

not displayed in the tooltips when typing in Android Studio (both in v1.5.1 and v2). I intuitively understand what SMS_RECEIVED or permission.ACTION_HEADSET_PLUG" should be, for example, but you have to search for the correct values ​​on the Internet. Perhaps there is some kind of setting?

  • upgrade to version 2, although it worked for me in 1.5. And for example uses-permission ... INTERNET shows? - Herrgott
  • in v1.5.1 uses-android: name = "android.permission.INTERNET shows. in v2, the action android: name =" android.provider.Telephony.SMS_RECEIVED "does not show - x555xx
  • I read that, nobody uses the action SMS_RECEIVED . Just add <uses-permission android:name="android.permission.RECEIVE_SMS"> - Herrgott
  • which is exactly the google documentation, i.e. Is there a fixed list of "mandatory - optional" parameters somewhere? - x555xx
  • @ x55xx, Can you use any old android sdk ? - Herrgott

0