File tree Expand file tree Collapse file tree 6 files changed +29
-21
lines changed Expand file tree Collapse file tree 6 files changed +29
-21
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,24 @@ apply plugin: 'kotlin-android'
33apply plugin : ' kotlin-android-extensions'
44
55android {
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
4649repositories {
@@ -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}
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
33android {
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
4245repositories {
@@ -46,6 +49,6 @@ repositories {
4649dependencies {
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}
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
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
1819allprojects {
1920 repositories {
21+ mavenCentral()
2022 jcenter()
2123 google()
2224 }
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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
You can’t perform that action at this time.
0 commit comments