116 lines
3.9 KiB
Groovy
116 lines
3.9 KiB
Groovy
/*
|
|
* Copyright (c) 2022 DuckDuckGo
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
id 'com.squareup.anvil'
|
|
}
|
|
|
|
apply from: "$rootProject.projectDir/gradle/android-library.gradle"
|
|
|
|
dependencies {
|
|
anvil project(':anvil-compiler')
|
|
implementation project(':anrs-api')
|
|
implementation project(':anvil-annotations')
|
|
implementation project(':app-build-config-api')
|
|
implementation project(':browser-api')
|
|
implementation project(':common-utils')
|
|
implementation project(':common-ui')
|
|
implementation project(':di')
|
|
implementation project(':app-tracking-api')
|
|
implementation project(':vpn-api')
|
|
implementation project(':navigation-api')
|
|
implementation project(':network-protection-api')
|
|
implementation project(':network-protection-store')
|
|
implementation project(':library-loader-api')
|
|
implementation project(':statistics')
|
|
implementation project(':feature-toggles-api')
|
|
implementation project(':privacy-config-api')
|
|
implementation project(':navigation-api')
|
|
implementation project(':subscriptions-api')
|
|
implementation project(':settings-api')
|
|
implementation project(':remote-messaging-api')
|
|
implementation project(':data-store-api')
|
|
|
|
implementation AndroidX.appCompat
|
|
implementation AndroidX.constraintLayout
|
|
implementation AndroidX.lifecycle.runtime.ktx
|
|
implementation AndroidX.lifecycle.viewModelKtx
|
|
implementation AndroidX.room.runtime
|
|
implementation Google.android.material
|
|
implementation Google.dagger
|
|
implementation "com.squareup.logcat:logcat:_"
|
|
implementation KotlinX.coroutines.core
|
|
implementation Square.retrofit2.retrofit
|
|
implementation Square.retrofit2.converter.moshi
|
|
implementation "com.squareup.moshi:moshi-kotlin:_"
|
|
|
|
// Lottie
|
|
implementation "com.airbnb.android:lottie:_"
|
|
|
|
testImplementation project(':common-test')
|
|
testImplementation project(':vpn-api-test')
|
|
testImplementation project(':data-store-test')
|
|
testImplementation CashApp.turbine
|
|
testImplementation Testing.junit4
|
|
testImplementation AndroidX.archCore.testing
|
|
testImplementation AndroidX.test.ext.junit
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:_"
|
|
testImplementation Testing.robolectric
|
|
|
|
// WorkManager
|
|
implementation AndroidX.work.runtimeKtx
|
|
implementation "androidx.work:work-multiprocess:_"
|
|
testImplementation AndroidX.work.testing
|
|
|
|
implementation "com.squareup.okhttp3:okhttp-tls:_"
|
|
|
|
// see https://github.com/google/conscrypt/issues/649#issuecomment-808482460
|
|
compileOnly 'org.conscrypt:conscrypt-openjdk-uber:2.5.0'
|
|
runtimeOnly 'org.conscrypt:conscrypt-android:2.5.0'
|
|
testImplementation 'org.conscrypt:conscrypt-openjdk-uber:2.5.0'
|
|
|
|
// Shimmer
|
|
implementation "com.facebook.shimmer:shimmer:_"
|
|
|
|
coreLibraryDesugaring Android.tools.desugarJdkLibs
|
|
}
|
|
|
|
ext {
|
|
NETP_DEBUG_SERVER_TOKEN="${System.getenv('NETP_DEBUG_SERVER_TOKEN')}"
|
|
}
|
|
|
|
android {
|
|
namespace 'com.duckduckgo.networkprotection.impl'
|
|
anvil {
|
|
generateDaggerFactories = true // default is false
|
|
}
|
|
lintOptions {
|
|
baseline file("lint-baseline.xml")
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
defaultConfig {
|
|
buildConfigField "String", "NETP_DEBUG_SERVER_TOKEN", "\"${NETP_DEBUG_SERVER_TOKEN}\""
|
|
}
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled = true
|
|
}
|
|
} |