Skip to content

Commit

Permalink
Updated dependencies and version code
Browse files Browse the repository at this point in the history
  • Loading branch information
OmGodse committed Sep 10, 2020
1 parent 20c8324 commit ea47808
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
10 changes: 4 additions & 6 deletions Post/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 29
compileSdkVersion rootProject.ext.compileSDKVersion
buildToolsVersion "29.0.3"

defaultConfig {
minSdkVersion 21
targetSdkVersion 29
minSdkVersion rootProject.ext.minSDKVersion
targetSdkVersion rootProject.ext.targetSDKVersion
versionCode 1
versionName "1.0"

Expand All @@ -24,7 +24,5 @@ android {
}

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
}
15 changes: 7 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 29
compileSdkVersion rootProject.ext.compileSDKVersion
buildToolsVersion "29.0.3"

defaultConfig {
applicationId "com.omgodse.notally"
minSdkVersion 21
targetSdkVersion 29
versionCode 23
versionName "2.8"
minSdkVersion rootProject.ext.minSDKVersion
targetSdkVersion rootProject.ext.targetSDKVersion
versionCode 24
versionName "2.9"
resConfigs 'en', 'de', 'es', 'fr', 'it', 'nb', 'ru', 'sv', 'tl', 'uk'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

Expand All @@ -35,12 +36,10 @@ android {
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')

final def stableNavVersion = "2.3.0"
final def stablePrefVersion = "1.1.1"

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'

Expand Down
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.72'
ext.minSDKVersion = 21
ext.targetSDKVersion = 29
ext.compileSDKVersion = 29
ext.kotlinVersion = '1.4.0'

repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down

0 comments on commit ea47808

Please sign in to comment.