31 skills found · Page 1 of 2
johncarl81 / Parceler:package: Android Parcelables made easy through code generation.
mcharmas / Android Parcelable Intellij PluginIntelliJ Plugin for Android Parcelable boilerplate code generation.
frankiesardo / Auto ParcelAndroid Parcelable models made easy
rharter / Auto Value ParcelAn Android Parcelable extension for Google's AutoValue.
patloew / CountriesAn example Android app using Retrofit, Realm, Parceler, Dagger and the MVVM pattern with the data binding lib.
grandstaish / PaperparcelAuto-generate Parcelable implementations for Java and Kotlin
michalbednarski / LeakValueExploit for CVE-2022-20452, privilege escalation on Android from installed app to system app (or another app) via LazyValue using Parcel after recycle()
baoyongzhang / ParcelableGeneratorA line of code to get Parcelable. Android Parcelable models made easy
nekocode / Android Parcelable Intellij Plugin KotlinPlugin which generates Android Parcelable boilerplate code for kotlin's class.
dallasgutauckis / ParcelablerAn Android Parcelable implementation creator
hoc081098 / Kmp Viewmodel🔆 Kotlin Multiplatform ViewModel. Kotlin Multiplatform MVVM. Common/Shared ViewModel in Kotlin Multiplatform - A Kotlin Multiplatform library that provides shared MVVM for UI applications. Components are lifecycle-aware on Android. Supports Android Parcelable, Kotlin Parcelize, AndroidX SavedStateHandle for restoring state after process death.
HouBin506 / SocketPushClient最近项目中要求做推送,基于内网的。由于工期不是很紧,需求不是很严格,所以放弃了使用三方的推送框架,基于Socket自己写了消息推送功能(服务端+android端)。服务器端使用java,客户端使用Android。本人是做Android开发的,所以demo重点介绍客户端的一些代码,包括Socket的TCP长连接及发消息,Service如何不被轻易杀死,通过aidl实现界面实时与Service的通信,可以在界面上控制Socket的连接与断开以及发消息,并采用了Parcelable对象实现aidl传参
foxykeep / ParcelableCodeGeneratorA code generator to create Android Parcelable classes
chRyNaN / Serialization ParcelableAndroid Parcelable support for the Kotlinx Serialization library.
pwnipc / BadParcelCVE-2023-20963 PoC (Android WorkSource parcel/unparcel logic mismatch)
icerockdev / Moko Parcelize@Parcelize support for mobile (android & ios) Kotlin Multiplatform development
michalbednarski / ThisSeemsWrongWriteup and exploit for CVE-2024-49746: Android's Parcel::continueWrite closing File Descriptors that are later used
jparkie / HawleyRetainerAn Android annotation processing and code generation library to retain complex objects which cannot be parceled nor serialized into a Bundle across configuration changes.
Zhuinden / State Bundle[ACTIVE] A non-Android Parcelable replacement for Bundle.
awadalaa / Android Global ParcelableSerialization in Java was far too slow for Android, so they created the Parcelable class that android developers use to serialize data. The Parcelable approach requires that you explicitly serialize the members of your class, but in the end, you get a much faster serialization of your objects. The problem is you have to do this with every class you create. In a large project with many classes with many objects this becomes tedious violating the rules of code reusability. The solution is to create the Global Parcelable class that all other classes can extend.