-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply setMaxLifecycle during fragment transaction & update dependenci…
…es (#2) * Apply setMaxLifecycle during fragment transaction & update dependencies * Updated travis config * Deprecated few properties + adjust publishing config * Update .travis.yml * Update .travis.yml * Update .travis.yml * Update .travis.yml * Update .travis.yml * Update .travis.yml * Add an option to set max lifecycle * Fix some lint warning * Fix missing dependency in test * Address review comments * Update jacoco report path * Workaround for coveralls SSLException Co-authored-by: Andrey Mischenko <[email protected]>
- Loading branch information
1 parent
498317c
commit 9743f99
Showing
18 changed files
with
155 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,39 @@ | ||
buildscript { | ||
ext.kotlin_version = '1.3.31' | ||
ext.spek_version = '2.0.0-rc.1' | ||
ext.kotlin_version = '1.6.10' | ||
ext.spek_version = '2.0.18' | ||
repositories { | ||
jcenter() | ||
google() | ||
|
||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:3.4.1' | ||
classpath 'com.android.tools.build:gradle:7.1.2' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.1.1" | ||
classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.13.0" | ||
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.8.2.0" | ||
classpath "org.jacoco:org.jacoco.core:0.8.7" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
mavenCentral() | ||
maven { url "http://dl.bintray.com/jetbrains/spek" } | ||
} | ||
} | ||
|
||
repositories { | ||
google() | ||
jcenter() | ||
mavenCentral() | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
|
||
ext { | ||
// App dependencies | ||
|
||
junitVersion = '4.12' | ||
buildToolsVersion = '28.0.3' | ||
junitVersion = '4.13.2' | ||
buildToolsVersion = '30.0.3' | ||
minSdkVersion = 14 | ||
targetSdkVersion = 28 | ||
compileSdkVersion = 28 | ||
targetSdkVersion = 31 | ||
compileSdkVersion = 31 | ||
} |
Oops, something went wrong.