Skip to content

Commit fb24c25

Browse files
committed
Kotlin version and target SDK version updated
1 parent 56bd1fc commit fb24c25

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

app/build.gradle

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

55
android {
6-
compileSdkVersion 29
6+
compileSdkVersion 33
77
defaultConfig {
88
applicationId "com.hellohasan.weatherforecast"
99
minSdkVersion 21
10-
targetSdkVersion 29
10+
targetSdkVersion 33
1111
versionCode 1
1212
versionName "1.0"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
tools:targetApi="m">
1818
<activity
1919
android:name="com.hellohasan.weatherforecast.features.weather_info_show.view.MainActivity"
20-
android:screenOrientation="portrait">
20+
android:screenOrientation="portrait"
21+
android:exported="true">
2122
<intent-filter>
2223
<action android:name="android.intent.action.MAIN" />
2324

build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
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.72'
4+
ext.kotlin_version = '1.7.21'
55
repositories {
66
google()
7-
jcenter()
8-
7+
mavenCentral()
98
}
109
dependencies {
1110
classpath 'com.android.tools.build:gradle:4.2.2'
@@ -19,7 +18,7 @@ buildscript {
1918
allprojects {
2019
repositories {
2120
google()
22-
jcenter()
21+
mavenCentral()
2322
maven { url 'https://jitpack.io' }
2423
}
2524
}

0 commit comments

Comments
 (0)