diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b2ea2c61..7d0ae8b0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -85,12 +85,8 @@ jobs:
api-level: 27
script: |
adb logcat mono-stdout:D AndroidRuntime:D *:S | tee test-run.log &
- adb install tests/LaunchDarkly.ClientSdk.Android.Tests/bin/Debug/net7.0-android/com.companyname.LaunchDarkly.ClientSdk.Android.Tests-Signed.apk
- adb shell monkey -p com.launchdarkly.LaunchDarkly.ClientSdk.Android.Tests 1
+ adb install tests/LaunchDarkly.ClientSdk.Android.Tests/bin/Debug/net7.0-android/com.launchdarkly.androidtests-Signed.apk
+ adb shell monkey -p com.launchdarkly.androidtests -c android.intent.category.LAUNCHER 1
"( tail -f -c+0 test-run.log & ) | grep -q 'Tests run:'"
cat test-run.log | tr -s ' ' | cut -d ' ' -f 1,2,7-
if grep '\[FAIL\]' test-run.log >/dev/null; then exit 1; fi
-
-# TODO: update build commands to not use msbuild if possible
-# TODO: make teraform PR to get repo access to ARN. Also need to update the github-sdk-release role to get access to S3 blobs from .ldrelease/secrets.properties
-# TODO: incorporate and update https://github.com/launchdarkly/js-core/blob/main/actions/release-secrets/action.yml to support blobs
diff --git a/src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj b/src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj
index 15e070e4..3e4078f2 100644
--- a/src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj
+++ b/src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj
@@ -7,6 +7,8 @@
want to even mention the Android/iOS/Mac/Windows targets, because we're in an environment
that doesn't have the MAUI tools installed. That is currently the case in
the release phase where we build HTML documentation. -->
+
+
net7.0;net7.0-android;net7.0-ios;net7.0-maccatalyst;net7.0-windows
$(BUILDFRAMEWORKS)
diff --git a/tests/LaunchDarkly.ClientSdk.Android.Tests/AndroidManifest.xml b/tests/LaunchDarkly.ClientSdk.Android.Tests/AndroidManifest.xml
index 3095dd9c..2d1befd1 100644
--- a/tests/LaunchDarkly.ClientSdk.Android.Tests/AndroidManifest.xml
+++ b/tests/LaunchDarkly.ClientSdk.Android.Tests/AndroidManifest.xml
@@ -1,6 +1,7 @@
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tests/LaunchDarkly.ClientSdk.Android.Tests/LaunchDarkly.ClientSdk.Android.Tests.csproj b/tests/LaunchDarkly.ClientSdk.Android.Tests/LaunchDarkly.ClientSdk.Android.Tests.csproj
index 3090fad0..b0d6e728 100644
--- a/tests/LaunchDarkly.ClientSdk.Android.Tests/LaunchDarkly.ClientSdk.Android.Tests.csproj
+++ b/tests/LaunchDarkly.ClientSdk.Android.Tests/LaunchDarkly.ClientSdk.Android.Tests.csproj
@@ -27,13 +27,11 @@
conditional compilation, rather than by changing these includes; when we used
to use individual file links, it was too easy to forget to update them.
-->
-
+
- {7717A2B2-9905-40A7-989F-790139D69543}
- LaunchDarkly.ClientSdk
diff --git a/tests/LaunchDarkly.ClientSdk.Android.Tests/MainActivity.cs b/tests/LaunchDarkly.ClientSdk.Android.Tests/MainActivity.cs
index 5dedec15..68b097c0 100644
--- a/tests/LaunchDarkly.ClientSdk.Android.Tests/MainActivity.cs
+++ b/tests/LaunchDarkly.ClientSdk.Android.Tests/MainActivity.cs
@@ -7,7 +7,7 @@
namespace LaunchDarkly.ClientSdk.Android.Tests;
-[Activity(Label = "LaunchDarkly.Sdk.Client.Android.Tests", MainLauncher = true)]
+[Activity(Label = "MainActivity", MainLauncher = true)]
public class MainActivity : RunnerActivity
{