The method checkSelfPermission(Context, String) is undefined for the type ContextCompat

前端 未结 3 1442
余生分开走
余生分开走 2020-12-19 11:18
Context context;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
         


        
3条回答
  •  粉色の甜心
    2020-12-19 11:50

    ContextCompat.checkSelfPermission() requires support library in version 23 or higher.

    Add in dependencies block in lower-level build.gradle:

    compile 'com.android.support:appcompat-v7:23.1.1' 
    

    If you have previous version here (which you probably have), you should replace lane with provided by me.

提交回复
热议问题