Android Studio - “Android framework is detected in the project”

荒凉一梦 提交于 2019-12-07 02:03:59

问题


I am using Android Studio for development (I/O Preview 0.2.3) and have used AS since I started my current project. Every time I open the project I get the Frameworks detected: Android framework is detected in the project Configure message in the event log. I can click Configure and it sorts things out straight away but its happens every time I open the project.

Its not really causing any issues, more of an annoyance than anything. Is there anyway of making AS remember that this is an Android project?


回答1:


If Android Studio notices a difference in the path to the android SDK folder on disk and the path mentioned in your local.properties file, it will prompt and upon confirmation update the path in local.properties. I think you local.properties file is not retaining the change in SDK path once you close the project. Check you check if something is reverting the changes.

Also, try saving the local.properties file manually after updating the sdk.dir property with correct path..

It looks like this in the local.properties file.

# change the SDK path below to match the folder on your system
sdk.dir=D\:\\Android\\android-sdk



回答2:


Try to import projectrather than just opening the project. File --> New--> Import Project




回答3:


Try open the SDK Manager and check if Android Support Repository is installed. If not, install if and reopen the project.




回答4:


Change then name of your project. I had the same problem, because my project had name like "Smile&Smile" and the symbol & crashed normal assembly of my project. Also, don't use symbols like &, !, "",'' in the name of projects.




回答5:


Just change first row with your build.gradle. try use

apply plugin: 'com.android.application'



来源:https://stackoverflow.com/questions/18430438/android-studio-android-framework-is-detected-in-the-project

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!