-
Notifications
You must be signed in to change notification settings - Fork 76
Fixes gradle issues and adds title field #19
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
base: main
Are you sure you want to change the base?
Conversation
| id 'org.jetbrains.kotlin.android' | ||
| } | ||
|
|
||
| apply plugin: 'kotlin-kapt' |
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.
How come we are using two different ways to apply plugins in this project (the plugins block and the apply plugin directive)?
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.
How come we are using two different ways to apply plugins in this project (the plugins block and the apply plugin directive)?
| compileOptions { | ||
| sourceCompatibility JavaVersion.VERSION_1_8 | ||
| targetCompatibility JavaVersion.VERSION_1_8 | ||
| sourceCompatibility JavaVersion.VERSION_17 |
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 (and minsdk) seems like it will significantly restrict what phones this sample will run on. Since this is a sample we intend for other people, can we make it run more broadly?
| implementation "androidx.appsearch:appsearch-local-storage:$appsearch_version" | ||
| implementation "androidx.appsearch:appsearch-platform-storage:$appsearch_version" | ||
| kapt "androidx.appsearch:appsearch-compiler:$appsearch_version" | ||
| //api 'androidx.annotation:annotation:1.6.0' |
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.
Not quite clear what this new comment is intended to communicate -- could you clarify?
No description provided.