Skip to content

Commit

Permalink
Bump version and update some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed May 1, 2023
1 parent 1e067d4 commit b7b2adb
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 33 deletions.
44 changes: 22 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
buildscript {
repositories {
mavenCentral()
maven { url "https://maven.google.com" }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
classpath 'org.jacoco:org.jacoco.core:0.8.7'
classpath 'com.github.ksoichiro:gradle-eclipse-aar-plugin:0.3.1'
}
}

allprojects {
repositories {
mavenCentral()
maven { url "https://maven.google.com" }
mavenLocal()
google()
jcenter()
}
}
buildscript {
repositories {
mavenCentral()
maven { url "https://maven.google.com" }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'org.jacoco:org.jacoco.core:0.8.7'
classpath 'com.github.ksoichiro:gradle-eclipse-aar-plugin:0.3.1'
}
}

allprojects {
repositories {
mavenCentral()
maven { url "https://maven.google.com" }
mavenLocal()
google()
jcenter()
}
}
10 changes: 5 additions & 5 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\:https://services.gradle.org/distributions/gradle-6.8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\:https://services.gradle.org/distributions/gradle-7.3.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
10 changes: 5 additions & 5 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,16 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

// Instrumentation tests
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:rules:1.1.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation "org.hamcrest:hamcrest-library:1.3"
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'

// Unit tests
testImplementation "junit:junit:4.13"
testImplementation 'org.robolectric:robolectric:4.4'
testImplementation 'androidx.test.ext:junit:1.1.1'
testImplementation 'androidx.test:rules:1.1.1'
testImplementation 'org.robolectric:robolectric:4.8.1'
testImplementation 'androidx.test.ext:junit:1.1.3'
testImplementation 'androidx.test:rules:1.4.0'
}

android.libraryVariants.all { variant ->
Expand Down
3 changes: 2 additions & 1 deletion lib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<application>
<activity
android:name=".TestActivity"
android:label="@string/title_activity_test"></activity>
android:label="@string/title_activity_test"
android:exported="true" />
</application>

</manifest>

0 comments on commit b7b2adb

Please sign in to comment.