Open
Conversation
|
thomson-t
reviewed
Jan 13, 2026
| log_info '1. Check if ANDROID_HOME is set: echo $ANDROID_HOME' | ||
| log_info '2. Verify emulator binary exists: ls $ANDROID_HOME/emulator/emulator' | ||
| log_info "3. List available AVDs: emulator -list-avds" | ||
| log_info "4. The startup script uses 'sudo' which may require a password" |
Collaborator
There was a problem hiding this comment.
This is not necessary. There should be other ways to fix it.
| * This app initializes the mParticle SDK with WireMock endpoints and sends | ||
| * test events for validation against WireMock recordings. | ||
| */ | ||
| public class IntegrationTestApplication extends Application { |
Collaborator
There was a problem hiding this comment.
Can we convert this to Kotlin?
| * This activity sends a series of test events that match the iOS integration | ||
| * test suite to ensure feature parity. | ||
| */ | ||
| public class MainActivity extends AppCompatActivity { |
Collaborator
There was a problem hiding this comment.
This as well. All the new files can be in Kotlin.
| String apiKey = extras.getString("MPARTICLE_API_KEY"); | ||
| String apiSecret = extras.getString("MPARTICLE_API_SECRET"); | ||
| if (apiKey != null && apiSecret != null) { | ||
| // Write to credentials file for Application class to read |
Collaborator
There was a problem hiding this comment.
Application onCreate would have finished by this time.
Do we need to support dynamic keys? Why don't we set the keys at build time itself?
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Background
It uses WireMock to validate SDK network requests against expected baselines and runs automatically in CI.
This improves regression detection and increases confidence when shipping changes to the SDK.
What Has Changed
Screenshots/Video
Checklist
Additional Notes
Reference Issue (For employees only. Ignore if you are an outside contributor)