-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from apphud/development
Development
- Loading branch information
Showing
16 changed files
with
419 additions
and
137 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package com.apphud.app | ||
|
||
object Constants { | ||
const val API_KEY = "app_DZzKAkuBWhe9nz3qeofJMU9PJezkxn" | ||
const val API_KEY = "app_4sY9cLggXpMDDQMmvc5wXUPGReMp8G" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.apphud.sdk | ||
|
||
data class ApphudError( | ||
override val message: String, | ||
/** | ||
* Additional error message | ||
* */ | ||
val secondErrorMessage: String? = null, | ||
/** | ||
* Additional error code | ||
* */ | ||
val errorCode: Int? = null | ||
) : Error(message) |
Oops, something went wrong.