We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I want to ask a question about greenDao.
greendao { schemaVersion 1 // daoPackage 'com.test.xxx.greendao.gen' targetGenDir 'src/main/java' }
Can I dynamically generate the above content with code?
The text was updated successfully, but these errors were encountered:
These are options for the Gradle plugin. So as usual for Gradle you can generate these values somehow inside the build script.
Note: typically you do not have to specify a targetGenDir, only a schemaVersion. http://greenrobot.org/greendao/documentation/modelling-entities/#Schema
targetGenDir
schemaVersion
Sorry, something went wrong.
Well, I mean Can i implement it in another way instead of in Gradle?
Not that I am aware of. You would have to ask the Gradle folks about that.
No branches or pull requests
Hello,
I want to ask a question about greenDao.
greendao {
schemaVersion 1
// daoPackage 'com.test.xxx.greendao.gen'
targetGenDir 'src/main/java'
}
Can I dynamically generate the above content with code?
The text was updated successfully, but these errors were encountered: