This file contains hidden or 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
| { "urlname": "YOUR URL PATH here, for https://www.meetup.com/swmobile the urlname is swmobile" } |
This file contains hidden or 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
| import android.content.Context | |
| import android.os.Build | |
| import android.os.UserManager | |
| // Enum to represent the user profile types | |
| enum class UserProfile { | |
| MAIN_USER, | |
| MANAGED_PROFILE, | |
| OTHER_PROFILE, | |
| UNKNOWN |
This file contains hidden or 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
| #!/bin/sh | |
| echo "Running git pre-commit hook..." | |
| echo "Checking if any kotlin files have changed..." | |
| # Determine the platform | |
| UNAME=$(uname) | |
| # Exit early if no Kotlin files have changed. |
OlderNewer