After importing this project into Android Studios and I keep getting the error
Task 'assemble' not found in root project 'brick-blast-ball-RL-master'.
I've tried to fix this through the gradle and the build works in the .cmd terminal, but the build keeps failing due to the error above.
this question didn't resolve the problem, all facet have been removed.
What do I need to do to the code linked above to be able to run it on my cell phone?
gradle:
task assemble{
}
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.2'
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}