Skip to content

Commit 5799a7f

Browse files
authored
Merge pull request #10 from freshbits/release/2.3.3
Release 2.3.3
2 parents 6fe991b + 273b3b2 commit 5799a7f

File tree

6 files changed

+29
-21
lines changed

6 files changed

+29
-21
lines changed

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44

55
android {
6-
compileSdkVersion 28
6+
compileSdkVersion 31
77

88
defaultConfig {
99
applicationId "ch.freshbits.pathshare.example"
1010
minSdkVersion 21
11-
targetSdkVersion 28
11+
targetSdkVersion 31
1212
versionCode 132
1313
versionName "2.3.2"
1414

1515
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1616
}
17-
1817
packagingOptions {
19-
exclude 'META-INF/DEPENDENCIES'
18+
resources {
19+
excludes += ['META-INF/DEPENDENCIES']
20+
}
2021
}
2122

23+
2224
compileOptions {
2325
sourceCompatibility 1.8
2426
targetCompatibility 1.8
@@ -41,6 +43,7 @@ android {
4143
minifyEnabled false
4244
}
4345
}
46+
namespace 'ch.freshbits.pathshare.example'
4447
}
4548

4649
repositories {
@@ -51,6 +54,6 @@ dependencies {
5154
implementation fileTree(dir: 'libs', include: ['*.jar'])
5255
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5356
testImplementation 'junit:junit:4.13'
54-
implementation 'androidx.appcompat:appcompat:1.2.0-beta01'
55-
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.2'
57+
implementation 'androidx.appcompat:appcompat:1.4.2'
58+
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.3'
5659
}

android-example-app/app-kotlin/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="ch.freshbits.pathshare.example">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65

@@ -12,7 +11,8 @@
1211
android:theme="@style/AppTheme" >
1312
<activity
1413
android:name="ch.freshbits.pathshare.example.MainActivity"
15-
android:label="@string/app_name" >
14+
android:label="@string/app_name"
15+
android:exported="true">
1616
<intent-filter>
1717
<action android:name="android.intent.action.MAIN" />
1818

android-example-app/app/build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 31
55

66
defaultConfig {
77
applicationId "ch.freshbits.pathshare.example"
88
minSdkVersion 25
9-
targetSdkVersion 28
9+
targetSdkVersion 31
1010
versionCode 132
1111
versionName "2.3.2"
1212
}
13-
1413
packagingOptions {
15-
exclude 'META-INF/DEPENDENCIES'
14+
resources {
15+
excludes += ['META-INF/DEPENDENCIES']
16+
}
1617
}
1718

19+
1820
compileOptions {
1921
sourceCompatibility 1.8
2022
targetCompatibility 1.8
@@ -37,6 +39,7 @@ android {
3739
minifyEnabled false
3840
}
3941
}
42+
namespace 'ch.freshbits.pathshare.example'
4043
}
4144

4245
repositories {
@@ -46,6 +49,6 @@ repositories {
4649
dependencies {
4750
implementation fileTree(dir: 'libs', include: ['*.jar'])
4851
testImplementation 'junit:junit:4.13'
49-
implementation 'androidx.appcompat:appcompat:1.2.0-beta01'
50-
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.2'
52+
implementation 'androidx.appcompat:appcompat:1.4.2'
53+
implementation 'ch.freshbits.pathshare.sdk:pathshare-sdk:2.3.3'
5154
}

android-example-app/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="ch.freshbits.pathshare.example" >
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65

@@ -12,7 +11,8 @@
1211
android:theme="@style/AppTheme" >
1312
<activity
1413
android:name="ch.freshbits.pathshare.example.MainActivity"
15-
android:label="@string/app_name" >
14+
android:label="@string/app_name"
15+
android:exported="true">
1616
<intent-filter>
1717
<action android:name="android.intent.action.MAIN" />
1818

android-example-app/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +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.3.10'
4+
ext.kotlin_version = '1.4.10'
55

66
repositories {
7+
mavenCentral()
78
jcenter()
89
google()
910
}
1011
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.6.1'
12+
classpath 'com.android.tools.build:gradle:4.2.2'
1213
// NOTE: Do not place your application dependencies here; they belong
1314
// in the individual module build.gradle files
1415
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -17,6 +18,7 @@ buildscript {
1718

1819
allprojects {
1920
repositories {
21+
mavenCentral()
2022
jcenter()
2123
google()
2224
}

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-5.6.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

0 commit comments

Comments
 (0)