Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/sdk/android/v6/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ These values were measured on Google Pixel 5 with Android 12 and can be influenc

<br />

**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
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/android/v6/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down