Issues: android/architecture-samples
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
/storage/emulated/0/Documents/DevToolsPro/source/Activation 20230513154816642/res/values--rUS/strings.xml
#948
opened May 14, 2023 by
scottwad
// ...
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MessageCard(Message("Android", "Jetpack Compose"))
}
}
}
data class Message(val author: String, val body: String)
@Composable
fun MessageCard(msg: Message) {
Text(text = msg.author)
Text(text = msg.body)
}
@Preview
@Composable
fun PreviewMessageCard() {
MessageCard(
msg = Message("Lexi", "Hey, take a look at Jetpack Compose, it's great!")
)
}
#946
opened May 7, 2023 by
scottwad
I am using androidGradlePlugin, which is 7.2.2. Why is it reporting red here
#943
opened Apr 28, 2023 by
qq921124136
[main] User input for add/edit screen is lost across process death
#890
opened Dec 6, 2022 by
Zhuinden
java.lang.IllegalStateException: Method addObserver must be called on the main thread
#879
opened Sep 30, 2022 by
cjacky475
gradlew test fails with "Unresolved reference: HiltTestActivity"
#868
opened Aug 16, 2022 by
dturner
Previous Next
ProTip!
Exclude everything labeled
bug with -label:bug.