Ensure lint configuration is applied to all modules.

This commit is contained in:
Alex Hart
2026-02-09 13:05:28 -04:00
committed by Greyson Parrelli
parent 2c6524f6c0
commit 879e8f98bd
21 changed files with 73 additions and 51 deletions

View File

@@ -43,7 +43,7 @@ class SpinnerTestSqliteOpenHelper(context: Context) : SQLiteOpenHelper(context,
}
override fun compileStatement(sql: String): SupportSQLiteStatement {
TODO("Not yet implemented")
throw NotImplementedError()
}
override fun beginTransaction() {
@@ -96,11 +96,11 @@ class SpinnerTestSqliteOpenHelper(context: Context) : SQLiteOpenHelper(context,
}
override fun query(query: SupportSQLiteQuery): Cursor {
TODO("Not yet implemented")
throw NotImplementedError()
}
override fun query(query: SupportSQLiteQuery, cancellationSignal: CancellationSignal?): Cursor {
TODO("Not yet implemented")
throw NotImplementedError()
}
override fun insert(table: String, conflictAlgorithm: Int, values: ContentValues): Long {

View File

@@ -7,7 +7,8 @@
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="8dp"
tools:context=".MainActivity">
tools:context=".MainActivity"
tools:ignore="HardcodedText">
<TextView
android:layout_width="match_parent"