从git上clone项目的时候报错 Unable to negotiate with 47.98.49.44 port 22: no matching host key type found. Their offer: ssh-rsa Could not read from remote repository. Please make sure you have the correct access rights and the repository exists 只需要找到你本地的ssh目录(比如:mac:/Users/zjs/.ssh win:C:\Users\Administrator.ssh) 然后新增文件config,并在文件中新增如下 Host * HostkeyAlgorithms +ssh-rsa PubkeyAcceptedKeyTypes +ssh-rsa Unable to negotiate with 47.98.49.44 port 22: no matching host key type found. Their offer: ssh-rsa Could not read from remote repository. Please make sure you have the correct access rights and the repository exists 无
报类似Duplicate class android.support.v4.app.INotificationSideChannel found in modules冲突,解决方法就是在gradle.properties中添加 android.useAndroidX=true android.enableJetifier=true Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.8.0-runtime (androidx.core:core:1.8.0) and support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0) 无