Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Tacke committed May 1, 2020
1 parent 85e0ee2 commit 5af972f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 27 deletions.
26 changes: 4 additions & 22 deletions androiddoubleratchet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,16 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlinx-serialization'
apply plugin: 'maven-publish'

def artifactId = 'AndroidDoubleRatchet'
def groupId = 'com.ticeapp.androiddoubleratchet'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"

defaultConfig {
minSdkVersion 16
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0.1"
versionName "1.0.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
Expand All @@ -35,26 +31,12 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.2.0'
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation "com.goterl.lazycode:lazysodium-android:4.1.0@aar"
implementation "com.goterl.lazycode:lazysodium-android:4.1.1@aar"
implementation 'net.java.dev.jna:jna:5.5.0@aar'
implementation 'com.github.TICESoftware:AndroidHKDF:1.0.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.20.0"
}

project.afterEvaluate {
publishing {
publications {
library(MavenPublication) {
setGroupId groupId
setArtifactId artifactId
version android.defaultConfig.versionName

artifact bundleReleaseAar
}
}
}
}
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {

defaultConfig {
applicationId "com.ticeapp.androiddoubleratchetapp"
minSdkVersion 16
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
Expand All @@ -31,10 +31,10 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation project(":androiddoubleratchet")
implementation "com.goterl.lazycode:lazysodium-android:4.1.0@aar"
implementation "com.goterl.lazycode:lazysodium-android:4.1.1@aar"
implementation 'net.java.dev.jna:jna:5.5.0@aar'
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.71'
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
Expand Down

0 comments on commit 5af972f

Please sign in to comment.