在不同的Windows和Windows之间共享Android Studio项目. Mac机器
我有一个在Windows下构建的Android Studio项目,现在,当我将所有文件夹复制到Mac并尝试在Mac版本的Android Studio中打开它时,它会提示很多错误,其中大多数都指向Windows计算机上的路径. 如何修改项目,使所有路径都是相对的,而不是机器(或绝对路径)相关的?
I have an Android Studio project built under Windows, now when I copy all folder to Mac and try to open it in Mac version of Android Studio it prompts for lots of error, most them pointing to a path on Windows machine. How can I modify project so all paths be relative and not machine (or absolute path) dependent?
您无需修改任何内容,因为可共享文件中根本不应该包含绝对路径.仅共享源文件和构建脚本文件( build.gradle 和 settings.gradle 和Gradle包装器文件).不要共享项目文件( .iml 文件或 .idea 文件夹).不要共享单个计算机本地的 local.properties 文件.
You shouldn't have to modify anything because the shareable files shouldn't have absolute paths in them at all. Share only the source files and build script files (build.gradle and settings.gradle and the Gradle wrapper files). Don't share project files (.iml files or the .idea folder). Don't share the local.properties file, which is local to an individual machine.