tor-browser

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

build.gradle (355B)


      1 apply plugin: 'kotlin'
      2 
      3 dependencies {
      4  compileOnly libs.detekt.api
      5 
      6  implementation libs.androidx.annotation
      7 
      8  testImplementation libs.detekt.api
      9  testImplementation libs.detekt.test
     10  testImplementation platform(libs.junit.bom)
     11  testImplementation libs.junit.jupiter
     12  testRuntimeOnly libs.junit.platform.launcher
     13 }
     14 
     15 test {
     16  useJUnitPlatform {}
     17 }