Skip to content

Commit

Permalink
build(Gradle): explicitly set buildToolsVersion to 34.0.0
Browse files Browse the repository at this point in the history
* we're using AGP v8.1.4 which is the minimum version to support Android
  14, but it comes with Android 13 build tools by default.

Signed-off-by: iusmac <iusico.maxim@libero.it>
  • Loading branch information
iusmac committed Sep 4, 2024
1 parent ce6b48a commit 8c23422
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SettingsLib/BannerMessagePreference/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ def SettingsLibBannerMessagePreference = '../fwb/packages/SettingsLib/BannerMess
android {
namespace 'com.android.settingslib.widget.preference.banner'

buildToolsVersion = '34.0.0'

defaultConfig {
minSdk 28
targetSdk 34
Expand Down
2 changes: 2 additions & 0 deletions SettingsLib/CollapsingToolbarBaseActivity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ def SettingsLibCollapsingToolbarBaseActivity = '../fwb/packages/SettingsLib/Coll
android {
namespace 'com.android.settingslib.collapsingtoolbar'

buildToolsVersion = '34.0.0'

defaultConfig {
minSdk 29
targetSdk 34
Expand Down
2 changes: 2 additions & 0 deletions SettingsLib/LayoutPreference/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ plugins {
android {
namespace 'com.android.settingslib.widget.preference.layout'

buildToolsVersion = '34.0.0'

defaultConfig {
minSdk 21
targetSdk 34
Expand Down
2 changes: 2 additions & 0 deletions SettingsLib/SettingsTheme/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ def SettingsLibSettingsTheme = '../fwb/packages/SettingsLib/SettingsTheme'
android {
namespace 'com.android.settingslib.widget.theme'

buildToolsVersion = '34.0.0'

defaultConfig {
minSdk 21
targetSdk 34
Expand Down
2 changes: 2 additions & 0 deletions SettingsLib/TwoTargetPreference/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ def SettingsLibTwoTargetPreference = '../fwb/packages/SettingsLib/TwoTargetPrefe
android {
namespace 'com.android.settingslib.widget.preference.twotarget'

buildToolsVersion = '34.0.0'

defaultConfig {
minSdk 21
targetSdk 34
Expand Down
2 changes: 2 additions & 0 deletions SettingsLib/Utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ def SettingsLibUtils = '../fwb/packages/SettingsLib/Utils'
android {
namespace 'com.android.settingslib.utils'

buildToolsVersion = '34.0.0'

defaultConfig {
minSdk 21
targetSdk 34
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ if (System.getenv('EXTRA_VERSION_BUILD_INFO') == null) {
android {
namespace 'com.github.iusmac.sevensim'

buildToolsVersion = '34.0.0'

defaultConfig {
applicationId 'com.github.iusmac.sevensim'
targetSdk 34
Expand Down

0 comments on commit 8c23422

Please sign in to comment.