diff --git a/lineage-android-build-files/README.md b/lineage-android-build-files/README.md new file mode 100644 index 0000000..f72168e --- /dev/null +++ b/lineage-android-build-files/README.md @@ -0,0 +1,7 @@ +These files need to be deployed into your Android source code directory to ensure build.prop file on the device contains the correct URL for receiving OTA updates. + +1. Create the directory lineage/vendor/extra +2. Review and edit the contents of file product.prop to ensure the URL is what you want your device pointed to. +3. Place the product.mk and product.prop files in this directory + +The files will then be automatically read by the build system and patch build.prop with the updated URL. \ No newline at end of file diff --git a/lineage-android-build-files/product.mk b/lineage-android-build-files/product.mk new file mode 100644 index 0000000..69bfa60 --- /dev/null +++ b/lineage-android-build-files/product.mk @@ -0,0 +1 @@ +TARGET_PRODUCT_PROP += $(COMMON_PATH)/product.prop diff --git a/lineage-android-build-files/product.prop b/lineage-android-build-files/product.prop new file mode 100644 index 0000000..282588b --- /dev/null +++ b/lineage-android-build-files/product.prop @@ -0,0 +1 @@ +lineage.updater.uri=https://lineage-ota.deadbeef.codes \ No newline at end of file