Skip to content

Commit

Permalink
Merge pull request #926 from NUmeroAndDev/bump_target_sdk_to_35
Browse files Browse the repository at this point in the history
Bump target sdk version to 35
  • Loading branch information
takahirom authored Sep 2, 2024
2 parents 24ec63a + cfbceac commit 800a200
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app-android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@

<activity
android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar" />
android:theme="@style/Theme.KaigiApp.Licenses" />

<activity
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar" />
android:theme="@style/Theme.KaigiApp.Licenses" />

<provider
android:name="androidx.core.content.FileProvider"
Expand Down
4 changes: 4 additions & 0 deletions app-android/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
<style name="Theme.KaigiApp" parent="android:Theme.Material.NoActionBar">
<item name="android:statusBarColor">@android:color/transparent</item>
</style>

<style name="Theme.KaigiApp.Licenses" parent="Theme.AppCompat.DayNight.DarkActionBar">
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
</style>
</resources>
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ fun Project.setupAndroid() {
namespace?.let {
this.namespace = it
}
compileSdkVersion(34)
compileSdkVersion(35)

defaultConfig {
minSdk = 24
targetSdk = 34
targetSdk = 35
}

compileOptions {
Expand Down

0 comments on commit 800a200

Please sign in to comment.