关于Android studio问题解决方案
关于Missing essential plugin:org.jetbrains.androidPlease reinstall Android Studio from scratch.报错问题
解决方案:
(版本号根据自己下载而定)
1,Windows操作系统删除以下路径 C:\Users\YourUserName\AppData\Roaming\Google\AndroidStudioPreview4.1
删除 disabled_plugins.txt文件
2,mac OS操作系统删除以下路径 Users/LibraryPreferencesAndroidStudio4.0codestyles。
删除 disabled_plugins.txt文件
3,Linux Ubuntu操作系统删除以下路径 /home/[your_username]/.AndroidStudio4.0/config
删除 disabled_plugins.txt文件
4,如果还未解决请移步到官方指南https:/developer.android.comstudiopreviewfeatures#4.1-ki-missing-kotlin-plugin。
Could not find com.android.tools.build:gradle问题
Error:Could not find com.android.tools.build:gradle:3.4.0
https://repo1.maven.org/maven2/com/android/tools/build/gradle/3.4.0/gradle-3.4.0.pom
https://repo1.maven.org/maven2/com/android/tools/build/gradle/3.4.0/gradle-3.4.0.jar
是因为maven.org网站上没有更新
这是gradle版本原因造成的,如果不想升级gradle版本,需要使用原来低版本的方法。
解决办法: **buildscript {
repositories {
maven {
url ‘https://maven.google.com/’
name ‘Google’
}
jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:3.4.0’
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url ‘https://maven.google.com/’
name ‘Google’
}
}
}**
如果出现Could not find com.android.tools.build:aapt2:3.2.0xxx
那是因为在allprojects 的 repositories里没参加。
(声明:这个问题解决方案摘抄于作者dahaiChang老师)
gradle设置环境变量:
配置完之后进入命令窗口:win+r小窗口输入cmd回车输入gradle -v 出现下图样式则表明成功:
附件gradle使用教程:( https://blog.csdn.net/qq_22172133/article/details/81513955)
Error: AndroidManifest.xml doesn’t exist or has incorrect root tag问题
解决方法:
在app的AndroidManifest.xml中做如下修改:
**<manifest xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:tools=“http://schemas.android.com/tools”
package=“com.leo.kang.demo”
android:versionCode=“1”
android:versionName=“1.0”>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
tools:replace="android:icon, android:theme">
**
注意两个地方:
- 在manifest节点加上:xmlns:tools=“http://schemas.android.com/tools”
- 在application 节点加上:tools:replace=“android:icon, android:theme”
所以还是坚持用Android Studio撸鸿蒙?😂😂😂😂
我用这个也确实很多报错,你有没有更好的推荐,我采纳你的
华为官方的鸿蒙编辑器DevEco Studio不香么?
那个我也用了,好像缺少什么插件
已经连续更新好几版了,貌似最近还会有大更新,建议尝试尝试,毕竟别的编辑器后期不见得支持分布式调试