22652f5240
- Rebrand to me.pawlet.updater package - Replace ro.lineage.* props with ro.pawlet.* equivalents - Use ro.product.device for device name lookup - Set server URL to https://updates.pawlet.me/api/v1/{device}/ - Bump compileSdk/targetSdk to 36 (Android 16) - Drop all locale translations (English-only for now) - Add NOTICE.txt crediting upstream LineageOS team - Remove old org.lineageos.updater.xml privapp files - UpdaterReceiver: add missing Utils import - Remove setPerformanceMode chain (UpdateEngine API removed in Android 16)
16 lines
470 B
Kotlin
16 lines
470 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: oxmc / PawletOS
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id("com.android.application") version "8.7.3" apply false
|
|
id("com.android.library") version "8.7.3" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
|
|
}
|
|
|
|
tasks.register<Delete>("clean").configure {
|
|
delete(rootProject.buildDir)
|
|
}
|