Skip to content

Commit 7a41626

Browse files
committed
Important updates made
1 parent e597749 commit 7a41626

File tree

5 files changed

+14
-31
lines changed

5 files changed

+14
-31
lines changed

app/build.gradle

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 30
5+
compileSdk 31
66
defaultConfig {
77
applicationId "com.limerse.sliding"
8-
minSdkVersion 21
9-
targetSdkVersion 30
8+
minSdk 21
9+
targetSdk 31
1010
versionCode 1
1111
versionName "1.0"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -23,9 +23,8 @@ android {
2323
}
2424

2525
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'
2928
testImplementation 'junit:junit:4.13.2'
3029
implementation 'com.github.bumptech.glide:glide:4.12.0'
3130
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
@@ -34,7 +33,6 @@ dependencies {
3433
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
3534
implementation project(':slider')
3635
implementation 'androidx.core:core-ktx:1.6.0'
37-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
3836

3937
// Material Components
4038
implementation 'com.google.android.material:material:1.4.0'

app/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
android:roundIcon="@mipmap/ic_launcher_round"
1212
android:supportsRtl="true"
1313
android:theme="@style/AppTheme">
14-
<activity android:name="com.limerse.sliding.KotlinActivity">
14+
<activity android:name="com.limerse.sliding.KotlinActivity"
15+
android:exported="true">
1516
<intent-filter>
1617
<action android:name="android.intent.action.MAIN" />
1718

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = '1.5.20'
3+
ext.kotlin_version = '1.5.31'
44

55
repositories {
66
google()
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:4.2.2'
10+
classpath 'com.android.tools.build:gradle:7.0.3'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212

1313
// NOTE: Do not place your application dependencies here; they belong

gradle/wrapper/gradle-wrapper.properties

+1-1
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.0.2-all.zip

slider/build.gradle

+4-20
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@ apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 30
6-
buildToolsVersion "30.0.3"
5+
compileSdk 31
76

87
defaultConfig {
98
minSdkVersion 21
10-
targetSdkVersion 30
11-
versionCode 1
12-
versionName project.properties['VERSION_NAME']
9+
targetSdkVersion 31
1310
}
1411

1512
buildTypes {
@@ -18,30 +15,17 @@ android {
1815
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
1916
}
2017
}
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-
3118
buildFeatures {
3219
viewBinding true
3320
}
3421
}
3522

3623
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'
4125
implementation 'androidx.core:core-ktx:1.6.0'
4226

4327
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'
4529
implementation 'androidx.recyclerview:recyclerview:1.2.1'
4630

4731
// Glide

0 commit comments

Comments
 (0)