Use consistent build tools version

Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
This commit is contained in:
Pun Butrach
2025-06-20 21:14:58 +07:00
parent 5f1a43463a
commit 7b441f912d
3 changed files with 8 additions and 1 deletions

View File

@@ -24,6 +24,11 @@ android {
}
testOptions.managedDevices.devices {
pixel7Api36(ManagedVirtualDevice) {
device = "Pixel 7"
apiLevel = 36
systemImageSource = "google"
}
pixel6Api33(ManagedVirtualDevice) {
device = "Pixel 6"
apiLevel = 33
@@ -35,7 +40,7 @@ android {
// This is the configuration block for the Baseline Profile plugin.
// You can specify to run the generators on a managed devices or connected devices.
baselineProfile {
managedDevices += "pixel6Api33"
managedDevices += ["pixel6Api33", "pixel7Api36"]
useConnectedDevices = false
}

View File

@@ -3,6 +3,7 @@ plugins {
}
android {
buildToolsVersion "35.0.1"
namespace "app.lawnchair.compatlib"
buildFeatures {

View File

@@ -5,6 +5,7 @@ plugins {
}
android {
buildToolsVersion "35.0.1"
namespace "com.android.wm.shell"
buildFeatures {
aidl true