Skip to content

Commit

Permalink
Update to AGP 8.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshliebe committed Nov 13, 2023
1 parent f2f6508 commit 60f9d72
Show file tree
Hide file tree
Showing 21 changed files with 61 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ad-click/ad-click-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ plugins {
id 'com.google.devtools.ksp' version "$ksp_version"
}

android {
namespace 'com.duckduckgo.adclick.store'
}

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

dependencies {
Expand Down
1 change: 1 addition & 0 deletions app-tracking-protection/vpn-internal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ android {
anvil {
generateDaggerFactories = true // default is false
}
namespace 'com.duckduckgo.vpn.internal'
}

dependencies {
Expand Down
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ android {
} else {
buildConfigField "boolean", "FORCE_DEFAULT_VARIANT", "false"
}
namespace 'com.duckduckgo.app.browser'
}
buildFeatures {
viewBinding = true
Expand Down
4 changes: 4 additions & 0 deletions autoconsent/autoconsent-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.autoconsent.impl'
}

dependencies {
anvil project(path: ':anvil-compiler')
implementation project(path: ':anvil-annotations')
Expand Down
4 changes: 4 additions & 0 deletions autofill/autofill-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.autofill.impl'
}

dependencies {
implementation project(path: ':app-build-config-api')
implementation project(path: ':privacy-config-api')
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
spotless = '6.1.2'
anvil_version = '2.4.4'
ksp_version = '1.8.10-1.0.9'
gradle_plugin = '7.4.2' // When updating, also update lint_version
lint_version = '30.4.2' // This value must always be gradle_plugin + 23
gradle_plugin = '8.1.2' // When updating, also update lint_version
lint_version = '31.1.2' // This value must always be gradle_plugin + 23
min_sdk = 23
target_sdk = 33
compile_sdk = 33
Expand Down
4 changes: 4 additions & 0 deletions common/common-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.app.test'
}

dependencies {

// Dependencies for this Module
Expand Down
4 changes: 4 additions & 0 deletions common/common-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.mobile.android'
}

android {
anvil {
generateDaggerFactories = true // default is false
Expand Down
1 change: 1 addition & 0 deletions common/common-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ android {
includeAndroidResources = true
}
}
namespace 'com.duckduckgo.app.global'
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions element-hiding/element-hiding-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.elementhiding.store'
}

dependencies {
implementation project(path: ':common-utils')
implementation Kotlin.stdlib.jdk7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.fingerprintprotection.store'
}

dependencies {
implementation project(path: ':common-utils')
implementation project(path: ':fingerprint-protection-api')
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Apr 29 21:22:50 BST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
4 changes: 4 additions & 0 deletions macos/macos-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.macos_impl'
}

dependencies {
anvil project(path: ':anvil-compiler')
implementation project(path: ':anvil-annotations')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ android {
anvil {
generateDaggerFactories = true // default is false
}
namespace 'com.duckduckgo.networkprotection.internal'
}

dependencies {
Expand Down
1 change: 1 addition & 0 deletions privacy-config/privacy-config-internal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ android {
anvil {
generateDaggerFactories = true // default is false
}
namespace 'com.duckduckgo.privacy.config.internal'
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions privacy-dashboard/privacy-dashboard-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.privacy.dashboard.impl'
}

dependencies {
anvil project(':anvil-compiler')
implementation project(':anvil-annotations')
Expand Down
4 changes: 4 additions & 0 deletions runtime-checks/runtime-checks-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.runtimechecks.store'
}

dependencies {
implementation project(path: ':common-utils')
implementation Kotlin.stdlib.jdk7
Expand Down
4 changes: 4 additions & 0 deletions subscriptions/subscriptions-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.subscriptions.impl'
}

dependencies {
testImplementation 'junit:junit:4.13.1'
anvil project(path: ':anvil-compiler')
Expand Down
4 changes: 4 additions & 0 deletions sync/sync-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.sync.impl'
}

dependencies {
implementation project(path: ':di')
implementation project(':browser-api')
Expand Down
1 change: 1 addition & 0 deletions traces/traces-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ android {
anvil {
generateDaggerFactories = true // default is false
}
namespace 'com.duckduckgo.app.traces'
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions windows/windows-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ plugins {

apply from: "$rootProject.projectDir/gradle/android-library.gradle"

android {
namespace 'com.duckduckgo.windows.impl'
}

dependencies {
anvil project(':anvil-compiler')
implementation project(':anvil-annotations')
Expand Down

0 comments on commit 60f9d72

Please sign in to comment.