ephtron
ephtron

Reputation: 1125

Android Studio: Cant run cloned github project with samples because I am missing a gradle

I cloned this repository from github and opened it as a new project. The project view shows no gradle and I cant run the provided samples.

How can I create or add a gradle to the project and run the samples?

Project View

Upvotes: 0

Views: 1635

Answers (2)

Suresh
Suresh

Reputation: 731

The repository directory what you have mentioned is not an android project.

This is the URL for that wheel sample

Android-Wheel-Menu

and also it is developed in Eclipse. So better download it from browser. then load it from Android STUDIO.

Upvotes: 1

Patrick
Patrick

Reputation: 184

What you cloned is not an Android application but a library for Android applications. Thus, it's not intended to be run standalone which is why you don't find a build.gradle. You need to create a new Android project and then follow the steps under "Usage" which explain how to integrate it in a project.

This library is marked as deprecated, so you might want consider using another one.

Upvotes: 0

Related Questions