Skip to content

Commit

Permalink
api version 30 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
girish3 committed Jul 21, 2021
1 parent 219a1f3 commit 8af39a7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation "androidx.core:core-ktx:+"
implementation "androidx.core:core-ktx:1.3.2"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.google.android.material:material:1.2.1'

// Vlog library
debugImplementation 'com.github.girish3.Vlog:library:v0.3'
releaseImplementation 'com.github.girish3.Vlog:library-no-op:v0.3'
//debugImplementation 'com.github.girish3.Vlog:library:v0.3'
//releaseImplementation 'com.github.girish3.Vlog:library-no-op:v0.3'
// implementation project(path: ':library-no-op')
// implementation project(path: ':library')
implementation project(path: ':library')
}
repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions library-no-op/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ plugins {
group='com.github.girish3'

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 29
buildToolsVersion "29.0.3"

defaultConfig {
minSdkVersion 19
targetSdkVersion 30
targetSdkVersion 29
versionCode 1
versionName "1.0"

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {

dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation "androidx.core:core-ktx:+"
implementation "androidx.core:core-ktx:1.3.2"
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
Expand Down
6 changes: 3 additions & 3 deletions timber-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ plugins {
}

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 29
buildToolsVersion "29.0.3"

defaultConfig {
applicationId "com.example.timber"
minSdkVersion 19
targetSdkVersion 30
targetSdkVersion 29
versionCode 1
versionName "1.0"

Expand Down

0 comments on commit 8af39a7

Please sign in to comment.