Rokt Demo application is a sample app built to showcase Rokt mobile SDK functionality. The purpose of this app is to showcase the functionality that Rokt provides in-app. The app features multiple pages with different placement examples to demonstrate the functionality of the Rokt mobile SDK.
- Sahil Suri - sahil.suri@rokt.com
- Danial Motahari - danial.motahari@rokt.com
Environment | Build |
---|---|
release |
The latest version of Android Studio is required. Follow these instructions to install or alternatively on Mac using brew:
brew install --cask android-studio
The project is configured to run on Android API 21 and above and compiled against API 31.
- Open Android Studio
- Open the project by selecting the project folder
- Wait for Gradle sync to finish (this could take a while the first time)
- Select a physical device or virtual device from the dropdown
- Click the green run button
To run all tests, select the rokt-demo-android [test]
run configuration and click the green run button.
If you can't find this configuration then you can run all the tests via the command line using
./gradlew test
.
Buildkite is used as the CI system https://buildkite.com/rokt/rokt-demo-android.
Buildkite pipelines are defined in .buildkite
directory.
It uses docker container for executing the build steps using the Fastlane build tool.
The docker image used for this version installs Java 11, and Android SDK version 30.
It can be found here: https://github.com/NedaRobatMeily/docker-image-java-11
- Update build
versionCode
andversionNumber
in build.gradle file - Commit & push
- Unblock the release step on Buildkite
- On google play console, under releases section, add release note and publish the version
The SDK can be released via the Mobile Release Pipeline. Follow the instructions in the Mobile Release Pipeline repo to release. You can still release the SDK manually by following the steps in the previous section.
This project is implemented based on the MVVM and repository patterns.
MVVM (Model-View-ViewModel) is an architectural pattern that serves to separate user interface logic from business/program logic.
- The Model layer provides the business logic of the application. In this case, it consists of multiple repositories that expose data sources to the ViewModel.
- The View layer consists of the UI elements that the user interacts with, which are represented by composable elements in this project.
- The ViewModel layer connects the Model and View layers. It transforms data from the Model layer and stores the UI state that is accessed by the View layer.
For example, when the user interacts with the View layer via the UI elements, events are sent to the ViewModel layer. Based on these events, the ViewModel can then access data from the Model layer through the repositories. Using this data, the ViewModel can update the UI state. As the View is observing this UI state, it can then automatically update the UI elements once the ViewModel changes the state.
This separation of responsibility between the three layers ultimately simplifies the project architecture and improves testability by reducing coupling.
This project contains data, di, model, ui, and utils packages.
data: contains repositories that expose data from network operations performed by RoktDemoService.
di: for dependency injection.
model: contains data classes that model data.
ui: contains the View and ViewModels
utils: contains shared utility functions used throughout the application
MainActivityViewModel contains an observable selectedTagId which is set from other pages in the application. The selectedTagId is observed in the MainActivity, where Rokt.Init() is called every time the tagId value is changed. This is because our application is a single Activity application, and Rokt.init requires an Activity to be passed in. All other Rokt SDK related calls happen in RoktExecutor.
In the ApplicationModule, change provideDemoRepository to return DemoLibraryRepositoryMockImpl and provideAboutRoktRepository to return AboutRoktRepositoryMockImpl.
They are defined under buildSrc/dependencies. For more information on kotlin_dsl visit: https://docs.gradle.org/current/userguide/kotlin_dsl.html
Copyright 2020 Rokt Pte Ltd
Licensed under the Rokt Software Development Kit (SDK) Terms of Use
Version 2.0 (the "License");
You may not use this file except in compliance with the License.
You may obtain a copy of the License at https://rokt.com/sdk-license-2-0/