Skip to content

Commit

Permalink
Fix for Finger print device not working in Android 30+
Browse files Browse the repository at this point in the history
  • Loading branch information
taruneshgupta committed Sep 7, 2021
1 parent 0ae901e commit 292f4fc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
compileSdkVersion 30
buildToolsVersion "30.0.2"

defaultConfig {
applicationId "in.eko.uidai_rdservice_manager_lib"
minSdkVersion 16
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"

Expand Down
6 changes: 3 additions & 3 deletions uidai-rdservice-manager-lib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
compileSdkVersion 30
buildToolsVersion "30.0.2"

defaultConfig {
minSdkVersion 16
targetSdkVersion 29
targetSdkVersion 30
versionCode 2
versionName "1.3.0"

Expand Down
10 changes: 9 additions & 1 deletion uidai-rdservice-manager-lib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.eko.uidai_rdservice_manager_lib" />
package="in.eko.uidai_rdservice_manager_lib" >

<queries>
<intent>
<action android:name="in.gov.uidai.rdservice.fp.INFO" />
</intent>
</queries>

</manifest>

0 comments on commit 292f4fc

Please sign in to comment.