Skip to content

Commit

Permalink
[fix]: Fix Merge Error
Browse files Browse the repository at this point in the history
  • Loading branch information
kez-lab committed Jan 4, 2024
1 parent 7756d74 commit f3e4b47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions app/src/main/java/com/hmh/hamyeonham/SampleActivity.kt
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
package com.hmh.hamyeonham

import android.content.Intent
import android.os.Bundle
import android.view.animation.Animation
import android.view.animation.AnimationUtils
import androidx.appcompat.app.AppCompatActivity
import androidx.core.splashscreen.SplashScreen
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
import com.hmh.hamyeonham.common.view.viewBinding
import com.hmh.hamyeonham.databinding.ActivitySampleBinding
import com.hmh.hamyeonham.statistics.StaticsActivity
import dagger.hilt.android.AndroidEntryPoint
import com.hmh.hamyeonham.feature.login.LoginActivity
import com.kakao.sdk.common.KakaoSdk
import com.hmh.hamyeonham.feature.main.MainActivity

@AndroidEntryPoint
class SampleActivity : AppCompatActivity() {
private lateinit var binding: ActivitySampleBinding
private val binding by viewBinding(ActivitySampleBinding::inflate)

override fun onCreate(savedInstanceState: Bundle?) {
binding = ActivitySampleBinding.inflate(layoutInflater)
super.onCreate(savedInstanceState)

val splashScreen = installSplashScreen()
initSplashAnimation(splashScreen)
setContentView(binding.root)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_sample.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
android:background="@color/white">

</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit f3e4b47

Please sign in to comment.