# device_plugin **Repository Path**: phpstudy_poi/device_plugin ## Basic Information - **Project Name**: device_plugin - **Description**: 项目中设计到封装flutter插件的部分功能 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-01 - **Last Updated**: 2025-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目中使用到的蓝牙硬件,本项目再空闲时间会进行完善,目前只是一个demo ## 目前支持设备 华视电子 cvr100b (adnroid) 三诺血糖 开发中 艾科血糖 开发中 艾科血压 开发中 宝莱特血压 开发中 脉搏波血氧 开发中 体温计 开发中 ## so冲突,可以用android studio -> build ->analyze apk 查看apk具体支持的架构 build.gradle 中设置支持架构 defaultConfig { ndk { // 设置指定架构-打包的 时候会默认只打以下架构的整合包,缩小打包体积 abiFilters "armeabi-v7a",'arm64-v8a' } } 在 apply plugin: 'com.android.application' 前指定平台(处理模拟器崩溃) project.setProperty('target-platform', 'android-arm') -> 对应 armeabi-v7a project.setProperty('target-platform', 'android-arm64') -> 对应 arm64-v8a