Compare commits
2 commits
80b18b242e
...
9e8c65396e
Author | SHA1 | Date | |
---|---|---|---|
9e8c65396e | |||
730bf3f7d8 |
5 changed files with 22 additions and 5 deletions
|
@ -99,7 +99,11 @@ android {
|
|||
}
|
||||
}
|
||||
lint {
|
||||
disable += listOf("AndroidGradlePluginVersion", "GradleDependency")
|
||||
disable += listOf(
|
||||
"AndroidGradlePluginVersion",
|
||||
"GradleDependency",
|
||||
"ObsoleteLintCustomCheck"
|
||||
)
|
||||
warningsAsErrors = true
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<application
|
||||
android:name=".MarkdownApplication"
|
||||
android:allowBackup="true"
|
||||
android:enableOnBackInvokedCallback="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:resizeableActivity="true"
|
||||
|
@ -14,7 +15,7 @@
|
|||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.App.Starting"
|
||||
tools:ignore="AllowBackup"
|
||||
tools:targetApi="n">
|
||||
tools:targetApi="tiramisu">
|
||||
<activity android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
android:label="@string/app_name_short">
|
||||
|
|
|
@ -48,7 +48,11 @@ android {
|
|||
jvmTarget = "11"
|
||||
}
|
||||
lint {
|
||||
disable += listOf("AndroidGradlePluginVersion", "GradleDependency")
|
||||
disable += listOf(
|
||||
"AndroidGradlePluginVersion",
|
||||
"GradleDependency",
|
||||
"ObsoleteLintCustomCheck"
|
||||
)
|
||||
warningsAsErrors = true
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,11 @@ android {
|
|||
jvmTarget = "11"
|
||||
}
|
||||
lint {
|
||||
disable += listOf("AndroidGradlePluginVersion", "GradleDependency")
|
||||
disable += listOf(
|
||||
"AndroidGradlePluginVersion",
|
||||
"GradleDependency",
|
||||
"ObsoleteLintCustomCheck"
|
||||
)
|
||||
warningsAsErrors = true
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,11 @@ android {
|
|||
jvmTarget = "11"
|
||||
}
|
||||
lint {
|
||||
disable += listOf("AndroidGradlePluginVersion", "GradleDependency")
|
||||
disable += listOf(
|
||||
"AndroidGradlePluginVersion",
|
||||
"GradleDependency",
|
||||
"ObsoleteLintCustomCheck"
|
||||
)
|
||||
warningsAsErrors = true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue