Missing project.gradle in Android View

In Android Studio, the project.gradle file is not displayed when displayed in the Android view, but is displayed in the Project view

Android View enter image description here

View Project enter image description here

How can i fix this ??

+14
source share
8 answers

The trigger for this buggy is indeed located outside your project folder.

"SilverBirch", :
(a) Android Studio 3.0.1.
(b) ( ) "SilverBitch"
(c) Android Studio (, , , " " )
(d) "" Gradle , : Gradle . , ide:
(e) OK.
(f) , Android- build.gradle(Project: SilverBitch)
() , .

, , :
project.dat - , ( , Windows)

C:\Users\<userid>\.AndroidStudio3.0\system\gradle\Projects\5be1ee38\project.dat

[ , project.dat]
"" build.gradle .
, Android Studio.

googling 'project.dat' , , , , , , , , [C:\Users\<userid>\.AndroidStudio3.0\system\gradle\Projects] - ! , ? .

+17

Gradle Android Studio (""> " "> "Gradle"),

  1. Gradle config (root) .
  2. Gradle ,
  3. , Unignore Gradle project.
+10

Android Studio โ†’ .idea โ†’ Android Studio โ†’ . !

: .idea , (, XML- ).

+6
  1. "Gradle Scripts"
  2. "/ "
+1

:

*.iml , module external.linked.project.id=, *.iml .

build.gradle(Project: X) .

0

, project.iml project/.idea, project/ :

<module fileurl="file://$PROJECT_DIR$/My_Project.iml" filepath="$PROJECT_DIR$/My_Project.iml" />

:

<module fileurl="file://$PROJECT_DIR$/.idea/My_Project.iml" filepath="$PROJECT_DIR$/.idea/My_Project.iml" />

, !

0

.

  • AndroidStudioProjects.
  • Android Studio, (Gradle, Eclipse ADT ..). Gradle Build Finish.

.

0

: -

, build.gradle.

  1. " " (. 1) Android Studio.
  2. build.gradle (. 2).
  3. ,
  4. " " " " โ†’ " Gradle".

And you are good to go. Please note that this applies when you have a project level build.gradleand the problem is that it does not appear in Android Studio. If you did not find the project level build.gradle, this is a completely different problem.

1. enter image description here

2. enter image description here

0
source

Source: https://habr.com/ru/post/1685706/


All Articles