Android ResId
6.75K subscribers
29 photos
161 links
The most important news and resources for Android developers

Want to become channel topic creator?
https://forms.gle/pgxCXoPMuHVFGjvNA
Download Telegram
Starting August 1, 2019, your apps published on Google Play will need to support 64-bit architectures.

https://youtu.be/E96vmWkUdgA

Docs:
https://developer.android.com/distribute/best-practices/develop/64-bit

๐Ÿ™„ How to test your app?

:: Command Line
# A successful install:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk Success

# If your APK does not have the 64-bit libraries:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk adb: failed to install YOUR_APK_FILE.apk
: Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]

# If your device does not support 64-bit, an emulator, for example:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk
ABI arm64-v8a not supported on this device

#GooglePlay #arm
Testing can seem to be a tax on development time.
However, as many seasoned developers have seen, proper automated testing can increase development velocity as the code base becomes bigger and more complex.
Continuous testing should give you confidence that the change you make wonโ€™t break your app.

https://android-developers.googleblog.com/2019/10/continuous-testing-with-new-android.html

#testing #Docker
Forwarded from Pas de Code
Google has released Android Code Search. Itโ€™s a tool for searching Android (and libraries) source code. It also knows how to navigate from one part of the code to another.

#aosp #code #search
๐Ÿคฏ1
Forwarded from Pas de Code
Looks like something dedicated to initialization of different components / libraries is coming to AndroidX.

#androidx #library
Google  today announced the first developer preview of Android 11, which is now available as system images for Googleโ€™s own Pixel devices, starting with the Pixel  2.

https://www.reddit.com/r/android_beta/comments/f6ep15/android_11_developer_preview_1_now_available/

#Android11
Forwarded from Android Broadcast EN
#DependencyInjection

A Dependency Injection Showdown

Choosing a dependency framework for your Android app is, a big decision, itโ€™s not something that you can easily replace later on. Comparison of popular JVM DI: Dagger 2, Koin, Toothpick, Kodein.
Forwarded from Android Broadcast EN
#AndroidStudio

Android Studio 3.6 released

A new stable version of the main Android developer tool has been released and it has brought the following improvements:
๐Ÿ‘‰ SplitView instead of Layout Preview (it got worse for me)
๐Ÿ‘‰ ViewBinding
๐Ÿ‘‰ Memory leak detection in the Memory Profiler (why? Is there LeakCanary)
๐Ÿ‘‰ Color Picker
๐Ÿ‘‰ Idea 2019.2
๐Ÿ‘‰ Improvements to โ€œApply Changesโ€
๐Ÿ‘‰ Android Gradle Plugin integration with Maven Publishing Plugin
๐Ÿ‘‰ R class now immediately generates bytecode instead of Java code, this speeds up kapt and incremental build
๐Ÿ‘‰ New utility for packing APK. Used by default for debug builds

There are many changes and all of them cannot be listed, but you can familiarize yourself with them in the full review
Kakao 2.3.0 released

Kakao is a PageObject pattern Kotlin DSL for Android UI testing built on the base of Espresso

What's new in the latest version:
๐Ÿ‘‰ ViewPager2 support added with KViewPager2
๐Ÿ‘‰ ChipGroup support added with KChipGroup
๐Ÿ‘‰ Spinner support added with KSpinner
๐Ÿ‘‰ Tint support added to KImageView
๐Ÿ‘‰ Dependencies' versions upgrade
๐Ÿ‘‰ Smaller fixes/improvements

Check out the library at GitHub and get familiar with the full chages here

To see some examples of what you can do with this library, you can read this Medium blog post

#Kakao #Testing
Forwarded from Android Broadcast EN
#Kotlin

Kotlin 1.3.70 released

๐Ÿ‘‰ The functionality of StringBuilder has been expanded
๐Ÿ‘‰ Part of the functionality on KClass now does not require kotlin-reflect dependency
๐Ÿ‘‰ Experimental and UseExperimental annotations renamed to OptIn and RequiresOptIn
๐Ÿ‘‰ Clock and ClockMark renamed to TimeSource and TimeMark
๐Ÿ‘‰ kotlin.collections.ArrayDeque was added
๐Ÿ‘‰ Collection Builders: buildList (), buildSet () and buildMap ()
๐Ÿ‘‰ New functions for collections: scan (), scanReduce ()
๐Ÿ‘‰ Kotlin now can generate type annotations at the JVM bytecode (target version 1.8+)
๐Ÿ‘‰ Improved .gradle.kts IDE Support
๐Ÿ‘‰ Debugger improvement
๐Ÿ‘‰ Improved Kotlin scripts, examples
Forwarded from Android Broadcast EN
โ€‹โ€‹#Fabric #COVID19

Fabric shutdown extended to Maโ€Œy 4, 2020

๐Ÿ‘‘The virus affects everything, even the deadlines for shutdown services. So Fabric shutdown was extended from March 31, 2020 to May 4, 2020(5 weeks)
โ€‹โ€‹โ€‹โ€‹Modern development is changing rapidly:
๐Ÿ‘‰ new technologies appear;
๐Ÿ‘‰ new libraries and their versions are released;
๐Ÿ‘‰ programming languages are changing;
๐Ÿ‘‰ experience is accumulating that changes approaches and recommendations in development;
๐Ÿ‘‰ device shapes change and become more powerful.

To keep track of everything, you need to read many articles, watch videos from conferences, attend meetups and conferences, follow the best developers on social networks.

Android Broadcast Telegram channel is a place where you can find a selection of the best materials android Android development in a compact format with a short overview and personal opinion of the author.
Android 11 announcement: the Beta Launch Show (June 3, 11AM ET)

https://youtu.be/gqJEcy57hA8

Event details
https://developer.android.com/android11

Android Beta Program
https://www.google.com/android/beta

#Android11 #Beta
Forwarded from Android Broadcast EN
#ViewBinding #Kotlin

Make Android View Binding great with Kotlin
2 min read, author Kirill Rozov

Android View Binding is a great feature of Android Gradle Plugin 3.6, which killed findViewById() and Butter Knife. But its proper use is not the most convenient thing.

The article considers how to use Kotlin Delegated Property to simplify this and what trick awaits in Fragment.viewLifecycleOwner
Today, weโ€™re releasing the alpha of Jetpack Compose, our modern UI toolkit designed to help you quickly and easily build beautiful apps across all Android platforms, with native access to the platform APIs.

https://android-developers.googleblog.com/2020/08/announcing-jetpack-compose-alpha.html

Manual how to setup it: https://developer.android.com/jetpack/compose/setup

#Jetpack #Compose