Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #642 from TeamBeMe/release/1.1.1
Browse files Browse the repository at this point in the history
Merge release to devleop
  • Loading branch information
l2hyunwoo authored Apr 2, 2021
2 parents 3da9189 + 74ecf8e commit eb0f1a6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: BeMe Android Builder

on:
push:
branches: [ develop ]
branches:
- develop
- 'release/**'

defaults:
run:
Expand Down
10 changes: 10 additions & 0 deletions .idea/sonarIssues.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class AnswerActivity : BindingActivity<ActivityAnswerBinding>(R.layout.activity_
answerViewModel.registerAnswer(requestAnswerData)
delay(500)
val position = intent.getIntExtra("position", -1)
intent.putExtra("posittion", position)
intent.putExtra("position", position)
intent.putExtra("content", answerViewModel.answer.value)
setResult(RESULT_OK, intent)
finish()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ import com.google.firebase.ktx.Firebase
import com.teambeme.beme.R
import com.teambeme.beme.databinding.FragmentPermissionInfoBinding
import com.teambeme.beme.util.recordClickEvent
import dagger.hilt.android.AndroidEntryPoint

@AndroidEntryPoint
class PermissionInfoFragment : Fragment() {
private var _binding: FragmentPermissionInfoBinding? = null
private val binding get() = _binding!!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import com.teambeme.beme.R
import com.teambeme.beme.base.BindingActivity
import com.teambeme.beme.databinding.ActivitySignUpBinding
import com.teambeme.beme.util.StatusBarUtil
import dagger.hilt.android.AndroidEntryPoint

@AndroidEntryPoint
class SignUpActivity : BindingActivity<ActivitySignUpBinding>(R.layout.activity_sign_up) {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
Expand Down

0 comments on commit eb0f1a6

Please sign in to comment.