Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mygod committed Jun 14, 2020
1 parent e20ce6f commit 650ff57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mobile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8", rootProject.extra.get("kotlinVersion").toString()))
implementation("androidx.appcompat:appcompat:1.3.0-alpha01") // https://issuetracker.google.com/issues/151603528
implementation("androidx.browser:browser:1.2.0")
implementation("androidx.core:core-ktx:1.3.0-rc01")
implementation("androidx.core:core-ktx:1.3.0")
implementation("androidx.emoji:emoji:1.1.0-rc01")
implementation("androidx.fragment:fragment-ktx:1.3.0-alpha06")
implementation("androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class RepeaterManager(private val parent: TetheringFragment) : Manager(), Servic
} catch (e: RuntimeException) {
Timber.w(e)
passphrase = group.passphrase
bssid = group.owner?.deviceAddress?.let(MacAddressCompat::fromString)
bssid = group.owner?.deviceAddress?.let(MacAddressCompat.Companion::fromString)
this to true
}
}
Expand Down

0 comments on commit 650ff57

Please sign in to comment.