tor-browser

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

build.gradle (890B)


      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.concept.sync'
     10 }
     11 
     12 dependencies {
     13    // Observables are part of the public API of this module.
     14    api project(':components:support-base')
     15 
     16    // Necessary because we use 'suspend'. Fun fact: this module will compile just fine without this
     17    // dependency, but it will crash at runtime.
     18    // Included via 'api' because this module is unusable without coroutines.
     19    api libs.kotlinx.coroutines
     20 }
     21 
     22 apply from: '../../../common-config.gradle'
     23 apply from: '../../../publish.gradle'
     24 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)