Skip to content

B0ND07/android_packages_apps_Updater_Db

 
 

Repository files navigation

SpiceOS OTA repo

In order for a device to be officially supported by SpiceOS, OTA information needs to be added. Please refer to the following "Readme" to get started

1. Introduction

In order for a device to be OTA compliant, there are a few things to know.

1.1 JSON structure

{
  "response": [
    {
        "maintainer": "Name (nickname)",
        "oem": "OEM",
        "device": "Device Name",
        "filename": "SpiceOS-v<version>-<buildtype>-<date>-<device codename>-<tag>.zip",
        "download": "https://sourceforge.net/projects/spiceos/files/11/<device codename>/SpiceOS-v<version>-<buildtype>-<date>-<device codename>-<tag>.zip/download",
        "timestamp": 0000000000,
        "md5": "abcdefg123456",
        "size": 123456789,
        "version": "<version>",
        "buildtype": "Testing/Alpha/Beta/Stable",
        "forum": "https://forum link",
        "gapps": "https://gapps link",
        "firmware": "https://firmware link",
        "modem": "https://modem link",
        "bootloader": "https://bootloader link",
        "recovery": "https://recovery link",
        "paypal": "https://donation link",
        "telegram": "https://telegram link"
    }
  ]
}

1.2 changelog.txt structure

Highlights & Device Specific Changes:
Build type: Testing/Alpha/Beta/Stable
Device: Device name (<device codename>)
Device maintainer: Name (nickname)
Required firmware: add if any else remove this line

===== <date> =====
- change 1
- change 2
- change 3

2 Guidelines

3. How to

For following below description, replace codename with your device codename.

3.1 Initial support

After you contacted althafvly on Telegram or Anush Madathumkara on Telegram, and have the approval, follow the below steps.

  1. Fork this repo to your own GitHub
  2. Create a copy jasmine_sprout.json for your codename.json and fill needed stuff
  3. Create a file named changelog_codename.txt and add your changelog in it.
  4. Submit a pull request to this repo (this way we validate that you understood the requirements and if all is good you'll be granted direct push access to this repo)

3.2 Update build

  1. Clone this repo locally
git clone https://github.com/SpiceOS/android_packages_apps_Updater_Db.git -b 11
  1. Change to the directory where you cloned this repo (android_packages_apps_Updater_Db) and fetch updates from repo.
cd android_packages_apps_Updater_Db
git fetch --all
git pull
  1. Copy codename.json file from out dir (where your SpiceOS zip is compiled) over to this repo folder (android_packages_apps_Updater_Db).
  2. Make changes to changelog_codename.txt and save it.
  3. Now with the files updated, commit your update to this repo.
git add .
git commit #(this opens up your prefered text editor, so write a nice description like "<device codename>: update build")
git push #you may be prompted for your github username and password

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%