tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

build.gradle (1192B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 apply plugin: 'com.android.library'
      6 apply plugin: 'kotlin-android'
      7 
      8 android {
      9    namespace = 'mozilla.components.support.locale'
     10 }
     11 
     12 dependencies {
     13    implementation project(':components:browser-state')
     14    implementation project(':components:support-base')
     15    implementation project(':components:support-utils')
     16 
     17    implementation libs.androidx.core
     18    implementation libs.androidx.core.ktx
     19    implementation libs.kotlinx.coroutines
     20 
     21    testImplementation project(':components:support-test')
     22    testImplementation project(':components:support-test-libstate')
     23 
     24    testImplementation libs.androidx.test.core
     25    testImplementation libs.androidx.test.junit
     26    testImplementation libs.kotlinx.coroutines.test
     27    testImplementation libs.robolectric
     28 
     29    androidTestImplementation libs.kotlinx.coroutines.test
     30 }
     31 
     32 apply from: '../../../common-config.gradle'
     33 apply from: '../../../publish.gradle'
     34 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)