-
Notifications
You must be signed in to change notification settings - Fork 7
MOBILE-707: demo update #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
3a94e1c
Location permissions
bryanlogan 6f4884b
Use newer library
bryanlogan 88d2a7e
Update timeout
bryanlogan 673669e
Detekt fixes
bryanlogan 874ecc6
Update app/src/main/java/com/fingerprintjs/android/fpjs_pro_demo/doma…
bryanlogan 846d4af
Update app/src/main/java/com/fingerprintjs/android/fpjs_pro_demo/doma…
bryanlogan bb35a08
Update MainActivity.kt
bryanlogan c15bbb6
Update MainActivity.kt
bryanlogan 1211439
Update app/src/main/java/com/fingerprintjs/android/fpjs_pro_demo/Main…
bryanlogan ad2bd9f
Update MainActivity.kt
bryanlogan f5c6b21
Update MainActivity.kt
bryanlogan 3149828
Update MainActivity.kt
bryanlogan 9d9aab4
Update MainActivity.kt
bryanlogan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
package com.fingerprintjs.android.fpjs_pro_demo | ||
|
||
import android.Manifest | ||
import android.animation.ObjectAnimator | ||
import android.content.pm.PackageManager | ||
import android.os.Build | ||
import android.os.Bundle | ||
import android.view.View | ||
import android.view.animation.AccelerateInterpolator | ||
import androidx.activity.ComponentActivity | ||
import androidx.activity.compose.setContent | ||
import androidx.activity.result.contract.ActivityResultContracts | ||
import androidx.core.animation.doOnEnd | ||
import androidx.core.app.ActivityCompat | ||
import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen | ||
import com.fingerprintjs.android.fpjs_pro_demo.ui.navigation.NavScreen | ||
import com.fingerprintjs.android.fpjs_pro_demo.ui.theme.AppTheme | ||
|
@@ -37,5 +41,40 @@ class MainActivity : ComponentActivity() { | |
NavScreen() | ||
} | ||
} | ||
|
||
checkLocationPermissions() | ||
} | ||
|
||
fun checkLocationPermissions() { | ||
if (isAnyLocationPermissionEnabled()) { | ||
// We have at least some location permission, so we can proceed with getVisitorId | ||
return | ||
} | ||
|
||
val locationPermissionRequest = registerForActivityResult( | ||
ActivityResultContracts.RequestMultiplePermissions() | ||
) { permissions -> | ||
// Whether they give us permission or not, we can now make the Fingerprint call | ||
} | ||
|
||
// Request permission | ||
|
||
locationPermissionRequest.launch( | ||
arrayOf( | ||
Manifest.permission.ACCESS_FINE_LOCATION, | ||
Manifest.permission.ACCESS_COARSE_LOCATION | ||
) | ||
) | ||
} | ||
|
||
private fun isAnyLocationPermissionEnabled(): Boolean { | ||
bryanlogan marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
return isPermissionGranted(Manifest.permission.ACCESS_FINE_LOCATION) || | ||
isPermissionGranted(Manifest.permission.ACCESS_COARSE_LOCATION) | ||
} | ||
|
||
private fun isPermissionGranted(permission: String): Boolean { | ||
return ActivityCompat.checkSelfPermission( | ||
this, | ||
permission | ||
) == PackageManager.PERMISSION_GRANTED | ||
} | ||
} |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.