Skip to content

Commit 1dcca63

Browse files
authored
Merge pull request #11 from freshbits/release/2.3.4
Release 2.3.4
2 parents 15e4f4a + 844dd45 commit 1dcca63

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

android-example-app/app-kotlin/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
apply plugin: 'com.android.application'
2-
apply plugin: 'kotlin-android'
3-
apply plugin: 'kotlin-android-extensions'
1+
plugins {
2+
id 'com.android.application'
3+
id 'kotlin-android'
4+
id 'kotlin-android-extensions'
5+
}
46

57
android {
6-
compileSdkVersion 31
8+
compileSdk 33
79

810
defaultConfig {
911
applicationId "ch.freshbits.pathshare.example"
1012
minSdkVersion 21
11-
targetSdkVersion 31
12-
versionCode 132
13-
versionName "2.3.2"
13+
targetSdkVersion 33
14+
versionCode 133
15+
versionName "2.3.4"
1416

1517
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1618
}
@@ -33,13 +35,11 @@ android {
3335
buildTypes {
3436
debug {
3537
debuggable true
36-
zipAlignEnabled false
3738
minifyEnabled false
3839
}
3940

4041
release {
4142
debuggable false
42-
zipAlignEnabled true
4343
minifyEnabled false
4444
}
4545
}
@@ -54,6 +54,6 @@ dependencies {
5454
implementation fileTree(dir: 'libs', include: ['*.jar'])
5555
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5656
testImplementation 'junit:junit:4.13'
57-
implementation 'androidx.appcompat:appcompat:1.4.2'
58-
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.3'
57+
implementation 'androidx.appcompat:appcompat:1.6.1'
58+
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.4'
5959
}

android-example-app/app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
apply plugin: 'com.android.application'
1+
plugins {
2+
id 'com.android.application'
3+
}
24

35
android {
4-
compileSdkVersion 31
6+
compileSdk 33
57

68
defaultConfig {
79
applicationId "ch.freshbits.pathshare.example"
810
minSdkVersion 25
9-
targetSdkVersion 31
10-
versionCode 132
11-
versionName "2.3.2"
11+
targetSdkVersion 33
12+
versionCode 133
13+
versionName "2.3.4"
1214
}
1315
packagingOptions {
1416
resources {
@@ -29,13 +31,11 @@ android {
2931
buildTypes {
3032
debug {
3133
debuggable true
32-
zipAlignEnabled false
3334
minifyEnabled false
3435
}
3536

3637
release {
3738
debuggable false
38-
zipAlignEnabled true
3939
minifyEnabled false
4040
}
4141
}
@@ -49,6 +49,6 @@ repositories {
4949
dependencies {
5050
implementation fileTree(dir: 'libs', include: ['*.jar'])
5151
testImplementation 'junit:junit:4.13'
52-
implementation 'androidx.appcompat:appcompat:1.4.2'
53-
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.3'
52+
implementation 'androidx.appcompat:appcompat:1.6.1'
53+
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.4'
5454
}

android-example-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.4.10'
4+
ext.kotlin_version = '1.7.22'
55

66
repositories {
77
mavenCentral()
88
jcenter()
99
google()
1010
}
1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:4.2.2'
12+
classpath 'com.android.tools.build:gradle:7.4.2'
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

android-example-app/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip

0 commit comments

Comments
 (0)