Skip to content

Commit

Permalink
Fix manifest merger
Browse files Browse the repository at this point in the history
  • Loading branch information
runningcode committed Oct 23, 2023
1 parent 2ee6103 commit 4b5df02
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ agp = { id = "com.android.application", version.ref = "agp-version"}

[versions]

androidx-appcompat = "1.2.0"
androidx-appcompat = "1.6.1"

androidx-constraintlayout = "1.1.3"

androidx-navigation = "2.3.0"

androidx-test-espresso = "3.4.0"
androidx-test-espresso = "3.5.1"

androidx-test-ext-junit = "1.1.1"
androidx-test-ext-junit = "1.1.5"

androidx-test-rules = "1.2.0"
androidx-test-rules = "1.5.0"

junit-version = "4.13.2"

Expand Down
3 changes: 2 additions & 1 deletion sample-flavors-kotlin/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
android:supportsRtl="true"
android:theme="@style/AppTheme"
>
<activity android:name=".MainActivity">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down
3 changes: 2 additions & 1 deletion sample-kotlin/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
android:supportsRtl="true"
android:theme="@style/AppTheme"
>
<activity android:name="com.osacky.flank.gradle.sample.MainActivity">
<activity android:name="com.osacky.flank.gradle.sample.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
minSdk 23
targetSdk 29
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
3 changes: 2 additions & 1 deletion sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down

0 comments on commit 4b5df02

Please sign in to comment.