1 package host.exp.exponent.utils
2 
3 import host.exp.exponent.generated.ExponentBuildConstants
4 import org.json.JSONObject
5 
6 object TestConfig {
getnull7   fun get(): JSONObject {
8     return try {
9       JSONObject(ExponentBuildConstants.TEST_CONFIG)
10     } catch (e: Throwable) {
11       JSONObject()
12     }
13   }
14 }
15