Skip to content

Commit

Permalink
🚨 Fix warnings in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxr1998 committed Sep 5, 2023
1 parent bc8108c commit d13f607
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ android {
compileSdk = 31
defaultConfig {
minSdk = 21
targetSdk = 31
}
buildTypes {
getByName("release") {
Expand All @@ -45,7 +44,6 @@ android {
}
}
kotlinOptions {
@Suppress("SuspiciousCollectionReassignment")
freeCompilerArgs += listOf("-module-name", libraryName)
}
lint {
Expand Down Expand Up @@ -104,7 +102,7 @@ val sourcesJar by tasks.registering(Jar::class) {
var ossrhUsername: String? = null
var ossrhPassword: String? = null
var githubToken: String? = null
val propFile = project.file("key.properties")
val propFile: File = project.file("key.properties")
if (propFile.exists()) {
val props = Properties()
props.load(FileInputStream(propFile))
Expand Down

0 comments on commit d13f607

Please sign in to comment.