Posts

Showing posts with the label Intro Slider

Intro Slider for your Android App

Image
AppIntro is an Android Library that helps you make a cool intro for your app, like the ones in Google apps. Watch the demo video on YouTube Usage Basic usage Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories: allprojects { repositories { .. . maven { url ' https://jitpack.io ' } } } Add the dependency Please note that AppIntro supports Android X . If you haven't migrated yet, you probably want to use a previous version of the library that uses the old Support Library packages (or try Jetifier Reverse mode ). dependencies { // AndroidX Capable version implementation ' com.github.AppIntro:AppIntro:5.1.0 ' // *** OR *** // Support Library compatibility version implementation ' com.github.AppIntro:AppIntro:4.2.3 ' } Create a new Activity that extends AppIntro : public class IntroActiv...