tv源码相关的内容我找了很多版本的,之前试过跑过一些代码都飘红,昨天静下心来一个个解决这些飘红问题,就成功运行了几个tv项目,不过有些页面返回卡顿问题还待解决,今天就安卓项目运行问题总结一下。
Could not initialize class com.android.sdklib.repository.AndroidSdkHandler
在 build.gradle 中更新 gradle版本
classpath 'com.android.tools.build:gradle:4.2.1'
Android Studio中Run按钮是灰色的解决
- 点击Run旁边 Select Run/Debug Configuration按钮
- 选择 Edit Configuration
- 在model下拉框中选择app.如果下拉框中没有app,那么请先去设置
tools ->Android->sync project with gradles files;
更新好后。回到这一步,model中选择app,就好
Android Studio Run/Debug configuration error: Module not specified
-
在项目的根文件夹中,打开文件进行编辑。settings.gradle
-
从文件中剪切行。include ‘:app’
-
在 Android Studio 上,单击“菜单”,然后选择 。FileSync Project with Gradle files
-
同步后,将回线粘贴到文件中。include ‘:app’settings.gradle
-
再次重新运行。Sync Project with Gradle files
org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin
在项目中的gradle.properties添加一句话:
android.overridePathCheck=true
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)