You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**⚠️ Note:** If you are using `bevy_audio` the minimum supported Android API version is 26 (Android 8/Oreo).
195
195
196
-
In its example, Bevy uses Android API 36 as `targetSdk` to be able to benefit from security and performance improvements. For backwards compatibility, the example specifies Android API 31 as `minSdk`. This approach is recommended in the [Android Developers documentation](https://developer.android.com/google/play/requirements/target-sdk#why-target).
196
+
In its example, Bevy uses Android API 36 as `targetSdk` to be able to benefit from security and performance improvements. For backwards compatibility, the example specifies Android API 26 as `minSdk`. This approach is recommended in the [Android Developers documentation](https://developer.android.com/google/play/requirements/target-sdk#why-target).
197
197
198
-
Bevy uses [`GameActivity`](https://developer.android.com/games/agdk/game-activity), which only works for Android API 31and higher. If you want to use an older API, you need to switch to [`NativeActivity`](https://developer.android.com/reference/android/app/NativeActivity).
198
+
Bevy uses [`GameActivity`](https://developer.android.com/games/agdk/game-activity), which only works for Android API 23and higher. If you want to use an older API, you need to switch to [`NativeActivity`](https://developer.android.com/reference/android/app/NativeActivity).
199
199
200
200
You can follow the following steps to switch from [`GameActivity`](https://developer.android.com/games/agdk/game-activity) to [`NativeActivity`](https://developer.android.com/reference/android/app/NativeActivity):
201
201
@@ -263,27 +263,18 @@ You can follow the following steps to switch from [`GameActivity`](https://devel
263
263
```
264
264
265
265
</details>
266
-
3.Change `minSdk` (optional) and remove unnecessary dependencies in `android/app/build.gradle.kts`.
266
+
3.Remove unnecessary dependencies in `android/app/build.gradle.kts`.
**⚠️ Note:** If you are using `bevy_audio` the minimum supported Android API version is 26 (Android 8/Oreo).
803
803
804
-
In its example, Bevy uses Android API 36 as `targetSdk` to be able to benefit from security and performance improvements. For backwards compatibility, the example specifies Android API 31 as `minSdk`. This approach is recommended in the [Android Developers documentation](https://developer.android.com/google/play/requirements/target-sdk#why-target).
804
+
In its example, Bevy uses Android API 36 as `targetSdk` to be able to benefit from security and performance improvements. For backwards compatibility, the example specifies Android API 26 as `minSdk`. This approach is recommended in the [Android Developers documentation](https://developer.android.com/google/play/requirements/target-sdk#why-target).
805
805
806
-
Bevy uses [`GameActivity`](https://developer.android.com/games/agdk/game-activity), which only works for Android API 31 and higher. If you want to use an older API, you need to switch to [`NativeActivity`](https://developer.android.com/reference/android/app/NativeActivity).
806
+
Bevy uses [`GameActivity`](https://developer.android.com/games/agdk/game-activity), which only works for Android API 23 and higher. If you want to use an older API, you need to switch to [`NativeActivity`](https://developer.android.com/reference/android/app/NativeActivity).
807
807
808
808
You can follow the following steps to switch from [`GameActivity`](https://developer.android.com/games/agdk/game-activity) to [`NativeActivity`](https://developer.android.com/reference/android/app/NativeActivity):
809
809
@@ -871,27 +871,18 @@ You can follow the following steps to switch from [`GameActivity`](https://devel
871
871
```
872
872
873
873
</details>
874
-
3. Change `minSdk` (optional) and remove unnecessary dependencies in`android/app/build.gradle.kts`.
0 commit comments