ylliX - Online Advertising Network

Fancy Filter | Android-Arsenal.com

An Android Library for applying easy, fast and effective 62 (will be added more) LUT filters to photos. With RenderScript, it is aimed to process the color spaces in the LUT and apply them to the picture in the form of a filter. What is LUT? The direct translation of LUT (“Lookup Table”) from English […]

JsonBroadcaster | Android-Arsenal.com

Update the UI state of your Android and iOS apps at runtime. Motivation Updating the UI State at runtime is a very useful tool for rapid prototyping and validation purposes. It also adds the benefit that it can be used by the whole testing team, be it developers, designers, quality assurance, etc. demo.mov How does […]

survey-compose | Android-Arsenal.com

Android library written in Jetpack Compose, containing a fully configurable survey/questionnaire screen. Gradle Step 1 : Add the JitPack repository to your build file dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { mavenCentral() maven { url ‘https://jitpack.io’ } } } Step 2 : Add the dependency implementation ‘com.github.zekierciyas:survey-compose:1.0.0’ Usage @Composable fun SurveyView() { var showMessage by remember { […]

MaterialStoryView | Android-Arsenal.com

Você pode ler em português (https://github.com/welbert6/MaterialStoryView/edit/master/ReadmePT.md) Screenshots Introduction MaterialStoryView is an Android library for implementing a story carousel, similar to those found on social networks like Instagram and Facebook. This library makes it easy to add a story viewing component to your Android application, allowing for quick and simple integration. ✅ Saves story as seen […]

slf4j-timber | Android-Arsenal.com

This is a library that allows pure Java / Kotlin modules or libraries using SLF4J as their logging framework to bridge on the Google Android platform in combination with Jake Wharton’s Timber logging utility. It’s based on the patrickfav/slf4j-timber project with a modern take using Kotlin and the latest version of SLF4J (currently v2.0.6). Usage […]

Deep Linking API | Android-Arsenal.com

In an Android app we can define URI patterns that map URI’s to activities using intent-filters. To find out more about this you should read this documentation provided by Google https://developer.android.com/training/app-links Once we have defined which URI’s are handled by our application in our manifest we can then inspect the URI of incoming link Intent’s […]

RangeBarChart | Android-Arsenal.com

⚡ Range bar chart library for Android using MPAndroidChart⚡ There were no charts in MPAndroidChart to show ranges. We were forced to show the range charts we wanted using a similarly capable candlestick chart. This library can be used when you want to create charts that can represent ranges such as weather and heart rate. […]

Jambo | Android-Arsenal.com

Jambo is an open source remote logging library. For those who would like to see their logs remotely on their android device Jambo is the library for you. Jambo installs a separate debug app for intercepting all logs called with the Jambo class. Installation • Usage • Contributing • Credits • License Locate your build.gradle.kts […]

AmazingSpinner | Android-Arsenal.com

Android Spinner support hint Adding to project Gradle Add below code to your root build.gradle file allprojects { repositories { maven { url ‘https://jitpack.io’ } } } And add the following dependency code to your module‘s build.gradle file. dependencies { implementation ‘com.github.Mamoon-Alhawamdeh:AmazingSpinner:${latest-version}” } Usage <com.google.android.material.textfield.TextInputLayout style=”@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:layout_marginLeft=”16dp” android:layout_marginRight=”16dp”> <com.rosemaryapp.amazingspinner.AmazingSpinner style=”@style/Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:hint=”hint”/> […]