2021-05-28T21:43:59.222+0900 [LIFECYCLE] [class org.gradle.internal.buildevents.TaskExecutionLogger] > Task :app:kaptDebugKotlin FAILED
2021-05-28T21:43:59.222+0900 [DEBUG] [org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter] Putting task artifact state for task ':app:kaptDebugKotlin' into context took 0.0 secs.
2021-05-28T21:43:59.238+0900 [DEBUG] [org.gradle.api.internal.artifacts.ivyservice.resolveengine.DefaultArtifactDependencyResolver] Resolving configuration ':app:_classStructurekaptDebugKotlin'
2021-05-28T21:43:59.239+0900 [DEBUG] [org.gradle.api.internal.artifacts.ivyservice.modulecache.ResolvedArtifactCaches] Reusing in-memory cache for repo 'Google' [11cd36a7dcab7d14d0c14c5e6c7582e3].
2021-05-28T21:43:59.239+0900 [DEBUG] [org.gradle.api.internal.artifacts.ivyservice.modulecache.ResolvedArtifactCaches] Reusing in-memory cache for repo 'BintrayJCenter' [edb68b65d2dd9b547bbf59d703899938].
2021-05-28T21:43:59.239+0900 [DEBUG] [org.gradle.api.internal.artifacts.ivyservic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| └── 4mation_test | |
| ├── rooms | |
| │ ├── test | |
| │ └── mania | |
| │ ├── createdAt | |
| │ ├── creator | |
| │ ├── participant | |
| │ ├── lastMessage | |
| │ │ ├── from |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <플레이 스토어에서 알려준 방법> | |
| 1. 인터넷으로 원격 설치해보기 (플레이스토어에서 폰의 구글아이디로 로그인해서) | |
| 2. Play 스토어 앱의 캐시 및 데이터 삭제 | |
| 채팅으로 안내해주신 글을 복사,붙여넣기한 부분입니다. | |
| - 만약 고객님께서 기기를 가지고 계셨다면 저는 Play 스토어 업데이트 버전 확인 및 Play 스토어 앱 캐시 및 데이터 삭제 등을 진행 하거나, 보조 계정의 문제일 경우도 있어 이 부분을 확인 할 수도 있습니다. | |
| 아니면 Play 스토어 앱의 업데이트를 삭제하고 재 설치하는 방법까지는 지원이 가능합니다. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Composable | |
| fun LoginScreen( | |
| navController: NavHostController, | |
| modifier: Modifier = Modifier, | |
| viewModel: ApiViewModel, | |
| context: Context | |
| ) { | |
| var id by remember { | |
| mutableStateOf("") | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.content.Context | |
| import android.widget.Button | |
| import android.widget.EditText | |
| import android.widget.TextView | |
| import androidx.arch.core.executor.testing.InstantTaskExecutorRule | |
| import androidx.constraintlayout.widget.ConstraintLayout | |
| import androidx.fragment.app.Fragment | |
| import androidx.navigation.fragment.NavHostFragment | |
| import androidx.navigation.fragment.findNavController | |
| import androidx.test.core.app.ApplicationProvider |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @HiltAndroidTest | |
| @RunWith(RobolectricTestRunner::class) | |
| class PhoneSettingFragmentUnitTest { | |
| @get:Rule | |
| val hiltRule = HiltAndroidRule(this) | |
| val scenario by lazy { launchActivity<SettingActivity>() } | |
| val context = ApplicationProvider.getApplicationContext<Context>() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import UIKit | |
| class AutoHeightCellVC: UIViewController { | |
| var collectionView: UICollectionView! | |
| var langList = Dummy.shared.getRandomLangList() | |
| let cellId = "cellId" | |
| override func viewDidLoad() { | |
| super.viewDidLoad() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.content.Context | |
| import android.graphics.Canvas | |
| import android.graphics.Paint | |
| import android.graphics.Paint.ANTI_ALIAS_FLAG | |
| import android.graphics.Typeface | |
| import android.text.Layout | |
| import android.text.StaticLayout | |
| import android.text.TextPaint | |
| import android.view.View |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.graphics.Canvas | |
| import android.graphics.Color | |
| import android.util.Log | |
| import android.view.View | |
| import android.view.ViewGroup | |
| import android.widget.TextView | |
| import androidx.constraintlayout.widget.ConstraintLayout | |
| import androidx.recyclerview.widget.RecyclerView | |
| import com.example.sample.R |
OlderNewer