Skip to content

Commit

Permalink
bump tooling versions (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
esafirm authored Jul 11, 2021
1 parent f1423ff commit 34d11da
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 18 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}

ext {
versions = [
compileSdk: 28,
compileSdk: 30,
minSdk : 19
]
}
Expand Down
4 changes: 2 additions & 2 deletions samples/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ android {
}
}

compileSdkVersion 29
compileSdkVersion versions.compileSdk
defaultConfig {
applicationId "nolambda.linkrouter.samples"
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion versions.compileSdk
versionCode 1
versionName "1.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ package nolambda.linkrouter.examples
import android.app.Application
import android.util.Log
import nolambda.linkrouter.android.RouterPlugin
import nolambda.linkrouter.approuter.AppRouter
import nolambda.linkrouter.approuter.AppRoutes

class SampleApp : Application() {
override fun onCreate() {
Expand Down
6 changes: 2 additions & 4 deletions samples/approuter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"

compileSdkVersion versions.compileSdk

defaultConfig {
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion versions.compileSdk
versionCode 1
versionName "1.0"

Expand Down
6 changes: 2 additions & 4 deletions samples/cart/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"

compileSdkVersion versions.compileSdk

defaultConfig {
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion versions.compileSdk
versionCode 1
versionName "1.0"

Expand Down
6 changes: 2 additions & 4 deletions samples/product/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"

compileSdkVersion versions.compileSdk

defaultConfig {
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion versions.compileSdk
versionCode 1
versionName "1.0"

Expand Down

0 comments on commit 34d11da

Please sign in to comment.