Skip to content

Commit

Permalink
Use scopes from local.properties on auth demo app's MainActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
michpohl committed Jun 17, 2024
1 parent 5d58402 commit 1fb8703
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ class MainActivity : ComponentActivity() {
// Make sure to provide your clientId and required credentials in local.properties
clientId = BuildConfig.TIDAL_CLIENT_ID,
clientSecret = BuildConfig.TIDAL_CLIENT_SECRET,
scopes = BuildConfig.TIDAL_CLIENT_SCOPES.split(" ").toSet(),
credentialsKey = STORAGE_KEY,
scopes = setOf("YOUR_SCOPES"),
enableCertificatePinning = true,
logLevel = NetworkLogLevel.BODY,
)
Expand Down

0 comments on commit 1fb8703

Please sign in to comment.