File tree 5 files changed +14
-31
lines changed
5 files changed +14
-31
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
2
2
apply plugin : ' kotlin-android'
3
3
4
4
android {
5
- compileSdkVersion 30
5
+ compileSdk 31
6
6
defaultConfig {
7
7
applicationId " com.limerse.sliding"
8
- minSdkVersion 21
9
- targetSdkVersion 30
8
+ minSdk 21
9
+ targetSdk 31
10
10
versionCode 1
11
11
versionName " 1.0"
12
12
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -23,9 +23,8 @@ android {
23
23
}
24
24
25
25
dependencies {
26
- implementation fileTree(include : [' *.jar' ], dir : ' libs' )
27
- implementation ' androidx.appcompat:appcompat:1.3.0'
28
- implementation ' androidx.constraintlayout:constraintlayout:2.0.4'
26
+ implementation ' androidx.appcompat:appcompat:1.3.1'
27
+ implementation ' androidx.constraintlayout:constraintlayout:2.1.1'
29
28
testImplementation ' junit:junit:4.13.2'
30
29
implementation ' com.github.bumptech.glide:glide:4.12.0'
31
30
annotationProcessor ' com.github.bumptech.glide:compiler:4.12.0'
@@ -34,7 +33,6 @@ dependencies {
34
33
androidTestImplementation ' androidx.test.espresso:espresso-core:3.4.0'
35
34
implementation project(' :slider' )
36
35
implementation ' androidx.core:core-ktx:1.6.0'
37
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version "
38
36
39
37
// Material Components
40
38
implementation ' com.google.android.material:material:1.4.0'
Original file line number Diff line number Diff line change 11
11
android : roundIcon =" @mipmap/ic_launcher_round"
12
12
android : supportsRtl =" true"
13
13
android : theme =" @style/AppTheme" >
14
- <activity android : name =" com.limerse.sliding.KotlinActivity" >
14
+ <activity android : name =" com.limerse.sliding.KotlinActivity"
15
+ android : exported =" true" >
15
16
<intent-filter >
16
17
<action android : name =" android.intent.action.MAIN" />
17
18
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
buildscript {
3
- ext. kotlin_version = ' 1.5.20 '
3
+ ext. kotlin_version = ' 1.5.31 '
4
4
5
5
repositories {
6
6
google()
7
7
mavenCentral()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:4.2.2 '
10
+ classpath ' com.android.tools.build:gradle:7.0.3 '
11
11
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
12
12
13
13
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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.0.2 -all.zip
Original file line number Diff line number Diff line change @@ -2,14 +2,11 @@ apply plugin: 'com.android.library'
2
2
apply plugin : ' kotlin-android'
3
3
4
4
android {
5
- compileSdkVersion 30
6
- buildToolsVersion " 30.0.3"
5
+ compileSdk 31
7
6
8
7
defaultConfig {
9
8
minSdkVersion 21
10
- targetSdkVersion 30
11
- versionCode 1
12
- versionName project. properties[' VERSION_NAME' ]
9
+ targetSdkVersion 31
13
10
}
14
11
15
12
buildTypes {
@@ -18,30 +15,17 @@ android {
18
15
proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
19
16
}
20
17
}
21
-
22
- compileOptions {
23
- sourceCompatibility JavaVersion . VERSION_1_8
24
- targetCompatibility JavaVersion . VERSION_1_8
25
- }
26
-
27
- kotlinOptions {
28
- jvmTarget = " 1.8"
29
- }
30
-
31
18
buildFeatures {
32
19
viewBinding true
33
20
}
34
21
}
35
22
36
23
dependencies {
37
- implementation fileTree(dir : ' libs' , include : [' *.jar' ])
38
-
39
- implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
40
- implementation ' androidx.appcompat:appcompat:1.3.0'
24
+ implementation ' androidx.appcompat:appcompat:1.3.1'
41
25
implementation ' androidx.core:core-ktx:1.6.0'
42
26
43
27
implementation ' com.google.android.material:material:1.4.0'
44
- implementation ' androidx.constraintlayout:constraintlayout:2.0.4 '
28
+ implementation ' androidx.constraintlayout:constraintlayout:2.1.1 '
45
29
implementation ' androidx.recyclerview:recyclerview:1.2.1'
46
30
47
31
// Glide
You can’t perform that action at this time.
0 commit comments