Skip to content

Commit

Permalink
buildConfig を true に設定する
Browse files Browse the repository at this point in the history
  • Loading branch information
zztkm committed Aug 1, 2024
1 parent bfc1466 commit 9a4dc11
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
- Android マニフェストに定義されていた package を削除
- ビルドファイルに namespace を追加
- ビルドファイルの dependencies の transitive をコメントアウト
- AGP 8.5.0 対応で発生したビルドスクリプトのエラーを手動で修正した内容
- AGP 8.0 から buildConfig がデフォルト false になったため、true に設定する
- @zztkm

## sora-andoroid-sdk-2024.2.0
Expand Down
6 changes: 6 additions & 0 deletions samples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ android {

buildFeatures {
compose true

// AGP 8.0 からデフォルトで false になった
// このオプションが true でないと、defaultConfig に含まれている
// buildConfigField オプションが無効になってしまうため、true に設定する
// 参考: https://developer.android.com/build/releases/past-releases/agp-8-0-0-release-notes#default-changes
buildConfig true
}

composeOptions {
Expand Down

0 comments on commit 9a4dc11

Please sign in to comment.