在 Android Studio 中标记为错误代码,但已成功构建 gradle 并在设备上运行
2022-09-04 19:35:52
我的代码有问题。我的代码在 Android Studio 中标记为错误代码,但已成功构建 gradle 并在设备上运行,如下所示:
当前配置:
- 我当前的项目在依赖项中使用了很多库。但是,如果具有小库的项目不会像这样标记错误。
- 安卓工作室 1.5 RC1
- 编译SdkVersion 'Google Inc.:Google APIs:23
- buildToolsVersion '23.0.2'
- classpath 'com.android.tools.build:gradle:1.3.1'
活动我已经完成,但尚未解决问题:
- >重建项目时始终保持干净
- 使缓存无效/重新启动>打开Android工作室>打开此项目
- 关闭安卓工作室>重新启动计算机>再次打开安卓工作室>打开此项目
- 更新安卓版本和 SDK 版本 5.卸载安卓工作室>重新安装安卓工作室>开放项目
编辑:似乎错误每个代码从Android支持,如回收器视图,CardView,APpCompact
这是我的缺点
dependencies {
compile project(':android-crop')
compile project(':RTEditor-Toolbar')
compile files('libs/apache-mime4j-0.6.jar')
compile files('libs/httpmime-4.1.3.jar')
compile files('libs/jetbrains-annotations.jar')
compile files('libs/gcm.jar')
//three party library
compile('com.crashlytics.sdk.android:crashlytics:2.5.1@aar') {
transitive = true;
}
compile('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
exclude module: 'support-v4'
}
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.vinaysshenoy:mugen:1.0.1'
compile 'com.github.clans:fab:1.5.5'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.github.curioustechizen.android-ago:library:1.3.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.github.chrisbanes.photoview:library:+'
compile 'com.subinkrishna:circularimageview:1.0.2'
compile 'me.leolin:ShortcutBadger:1.1.3@aar'
compile 'com.google.android.gms:play-services-ads:8.3.0'
compile 'com.google.android.gms:play-services-identity:8.3.0'
compile 'com.google.android.gms:play-services-gcm:8.3.0'
compile 'cn.trinea.android.common:trinea-android-common:4.2.15'
compile 'com.sothree.slidinguppanel:library:3.1.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
}
那么如何解决?感谢您的提前