-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: updated sample to use local.properties. (#405)
feat: added secondary analytics instance. feat: added buttons for secondary analytics.
- Loading branch information
Showing
7 changed files
with
286 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 9 additions & 4 deletions
13
...mple-kotlin-android/src/main/kotlin/com/rudderstack/android/sampleapp/analytics/Values.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
package com.rudderstack.android.sampleapp.analytics | ||
|
||
const val WRITE_KEY = "WRITE_KEY" | ||
const val DATA_PLANE_URL = "DATA_PLANE_URL" | ||
const val CONTROL_PLANE_URL = "CONTROL_PLANE_URL" | ||
const val BASE_URL = "BASE_URL" | ||
import com.rudderstack.android.sampleapp.BuildConfig | ||
|
||
const val WRITE_KEY = BuildConfig.WRITE_KEY | ||
const val DATA_PLANE_URL = BuildConfig.DATA_PLANE_URL | ||
const val CONTROL_PLANE_URL = BuildConfig.CONTROL_PLANE_URL | ||
const val WRITE_KEY_SECONDARY = BuildConfig.WRITE_KEY_SECONDARY | ||
const val DATA_PLANE_URL_SECONDARY = BuildConfig.DATA_PLANE_URL_SECONDARY | ||
const val CONTROL_PLANE_URL_SECONDARY = BuildConfig.CONTROL_PLANE_URL_SECONDARY | ||
const val METRICS_BASE_URL = "BASE_URL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.