Skip to content

Commit d0ec3c8

Browse files
committed
Update Kotlin Gradle Plugin and Gradle
Update Android 12 requirement to export MainActivity
1 parent cfde3fb commit d0ec3c8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

androidApp/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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.22")
9+
classpath("com.android.tools.build:gradle:7.2.2")
1010
}
1111
}
1212

0 commit comments

Comments
 (0)