Skip to content

Commit a3b7bcb

Browse files
committed
chore(README.md): bump to Android 16
Signed-off-by: iusmac <[email protected]>
1 parent 5cac1e1 commit a3b7bcb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,20 +224,20 @@ If you're a ROM maintainer and wish to integrate this app into your ROM, follow
224224
1. Choose one of the following methods to add the app to the Android sources:
225225
- As a remote project via [Local Manifests](https://gerrit.googlesource.com/git-repo/+/master/docs/manifest-format.md#Local-Manifests):
226226
```xml
227-
<remote name="iusmac" fetch="https://github.com/iusmac" revision="15.0-dev" />
227+
<remote name="iusmac" fetch="https://github.com/iusmac" revision="16.0-dev" />
228228
<project path="packages/apps/7SIM" name="7SIM" remote="iusmac" />
229229
```
230230
- As an in-tree package within the device tree directory:
231231
```sh
232-
git clone --depth=1 -b 15.0-dev https://github.com/iusmac/7SIM.git
232+
git clone --depth=1 -b 16.0-dev https://github.com/iusmac/7SIM.git
233233
```
234234
- Or better — as Git [Submodule/Subtree](https://training.github.com/downloads/submodule-vs-subtree-cheat-sheet/):
235235
```sh
236-
git submodule add --depth=1 -b 15.0-dev https://github.com/iusmac/7SIM.git
236+
git submodule add --depth=1 -b 16.0-dev https://github.com/iusmac/7SIM.git
237237
```
238238
OR
239239
```sh
240-
git subtree add --prefix=7SIM https://github.com/iusmac/7SIM.git 15.0-dev --squash
240+
git subtree add --prefix=7SIM https://github.com/iusmac/7SIM.git 16.0-dev --squash
241241
```
242242
2. Add app module to a product makefile (e.g., `device.mk`):
243243
```
@@ -269,7 +269,7 @@ If you're a ROM maintainer and wish to integrate this app into your ROM, follow
269269
### Using Gradle Build Tool
270270
271271
**Requirements:**
272-
- Android 15 SDK or newer with access to hidden APIs and internal resources
272+
- Android 16 SDK or newer with access to hidden APIs and internal resources
273273
> [!TIP]
274274
> If you don't have one already, you can use our own `android.jar` that you can find at
275275
> [`prebuilts/jars/`](./prebuilts/jars/). Replace it with the stock one in the Android SDK directory.
@@ -279,7 +279,7 @@ If you're a ROM maintainer and wish to integrate this app into your ROM, follow
279279
280280
As mentioned above, the 7SIM app is an extension of the built-in Settings app. In order to have the
281281
same UI, and also write less code, it relies on some parts of the
282-
[SettingsLib](https://android.googlesource.com/platform/frameworks/base.git/+/refs/tags/android-15.0.0_r10/packages/SettingsLib/)
282+
[SettingsLib](https://android.googlesource.com/platform/frameworks/base.git/+/refs/tags/android-16.0.0_r1/packages/SettingsLib/)
283283
package that you can download automatically using this script:
284284
```sh
285285
./SettingsLib/fetch.sh
@@ -302,7 +302,7 @@ To enable debug logging on releases with R8, see [Debug Opt-in Logging](#debug-o
302302

303303
### Using Soong Build System
304304
**Requirements:**
305-
- Android 15 and later source code base
305+
- Android 16 and later source code base
306306
> [!NOTE]
307307
> The app stability is not guaranteed when building against the upstream source code base.
308308

0 commit comments

Comments
 (0)