File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
sample-app/src/androidTest/java/com/dropbox/detector/sample Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
99 }
1010 }
1111 dependencies {
12- classpath " com.android.tools.build:gradle:7.0.4 "
12+ classpath " com.android.tools.build:gradle:7.1.2 "
1313 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1414 classpath(" org.jlleitschuh.gradle:ktlint-gradle:10.2.0" )
1515 classpath(" org.jacoco:org.jacoco.core:0.8.7" )
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6 -bin.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.2 -bin.zip
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-6.5 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.2 -all.zip
Original file line number Diff line number Diff line change 1+ package com.dropbox.detector.sample
2+
3+ import org.junit.Assert.assertEquals
4+ import org.junit.Test
5+
6+ /* *
7+ * Example local unit test, which will execute on the development machine (host).
8+ *
9+ * See [testing documentation](http://d.android.com/tools/testing).
10+ */
11+ class ExampleAndroidTest {
12+ @Test
13+ fun addition_isCorrect () {
14+ assertEquals(5 , 2 + 2 )
15+ }
16+ }
You can’t perform that action at this time.
0 commit comments