-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Apply room gradle plugin #370
Conversation
This will generate the database schema in a build caching compatible way. This also generates the database code in Kotlin to save java compilation. Clean up buildscript classpath. Remove deprecated flag which is now enabled by default.
# Enables namespacing of each library's R class so that its R class includes only the | ||
# resources declared in the library itself and none from the library's dependencies, | ||
# thereby reducing the size of the R class for that library | ||
android.nonTransitiveRClass=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is enabled by default with AGP 8.0+ so I removed it.
} | ||
|
||
composeCompiler { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is enabled by default as of Kotlin 2.020 so I removed it.
🛰️ Build DistributionBuild available for installation
🛸 Powered by Emerge Tools |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
This will generate the database schema in a build caching compatible way.
This also generates the database code in Kotlin to save java
compilation.
Clean up buildscript classpath.
Remove deprecated flag which is now enabled by default.