Skip to content

Commit

Permalink
Lint: target Android 14, requires exported flag in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed May 22, 2024
1 parent a1af700 commit 5d5b736
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
defaultConfig {
applicationId = "io.objectbox.performanceapp"
minSdk = 19 // Android 4.4
targetSdk = 30 // Android 11
targetSdk = 34 // Android 14
versionCode = 1
versionName = "1.0"

Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:exported="true"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand Down

0 comments on commit 5d5b736

Please sign in to comment.