React Native Android TaskDescription
Allows configuration of the Android TaskDescription, allowing you to change the background color and text of the TaskDescription shown on the recent apps Overview Cards. Changing the icon is not yet supported.
Examples
Change the color
Change the text
Change color and text
Installation and setup
Install
IMPORTANT: for RN <= 0.28, please use version 0.2.0 and follow the README installation and usage instructions from that version, ie npm install --save react-native-android-taskdescription@0.2.0
Setup
Option 1 (recommended): Automatically
After installing, run:
Option 2: Manually
Update android/settings.gradle
...
include ':react-native-android-taskdescription'
project(':react-native-android-taskdescription').projectDir = new File(settingsDir, '../node_modules/react-native-android-taskdescription/android')
Update android/app/build.gradle
...
dependencies {
...
compile project(':react-native-android-taskdescription')
}