Skip to content

Commit

Permalink
version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gmale authored and str4d committed Dec 1, 2018
1 parent afc9a57 commit aa0c83a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions build.gradle
Expand Up @@ -5,15 +5,15 @@ buildscript {
'targetSdkVersion': 28
]
ext.versions = [
'kotlin': '1.3.0',
'kotlin': '1.3.10',
'architectureComponents': '2.0.0'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0-alpha04'
classpath 'com.android.tools.build:gradle:3.4.0-alpha05'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "com.github.ben-manes:gradle-versions-plugin:0.20.0"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
Expand All @@ -29,7 +29,7 @@ apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.dcendents.android-maven'

group = 'cash.z.android.wallet'
version = '1.1.2'
version = '1.2.0'

repositories {
google()
Expand All @@ -42,8 +42,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode = 1_01_02
versionName = "1.1.2"
versionCode = 1_02_00
versionName = "1.2.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -73,8 +73,11 @@ dependencies {
kapt "androidx.lifecycle:lifecycle-compiler:${versions.architectureComponents}"
kapt "androidx.room:room-compiler:${versions.architectureComponents}"

// Other
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
implementation "com.android.support:appcompat-v7:28.0.0"

// Tests
testImplementation "junit:junit:4.12"
androidTestImplementation "androidx.test:runner:1.1.0"
androidTestImplementation "androidx.test.espresso:espresso-core:3.1.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-milestone-1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-all.zip

0 comments on commit aa0c83a

Please sign in to comment.