Android 12 is available in Developer Preview now. Here’s the timeline for release https://developer.android.com/about/versions/12/overview#timeline.
changes:
new gradle version with Android Studio 4.2.+
Links:
https://developer.android.com/about/versions/12/overview#timeline
App Behavioral changes:
https://developer.android.com/about/versions/12/behavior-changes-12…
Tutorial shows how to add “top bar” title app name to an Android Compose activity. Create function topBar() copy snippet below, change string “My Important Dates”.

@Composable
fun topBar() {
TopAppBar(title = {
Text(
text = "My Important Dates",
style = MaterialTheme.typography.h6,
textAlign = TextAlign.Center
)
})
}
Call…
How to push your local code to a new GitHub repo:
- Create a repo on GitHub.
- Follow GitHub instructions.
OR do below commands:
echo "# AndroidComposeAdMobSDK" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:AndreSand/AndroidComposeAdMobSDK.git
git push -u origin main…
Haven’t watched all the videos, but my favorite topics this year was Android Compose and all the Security improvement changes coming soon.
Cool Android permissions changes for Android 12 Sdk 31, no more asking user permissions to access pictures, cool new Photo Picker API
Compose session:
What’s new…