Android
Android runtime for Rive
Last updated
Android runtime for Rive
Last updated
This article is out of date! Find the new version here.
This guide documents how to get started using the Android runtime library. Rive runtime libraries are open-source. The source is available in its GitHub repository. This library contains an API for Android apps to easily integrate Rive assets.
You can run our Android example app from the Rive GitHub repository.
Open the cloned folder in Android Studio and select the app
configuration and target device. Ensure that the build variant is set to preview
(default) by opening the menu Build - Select Build Variant...
and selecting the preview
variant for app
.
The other build variants are for development purposes and require additional configuration, see CONTRIBUTING.MD.
Follow the steps below for a quick start on integrating Rive into your Android app.
Add the following dependencies to your build.gradle
file in your project:
Rive needs to initialize its runtime when your app starts.
It can be done via an initializer that does this for you automatically. The initialization provider can be set up directly in your app's manifest file:
Otherwise this can be achieved by calling the initializer in your code:
If you want to initialize Rive yourself, this can be done in code:
The simplest way to get a Rive animation into your application is to include it as part of a layout. The following will consist of the Rive file loaded from the raw resources and auto-play its first animation. This assumes you have taken a downloaded .riv
file (i.e off_road_car_blog.riv
) and placed it in your raw resources folder.
Another way to load a Rive file in is by referencing the URL where the asset lives (see Internet Permissions section below for an extra step in setup):
When setting your context views, this might look like
If you're retrieving Rive files over a network, your app will need permission to access the internet:
Note that this isn't necessary if you include the files in your Android project and load these in as a raw resource.
See subsequent Runtime pages to learn how to control animation playback, state machines, and more.
Github: https://github.com/rive-app/rive-android Examples: https://github.com/rive-app/rive-android/tree/master/app/src/main/java/app/rive/runtime/example