SureCase / GreenDaoForAndroidStudio

GreenDao Module for Android Studio
http://blog.surecase.eu/using-greendao-with-android-studio-ide/
163 stars 61 forks source link

Problem with outputDir in AndroidStudio 1.0 #1

Open benju69 opened 9 years ago

benju69 commented 9 years ago

Hello, I have an error with Gradle : Error:(7, 0) No such property: outputDir for class: org.gradle.api.internal.project.DefaultProject_Decorated

I use the last version of Android Studio

benju69 commented 9 years ago

Well, I fixed the issue with declaring outputDir with def def outputDir = "..."

AndwareSsj commented 9 years ago

add outputDir="." in gradle.properties

tlyalex commented 9 years ago

for me, i need to remove the double quote in gradle.properties to get it work. in my gradle.properties outputDir = ../app/src/main/java-gen

cafecomcodigo commented 9 years ago

def outputDir = "..."!!! Thanks a lot, @benju69

h3clikejava commented 9 years ago

reason is miss "def"... Thx @benju69