Skip to content

Commit c0bba56

Browse files
committed
[BOOK-45] chore: 임시 화면 구현
하단 GNB 메뉴에 사용할 임시 아이콘 추가
1 parent f3c3e20 commit c0bba56

File tree

32 files changed

+118
-13
lines changed

32 files changed

+118
-13
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
android:label="@string/app_name"
1212
android:roundIcon="@mipmap/ic_launcher_round"
1313
android:supportsRtl="true"
14-
android:theme="@style/Theme.BooketAndroid"
14+
android:theme="@style/Theme.Booket"
1515
tools:targetApi="31">
1616

1717
</application>

app/src/main/res/values/strings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

app/src/main/res/values/themes.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

build-logic/src/main/kotlin/AndroidLibraryConventionPlugin.kt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import com.android.build.gradle.LibraryExtension
22
import com.ninecraft.booket.convention.Plugins
3-
import org.gradle.api.Plugin
4-
import org.gradle.api.Project
53
import com.ninecraft.booket.convention.applyPlugins
64
import com.ninecraft.booket.convention.configureAndroid
5+
import org.gradle.api.Plugin
6+
import org.gradle.api.Project
77
import org.gradle.kotlin.dsl.configure
8+
import com.ninecraft.booket.convention.ApplicationConstants
89

910
internal class AndroidLibraryConventionPlugin : Plugin<Project> {
1011
override fun apply(target: Project) {
@@ -16,6 +17,10 @@ internal class AndroidLibraryConventionPlugin : Plugin<Project> {
1617

1718
extensions.configure<LibraryExtension> {
1819
configureAndroid(this)
20+
21+
defaultConfig.apply {
22+
targetSdk = ApplicationConstants.TARGET_SDK
23+
}
1924
}
2025
}
2126
}

app/src/main/res/drawable/ic_launcher_background.xml renamed to core/designsystem/src/main/res/drawable/ic_launcher_background.xml

File renamed without changes.

app/src/main/res/drawable/ic_launcher_foreground.xml renamed to core/designsystem/src/main/res/drawable/ic_launcher_foreground.xml

File renamed without changes.
File renamed without changes.

app/src/main/res/mipmap-anydpi/ic_launcher_round.xml renamed to core/designsystem/src/main/res/mipmap-anydpi/ic_launcher_round.xml

File renamed without changes.
File renamed without changes.

app/src/main/res/mipmap-hdpi/ic_launcher_round.webp renamed to core/designsystem/src/main/res/mipmap-hdpi/ic_launcher_round.webp

File renamed without changes.

0 commit comments

Comments
 (0)