好的,我有这个问题。我从安卓工作室将我的安卓应用程序推送到Github上的回购中。然后我在平板电脑上从AIDE上取下了它。我没有收到来自安卓工作室的错误,即使是在拉出后。然而,当我使用AIDE时,我会收到错误,比如无效的包声明(它的设置是正确的)。我将其更改为路径中的显示方式,它运行得很好(即使在Android Studio中,我最初的设置也是正确的)。在那之后,我得到了一堆错误,说R是一个未知的实体。R.Java是存在的,所以不是这样。我添加了建议的导入,这导致了更多的错误。
编辑
我一直在使用的命令如下:
初始设置时:
cd C:...path here
git init
git add .
git commit -m "First commit"
git remote add origin <urltorepo>
git remote -v
git push origin master
更新:
git add --all
git commit -m "message"
git push origin master
这就是我得到的:
warning: LF will be replaced by CRLF in <file>
The file will have its original line endings in your working directory
通过重新创建repo并将"Initialize this repository with a README"复选框留空来修复