Reputation: 1693
For example this project. I see it has Gradle files, but a quick search says Eclipse has a Gradle plugin as well.
https://github.com/sephiroth74/HorizontalVariableListView
Upvotes: 1
Views: 1012
Reputation: 14021
Gradle is a building tool. It has plugins for Eclipse, IntelliJ, Android Studio and Netbeans. So you won't be able to tell which IDE an Android project is made with from just a gradle file. Some project structures vary, for Eclipse projects and IntelliJ ones, you can find easily differences between them if you are familiar with both. But some are not explicitly, for IntelliJ projects and Android Studio ones.
BTW, do IDEs matter? The App you are building does, I am afraid.
Upvotes: 1
Reputation: 2320
Android Studio, which is developed based on IntelliJ. It uses gradle to build the project.
If a project contains .classpath
or .project
, it should be made by Eclipse. Or it should be made by android studio. A project made by android studio can not be imported into eclipse.
Upvotes: 1
Reputation: 20221
The Android build system is built on top of gradle:
https://developer.android.com/tools/building/plugin-for-gradle.html
So that means that just plain gradle is not enough to build an Android project.
As ADT never used gradle and Google has ended Eclipse support, you can be reasonably confident that an Android gradle project was made using Android Studio.
Upvotes: 2