diff --git a/just_audio/CHANGELOG.md b/just_audio/CHANGELOG.md
index e3a9f7d37..565d5f934 100644
--- a/just_audio/CHANGELOG.md
+++ b/just_audio/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 0.9.27
+
+* Support offload scheduling on Android.
+* Fix iOS/macOS documentation for non-HTTP URLS and proxy usage.
+
## 0.9.26
* Auto-correct invalid HTTP headers in proxy.
diff --git a/just_audio/README.md b/just_audio/README.md
index eaf370f81..662b66faf 100644
--- a/just_audio/README.md
+++ b/just_audio/README.md
@@ -236,7 +236,7 @@ To allow your application to access audio files on the Internet, add the followi
```
-If you wish to connect to non-HTTPS URLS, also add the following attribute to the `application` element:
+If you wish to connect to non-HTTPS URLS, or if you use a feature that depends on the proxy such as headers, caching or stream audio sources, also add the following attribute to the `application` element:
```xml
@@ -284,15 +284,13 @@ post_install do |installer|
end
```
-If you wish to connect to non-HTTPS URLS, add the following to your `Info.plist` file:
+If you wish to connect to non-HTTPS URLS, or if you use a feature that depends on the proxy such as headers, caching or stream audio sources, add the following to your `Info.plist` file:
```xml
NSAppTransportSecurityNSAllowsArbitraryLoads
- NSAllowsArbitraryLoadsForMedia
-
```
@@ -307,15 +305,13 @@ To allow your macOS application to access audio files on the Internet, add the f
```
-If you wish to connect to non-HTTPS URLS, add the following to your `Info.plist` file:
+If you wish to connect to non-HTTPS URLS, or if you use a feature that depends on the proxy such as headers, caching or stream audio sources, add the following to your `Info.plist` file:
```xml
NSAppTransportSecurityNSAllowsArbitraryLoads
- NSAllowsArbitraryLoadsForMedia
-
```
diff --git a/just_audio/android/src/main/java/com/ryanheise/just_audio/AudioPlayer.java b/just_audio/android/src/main/java/com/ryanheise/just_audio/AudioPlayer.java
index de6df34fc..d31c284d2 100644
--- a/just_audio/android/src/main/java/com/ryanheise/just_audio/AudioPlayer.java
+++ b/just_audio/android/src/main/java/com/ryanheise/just_audio/AudioPlayer.java
@@ -11,6 +11,7 @@
import com.google.android.exoplayer2.C;
import com.google.android.exoplayer2.DefaultLivePlaybackSpeedControl;
import com.google.android.exoplayer2.DefaultLoadControl;
+import com.google.android.exoplayer2.DefaultRenderersFactory;
import com.google.android.exoplayer2.ExoPlaybackException;
import com.google.android.exoplayer2.LivePlaybackSpeedControl;
import com.google.android.exoplayer2.LoadControl;
@@ -90,6 +91,7 @@ public class AudioPlayer implements MethodCallHandler, Player.Listener, Metadata
private int errorCount;
private AudioAttributes pendingAudioAttributes;
private LoadControl loadControl;
+ private boolean offloadSchedulingEnabled;
private LivePlaybackSpeedControl livePlaybackSpeedControl;
private List