Skip to content

Commit 2222f81

Browse files
committed
fixup! feat: add android interop application
1 parent 8729cd2 commit 2222f81

File tree

1 file changed

+2
-2
lines changed
  • interop/src/clients/android-interop/src/main/java/com/wire/androidinterop

1 file changed

+2
-2
lines changed

interop/src/clients/android-interop/src/main/java/com/wire/androidinterop/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ class MainActivity : ComponentActivity() {
1616
println("Ready")
1717
}
1818

19-
override fun onNewIntent(intent: Intent?) {
19+
override fun onNewIntent(intent: Intent) {
2020
super.onNewIntent(intent)
2121

22-
if (intent == null || intent.action?.compareTo(Intent.ACTION_RUN) != 0) {
22+
if (intent.action?.compareTo(Intent.ACTION_RUN) != 0) {
2323
return
2424
}
2525

0 commit comments

Comments
 (0)