blob: 60e2f1beeeb02f2c7d8280f5f7ed07e8b5884fcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.draco.buoy.repositories.constants
object ExternalProfileReceiverIntentConstants {
/**
* Intent key, can specify one of the available profiles
*/
const val KEY_PROFILE_NAME = "profile_name"
/**
* Intent key, can specify a string delimited by ',' with key=value pairs
*/
const val KEY_CONSTANTS = "constants"
}
|