[WiP] Android 14

Change-Id: Ibf5aa7da9d1608094be5afebe5ea0f2bae283fa5
This commit is contained in:
Chirayu Desai 2023-10-07 04:31:34 +05:30
parent 2bbeece7b7
commit 358f6d0f0c
4 changed files with 12 additions and 11 deletions

View file

@ -25,8 +25,8 @@ We update it every time Google releases a new Android version, make any changes
This means that for ROMs using SeedVault it's recommended to use the same branch as your android version This means that for ROMs using SeedVault it's recommended to use the same branch as your android version
- This current branch `android13` is meant for usage with Android 13 - This current branch `android14` is meant for usage with Android 14
- This is indicated by the version name starting with `13`, and the version code starting with `33` - the Android 13 API version - This is indicated by the version name starting with `14`, and the version code starting with `34` - the Android 14 API version
For older versions of Android, check out [the branches](https://github.com/seedvault-app/seedvault/branches). For older versions of Android, check out [the branches](https://github.com/seedvault-app/seedvault/branches).

View file

@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="com.stevesoltys.seedvault" package="com.stevesoltys.seedvault"
android:versionCode="33030030" android:versionCode="34030030"
android:versionName="13-3.3"> android:versionName="14-3.3">
<!-- <!--
The version code is the targeted SDK_VERSION plus 6 digits for our own version code. The version code is the targeted SDK_VERSION plus 6 digits for our own version code.
The version name is the targeted Android version followed by - and our own version name. The version name is the targeted Android version followed by - and our own version name.

View file

@ -3,10 +3,11 @@ buildscript {
// 1.4.30 Android 12 // 1.4.30 Android 12
// 1.6.10 Android 13 // 1.6.10 Android 13
// 1.7.20 Android 13 (QPR2) // 1.7.20 Android 13 (QPR2)
// 1.8.10 Android 14
// Check: // Check:
// https://android.googlesource.com/platform/external/kotlinc/+/refs/tags/android-13.0.0_r32/build.txt // https://android.googlesource.com/platform/external/kotlinc/+/refs/tags/android-14.0.0_r1/build.txt
ext.aosp_kotlin_version = '1.7.20' // 1.7.20-release-201 in AOSP ext.aosp_kotlin_version = '1.8.10' // 1.8.10-release-430 in AOSP
ext.kotlin_version = '1.7.20' ext.kotlin_version = '1.8.10'
} }
plugins { plugins {
@ -20,9 +21,9 @@ plugins {
} }
ext { ext {
compileSdk = 33 compileSdk = 34
minSdk = 32 minSdk = 32
targetSdk = 33 targetSdk = 34
} }
apply from: 'gradle/dependencies.gradle' apply from: 'gradle/dependencies.gradle'

View file

@ -6,8 +6,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="org.calyxos.backup.contacts" package="org.calyxos.backup.contacts"
android:versionCode="33030030" android:versionCode="34030030"
android:versionName="13-3.3"> android:versionName="14-3.3">
<!-- <!--
The version code is the targeted SDK_VERSION plus 6 digits for our own version code. The version code is the targeted SDK_VERSION plus 6 digits for our own version code.
The version name is the targeted Android version followed by - and our own version name. The version name is the targeted Android version followed by - and our own version name.