15 lines
421 B
XML
15 lines
421 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
package="com.airkoon.cellsys_rx" >
|
||
|
|
|
||
|
|
<uses-sdk android:minSdkVersion="24" />
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||
|
|
|
||
|
|
<application>
|
||
|
|
|
||
|
|
<!-- MQTT 服务 -->
|
||
|
|
<service android:name="org.eclipse.paho.android.service.MqttService" />
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|