- A+
所属分类:android
android 报错与解决方案记录
Contents
cannot resolve symbol 'NonNull'
解决方法:依赖中添加如下语句
compile 'com.android.support:support-annotations:+'
Google Play requires that apps target API level 26 or higher.
解决方法:在targetSdkVersion前添加如下语句
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 22
Process 'command 'E:\Android\Sdk\build-tools\25.0.0\aapt.exe'' finished with non-zero exit value 1
解决方法:在Terminal中执行如下命令
gradlew processDebugResources --debug
然后在输出的日志中,往前翻,可以很快定位到真正出错的原因。