We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had to changes the minSDK of internal/chooserx/build.gradle.kts and internal/lintchecks/build.gradle.kts to have the messaging example compile
internal/chooserx/build.gradle.kts
internal/lintchecks/build.gradle.kts
/quickstart-android/messaging
Unable to compile
Able to compile
diff --git a/internal/chooserx/build.gradle.kts b/internal/chooserx/build.gradle.kts index d2d9ac0..0af4887 100755 --- a/internal/chooserx/build.gradle.kts +++ b/internal/chooserx/build.gradle.kts @@ -7,7 +7,7 @@ android { compileSdk = 35 defaultConfig { - minSdk = 16 + minSdk = 19 targetSdk = 35 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" diff --git a/internal/lintchecks/build.gradle.kts b/internal/lintchecks/build.gradle.kts index 0fc26b9..19b2aa5 100755 --- a/internal/lintchecks/build.gradle.kts +++ b/internal/lintchecks/build.gradle.kts @@ -6,7 +6,7 @@ android { compileSdk = 35 defaultConfig { - minSdk = 16 + minSdk = 19 targetSdk = 35 } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Step 1: Describe your environment
Step 2: Describe the problem:
I had to changes the minSDK of
internal/chooserx/build.gradle.kts
andinternal/lintchecks/build.gradle.kts
to have the messaging example compileSteps to reproduce:
/quickstart-android/messaging
in LadybugObserved Results:
Unable to compile
Expected Results:
Able to compile
Relevant Code:
The text was updated successfully, but these errors were encountered: