运行了5+ Android SDK 中的HBuilder-Integrate-AS项目,里面有一个指纹识别插件,我分别在manifest.json 中配置了
"finger": {
"description": "指纹解锁"
},
然后在dcloud_properties.xml中配置了
<feature name="finger" value="com.example.H5PlusPlugin.FingerPlugin"/>
在AndroidManifest.xml中配置了
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
在index.html中引入了finger.js,写了一个button绑定了事件:
function test(){
plus.finger.checkFingerPrint(function(s){
alert(JSON.stringify(s))
},function(e){
alert(JSON.stringify(e))
})
}
function finger(){
plus.finger.callFingerPrint(function(s){
alert(JSON.stringify(s))
},function(e){
alert(JSON.stringify(e))
})
}
但是在红米note3上面显示 当前设备不支持指纹识别,是兼容性的问题吗?红米note3是有指纹识别的