Skip to content

Commit

Permalink
Merge pull request #23 from SSU-Plector/feat/#21-logo-splash
Browse files Browse the repository at this point in the history
[Feat/#21 logo-splash]: 로고, 소개 사진 파일 추가 및 소개 화면 구현
  • Loading branch information
kangyuri1114 authored Apr 20, 2024
2 parents fdebbcf + ffded66 commit 716d62d
Show file tree
Hide file tree
Showing 47 changed files with 306 additions and 484 deletions.
3 changes: 1 addition & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ dependencies {
implementation(project(":core:designsystem"))
implementation(project(":core:common"))
implementation(project(":feature:projects"))
implementation(project(":feature:mypage"))

KotlinDependencies.run {
implementation(kotlin)
Expand Down Expand Up @@ -120,4 +119,4 @@ dependencies {
implementation(composeMaterial3)
implementation(composeTooling)
}
}
}
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:icon="@drawable/logo_olive_rotational"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:roundIcon="@drawable/logo_olive_rotational"
android:supportsRtl="true"
android:theme="@style/Theme.SSUPlectorAndroid"
tools:targetApi="31">
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/com/zucchini/ssuplector/InitActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.zucchini.ssuplector
import android.content.Intent
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import com.zucchini.projects.IntroduceActivity
import com.zucchini.projects.MainActivity
import com.zucchini.ssuplector.databinding.ActivityInitBinding
import dagger.hilt.android.AndroidEntryPoint
Expand All @@ -15,7 +16,7 @@ class InitActivity : AppCompatActivity() {
binding = ActivityInitBinding.inflate(layoutInflater)
super.onCreate(savedInstanceState)
setContentView(binding.root)
startActivity(Intent(this, MainActivity::class.java))
startActivity(Intent(this, IntroduceActivity::class.java))
finish()
}
}
Binary file added app/src/main/res/drawable/logo_leaf_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/logo_leaf_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/logo_olive_vertical.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<string name="app_name">SSUPlector</string>
<string name="app_name">슈플렉터</string>
</resources>
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ object ThirdPartyDependencies {

const val flexbox = "com.google.android.flexbox:flexbox:${Versions.flexboxVersion}"
const val circleImageView = "de.hdodenhof:circleimageview:${Versions.circleImageViewVersion}"
const val dotIndicator = "com.tbuonomo:dotsindicator:${Versions.dotIndicatorVersion}"
}

object ClassPathPlugins {
Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/java/com/zucchini/buildsrc/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ object Versions {
const val androidTestVersion = "1.1.2"
const val flexboxVersion = "3.0.0"
const val circleImageViewVersion = "3.1.0"
const val dotIndicatorVersion = "5.0"

val javaVersion = JavaVersion.VERSION_17
const val jvmVersion = "17"
Expand Down
1 change: 0 additions & 1 deletion feature/devInfo/.gitignore

This file was deleted.

94 changes: 0 additions & 94 deletions feature/devInfo/build.gradle.kts

This file was deleted.

Empty file removed feature/devInfo/consumer-rules.pro
Empty file.
21 changes: 0 additions & 21 deletions feature/devInfo/proguard-rules.pro

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions feature/devInfo/src/main/AndroidManifest.xml

This file was deleted.

8 changes: 0 additions & 8 deletions feature/devInfo/src/main/res/values/strings.xml

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion feature/mypage/.gitignore

This file was deleted.

92 changes: 0 additions & 92 deletions feature/mypage/build.gradle.kts

This file was deleted.

Empty file removed feature/mypage/consumer-rules.pro
Empty file.
21 changes: 0 additions & 21 deletions feature/mypage/proguard-rules.pro

This file was deleted.

Loading

0 comments on commit 716d62d

Please sign in to comment.