Skip to content

Commit

Permalink
upgrade build tool versions and release v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
starryalley committed Jan 12, 2022
1 parent cfd7537 commit fe62718
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repositories {
}

android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion "29.0.3"

compileOptions {
Expand All @@ -18,8 +18,8 @@ android {
applicationId "idv.markkuo.cscblebridge"
minSdkVersion 21
targetSdkVersion 30
versionCode 3
versionName "1.2"
versionCode 4
versionName "1.3"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -38,18 +38,18 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation "androidx.core:core-ktx:+"
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation "androidx.recyclerview:recyclerview:1.2.1"
implementation "androidx.core:core-ktx:1.7.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "androidx.cardview:cardview:1.0.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2"

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: [])
implementation files('libs/antpluginlib_3-8-0.aar')
implementation "org.jetbrains.kotlin:kotlin-reflect:1.4.30-RC"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.4.31"
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.4.30-RC'
ext.kotlin_version = '1.4.31'

repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"


Expand Down

0 comments on commit fe62718

Please sign in to comment.