diff --git a/docs/sdk/android/v6/faq.md b/docs/sdk/android/v6/faq.md index f2f17af..7f5babf 100644 --- a/docs/sdk/android/v6/faq.md +++ b/docs/sdk/android/v6/faq.md @@ -30,13 +30,13 @@ These values were measured on Google Pixel 5 with Android 12 and can be influenc
-**3. After updating Bugsee Android SDK to version ```1.15.0``` I get the following error:** +**3. I get the following error when building my app:** ```text AAPT: error: attribute android:foregroundServiceType not found. ``` -Please switch `compileSdk` in your build.gradle to the latest version (at least 35, as shown below). +This means your `compileSdk` is too low for the Bugsee SDK version you're using — SDK 6.0.0 and newer require at least 35 (see the [release notes](/sdk/android/v6/release-notes/) for the exact version your build pulls in). Please switch `compileSdk` in your build.gradle to at least 35, as shown below. ```groovy android { compileSdk 35 diff --git a/docs/sdk/android/v6/installation.mdx b/docs/sdk/android/v6/installation.mdx index 89b62d1..33d9b75 100644 --- a/docs/sdk/android/v6/installation.mdx +++ b/docs/sdk/android/v6/installation.mdx @@ -41,7 +41,7 @@ This is the recommended way to install Bugsee. If you use Maven (for example, Android Maven Plugin) to build your project, follow the [Maven Installation](/sdk/android/v6/maven-installation/) instructions. :::warning -If you're getting an "attribute android:foregroundServiceType not found" error, you should set **compileSdkVersion** in your build.gradle file to 29. Make sure you have that Android SDK installed on your system. +If you're getting an "attribute android:foregroundServiceType not found" error, you should set **compileSdkVersion** in your build.gradle file to at least 35 (SDK 6.0.0 and newer require it — see the [release notes](/sdk/android/v6/release-notes/)). Make sure you have that Android SDK installed on your system. ::: ## Initialization