diff --git a/demo/android-lint.xml b/demo/android-lint.xml new file mode 100644 index 00000000..1185878f --- /dev/null +++ b/demo/android-lint.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/demo/build.gradle b/demo/build.gradle index 8cf953b8..51400049 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -39,6 +39,11 @@ android { test.java.srcDirs += 'src/test/kotlin' debug.java.srcDirs += 'src/debug/kotlin' } + + lint { + lintConfig = file("android-lint.xml") + } + namespace 'dev.hotwire.turbo.demo' } @@ -46,9 +51,9 @@ dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.google.android.material:material:1.8.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation 'androidx.recyclerview:recyclerview:1.2.1' + implementation 'androidx.recyclerview:recyclerview:1.3.0' implementation 'androidx.browser:browser:1.5.0' - implementation 'com.github.bumptech.glide:glide:4.14.2' + implementation 'com.github.bumptech.glide:glide:4.15.1' implementation project(':turbo') }