Skip to content

Commit ba72c21

Browse files
committed
Fix compilation
1 parent 5dd0f8c commit ba72c21

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.idea/compiler.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ apply plugin: 'kotlin-android'
55
apply plugin: 'kotlin-android-extensions'
66

77
android {
8-
compileSdkVersion 28
8+
compileSdkVersion 31
99
defaultConfig {
1010
applicationId "com.omegar.simple.omegalaunchers"
1111
minSdkVersion 14
12-
targetSdkVersion 28
12+
targetSdkVersion 31
1313
versionCode 1
1414
versionName "1.0"
1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
1111
android:theme="@style/AppTheme">
12-
<activity android:name=".MainActivity">
12+
<activity android:name=".MainActivity"
13+
android:exported="true">
1314
<intent-filter>
1415
<action android:name="android.intent.action.MAIN"/>
1516

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ buildscript {
2929
maven { url gradle.nexusUrl }
3030
}
3131
dependencies {
32-
classpath 'com.android.tools.build:gradle:4.0.0'
32+
classpath 'com.android.tools.build:gradle:4.2.2'
3333
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3434

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

0 commit comments

Comments
 (0)