-
Describe the bug I have two unresolved references:
here are my imports
I tried deleting all imports and relying on android studio to auto import but it doesn't find them. To Reproduce
I am using this example to sign a transaction: https://github.com/trustwallet/wallet-core/blob/master/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/ethereum/TestEthereumTransactionSigner.kt I have copied the testEthereumTransactionSigning verbatim but removed the assertions instead opting to just get the hex string like this Expected behavior Screenshots Additional context Edit:
not sure if something I imported might be conflicting as well |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
There are many many Kotlin .kt test files, please consult those. |
Beta Was this translation helpful? Give feedback.
-
Solved the issue by using this example from sample app Tried examples following the test files but those didn't work without utils class. Maybe they will work if I take the required methods from the sample app and add them directly. |
Beta Was this translation helpful? Give feedback.
Solved the issue by using this example from sample app
https://github.com/trustwallet/wallet-core/blob/2.6.30/samples/android/app/src/main/java/com/trust/walletcore/example/MainActivity.kt
Tried examples following the test files but those didn't work without utils class. Maybe they will work if I take the required methods from the sample app and add them directly.