-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CTS test app <intent-filter> priorities (#307)
* Specify both priority and order for SeedVaultSimulator <intent-filter>s * Declare low-priority <intent-filter>s for CTS test app * Do not run 'csss' test case on Saga
- dependabot/npm_and_yarn/js/next/eslint-plugin-react-hooks-5.1.0
- (#392, #307)
- dependabot/npm_and_yarn/js/next/lerna-8.1.9
- (#344, #307)
- dependabot/npm_and_yarn/js/next/rollup-4.28.1
- (#391, #307)
- dependabot/npm_and_yarn/js/next/solana/web3.js-1.95.8
- (#390, #307)
- dependabot/npm_and_yarn/js/next/types/react-native-0.73.0
- (#331, #307)
- next
- (#307)
Showing
4 changed files
with
79 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
cts/src/main/java/com/solanamobile/seedvault/cts/UnhandledIntentActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright (c) 2024 Solana Mobile Inc. | ||
*/ | ||
|
||
package com.solanamobile.seedvault.cts | ||
|
||
import android.os.Bundle | ||
import androidx.activity.ComponentActivity | ||
|
||
class UnhandledIntentActivity : ComponentActivity() { | ||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
setResult(RESULT_CANCELED) | ||
finish() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters