leakcanary
Here are 70 public repositories matching this topic...
-
Updated
Aug 17, 2021 - Java
An app performance monitor(APM) , like "Android Studio profiler", you can easily monitor the performance of your app real time in browser
-
Updated
Nov 7, 2021 - Java
-
Updated
Jun 23, 2020
Some common patterns of memory leaks in Android development and how to fix/avoid them
-
Updated
Aug 19, 2018 - Java
Kotlin+模块化+响应式+MVVM 实现的风格简约、代码优雅的WanAndroid客户端
-
Updated
Nov 26, 2020 - Kotlin
*BA DUM TSSS*
-
Updated
Nov 14, 2021 - Kotlin
-
Updated
Jun 7, 2021 - Java
Clean MVP Architecture with Dagger2 + Retrofit2 + Mockito + Fresco + EasiestGenericRecyclerAdapter using Kotlin. Added Unit Tests(Kotlin Tests)!
-
Updated
Nov 28, 2017 - Kotlin
This repository contains sample code. Its purpose being, to quickly demonstrate Android and software development in general, clean code, best practices, testing and all those other must know goodies.
-
Updated
Dec 18, 2021 - Kotlin
一个基于Android MVP的简单明了的指引性通用架构,目的是帮助更多的开发者去全面了解实践开发相关的各种技术,快速搭建属于自已的APP。这个项目涉及到如下技术的实际应用:1、MVP 2、网络请求(Novate基于rxjava,okhttp,retrofit封装架构)3、DbFlow(可保存文件入SD卡) 4、6.0权限申请 5、XRecyclerView 6、万能Adapter7、异常处理 8、日志打印 9、屏幕适配 10、代码混淆 11、多渠道打包 12、内存泄露检测 13、热修复 14、升级更新 15、极光推送 工程更新完善中……欢迎关注 @特别感谢ZJ.Y的Logo支持。
-
Updated
Aug 11, 2018 - Java
Search eshop game prices in different regions and remind when discounting. Use androidx library instead of android support library.
-
Updated
May 15, 2019 - Kotlin
Debug menu for happy android dev
-
Updated
Apr 12, 2019 - Java
an android project for now fashion open source framework
-
Updated
May 20, 2017 - Java
Describe the bug
Images don't get deleted on deleting marker. Only the Uri gets deleted but not the actual image in the disk thus leading to duplicates and waste of space.
To Reproduce
Steps to reproduce the behavior:
- Add drawing
- Delete drawing
or - Add Marker with images
- Delete marker.
Expected behavior
On deletion of drawing > All drawing image and all nested
A sample project in Kotlin to demonstrate AndroidX, MVVM, Coroutines, Hilt, Room, Data Binding, View Binding, Retrofit, Moshi, Leak Canary and Repository pattern.
-
Updated
May 13, 2021 - Kotlin
A tiny foursquare which implemented using Foursquare APIs ,Koin, Coroutines, Moshi, Room, Retrofit, ViewBinding and Google play services location
-
Updated
Mar 12, 2021 - Kotlin
Stocks app with android arch components, rxjava, dagger 2, data binding, retrofit and mote
-
Updated
Dec 1, 2018 - Kotlin
A news app based on the guardian api.
-
Updated
Jul 1, 2020 - Java
This repository contains sample code. Its purpose being, to quickly demonstrate Android and software development in general, clean code, best practices, testing and all those other must know goodies.
-
Updated
Sep 18, 2018 - Kotlin
A photo viewer app for demonstrating: Master/Detail Flow + Persistence + Dagger + MVP
-
Updated
Dec 16, 2017 - Java
Just for fun
-
Updated
Apr 21, 2019 - Java
MVP+Dagger2+Retrofit2+RxJava2+热修复...... MJWeather
-
Updated
Jul 11, 2017 - Java
OpenClassrooms Project 7 : An Android news app that fetches news from The New York Times API.
-
Updated
Apr 25, 2020 - Java
目前在用的一个整合了大量主流开源项目高度可配置化的 Android MVP 快速集成框架——MVPArms,包含 MVP+Dagger2+Retrofit+OkHttp+RxJava2 等,及封装的常用工具类,快速开发,提高效率。
-
Updated
May 8, 2020 - Kotlin
Submission MADE(Menjadi Android Developer Expert) ke 2(final) Dicoding
-
Updated
Feb 18, 2021 - Kotlin
This repository contains sample code. Its purpose being, to quickly demonstrate Android and software development in general, clean code, best practices, testing and all those other must know goodies.
-
Updated
Sep 23, 2018 - Kotlin
A sample github app built with MVVM and Architecture Components using Dagger2, RxJava, Retrofit, OkHttp
-
Updated
Dec 18, 2017 - Kotlin
MVP Architecture
-
Updated
Mar 19, 2018 - Java
Improve this page
Add a description, image, and links to the leakcanary topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the leakcanary topic, visit your repo's landing page and select "manage topics."


Problem description
TvToast displays a custom Toast on Android TV devices. It does so by modifying the
Toast.getView()'s message TextView.On Android 30+ it is no longer allowed to access toast's view via
getView()and it led to crashes (see #2161). Cust