Issue in resolving nonnull and notnull symbol in looper.java

后端 未结 5 2028

I\'m developing an android app please help me to solve dependency error.

package android.os;
import android.support.annotation.NonNull;
import android.suppor         


        
5条回答
  •  不知归路
    2021-01-17 13:53

    Try:

    import android.support.annotation.NonNull;
    

    Also add gradle build as other guys already mentioned:

    dependencies {
        compile 'com.android.support:support-annotations:+'
    }
    

提交回复
热议问题