我正在使用位于android
的旧Eclipse
项目。我想迁移到Android
Studio
以获得更好的支持。我使用导入功能,但有这个错误。无论如何要解决问题并成功迁移?任何帮助都非常感谢!谢谢
* Project singpost2013:/Volumes/Data/OneDrive/Singpost/Android/singpost2013/project.properties:
Library reference ../../../../Documents/Android_SDK/android-sdk-macosx/extras/google/google_play_services/libproject/google-play-services_lib could not be found
Path is /Volumes/Data/OneDrive/Singpost/Android/singpost2013/../../../../Documents/Android_SDK/android-sdk-macosx/extras/google/google_play_services/libproject/google-play-services_lib which resolves to /Volumes/Data/Documents/Android_SDK/android-sdk-macosx/extras/google/google_play_services/libproject/google-play-services_lib
这是我的project.properties
文件
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-19
android.library.reference.1=../../../../Documents/Android_SDK/android-sdk-macosx/extras/google/google_play_services/libproject/google-play-services_lib
android.library.reference.2=../SPCaptureActivity
android.library.reference.3=../../../../Documents/Android_SDK/facebook-android-sdk-3.20.0/facebook
答案 0 :(得分:1)
从Eclipse导出
1.更新您的Eclipse ADT插件(您必须具有22.0或更高版本)。
2.在Eclipse中,选择文件>出口。
3.在出现的窗口中,打开Android并选择Generate Gradle build files。
4.选择要为Android Studio导出的项目,然后单击“完成”。
您选择的项目仍保留在同一位置,但现在包含build.gradle文件,可以使用Android Studio。
导入Android Studio
1.在Android Studio中,选择文件>导入项目。
2.找到从Eclipse导出的项目,选择项目的根目录,然后单击“确定”。
3.从现有来源中选择“创建项目”,然后单击“下一步”。
4.按照演练完成导入过程。
了解更多信息