# Android changes

## Android 7 (Nougat)

Pushlink supports Android N `Build.VERSION.SDK_INT <= 24` since version **5.5.2** released in 2016.11.11.\
\
&#x20;It requires a FileProvider in the AndroidManifest.xml; otherwise, Pushlink will not work.

```xml
<provider 
  android:name="com.pushlink.android.FileProvider" 
  android:authorities="your.package.name" 
  android:exported="true" />
```

Don't forget to replace `your.package.name` it with your current application package name.

## Android 8 (Oreo)

Pushlink supports Android 8 `Build.VERSION.SDK_INT <= 26` since version **5.5.3** released in 2018.05.19.\
\
&#x20;It requires new permission in the AndroidManifest.xml; otherwise, Pushlink will not work.

```xml
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
```

{% hint style="info" %}
**Unknown sources**

&#x20;Note that app installations from unknown sources are disabled by default in Android Oreo. You have to authorize the specific source on the app's first installation. See: <https://developer.android.com/studio/publish/#publishing-unknown>
{% endhint %}

## Android 9 (Pie)

Pushlink **5.5.3** supports Android 9, but from now on, it requires to enable `org.apache.http.legacy`

```xml
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
```

More info: <https://developer.android.com/about/versions/pie/android-9.0-changes-28#apache-p>

## Android 10

Pushlink **5.5.3** supports Android 10, and there are no tricks here.

## Android 11

Pushlink **5.5.3** supports Android 11. Don't forget to allow a V2 signature when building the APK.

<div align="left"><img src="/files/-MY6C9oN8Z9iZXuMAqli" alt=""></div>

If you forget this, the installation will fail with the following message:&#x20;

`com.android.server.pm.PackageManagerException: No signature found in package of version 2 or newer for package...`

## Android 12, 13 and 14

Pushlink supports Android 12, 13 and 14 `Build.VERSION.SDK_INT <= 34` since version **5.6.0** released in 2024.07.22.

It now requires the post notification permission.

```xml
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pushlink.com/android-versions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
