Skip to content

Commit e30c6e8

Browse files
authored
Merge pull request #23 from pahill/update_kotlin_gradle_on_master
Update Gradle, Android 12
2 parents cfde3fb + 84a8cca commit e30c6e8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

androidApp/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
android:allowBackup="false"
66
android:supportsRtl="true"
77
android:theme="@style/AppTheme">
8-
<activity android:name=".MainActivity">
8+
<activity android:name=".MainActivity"
9+
android:exported="true">
910
<intent-filter>
1011
<action android:name="android.intent.action.MAIN"/>
1112
<category android:name="android.intent.category.LAUNCHER"/>

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
9-
classpath("com.android.tools.build:gradle:7.2.1")
8+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.21")
9+
classpath("com.android.tools.build:gradle:7.2.2")
1010
}
1111
}
1212

0 commit comments

Comments
 (0)