<?xml version="1.0" encoding="utf-8"?>
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
android:sharedUserId="android.uid.system"
|
package="com.fwupgrade.saymanss">
|
|
<!-- write data to SDCard permission -->
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<application
|
android:name=".WDApplication"
|
android:allowBackup="true"
|
android:icon="@mipmap/ic_launcher"
|
android:label="@string/app_name"
|
android:supportsRtl="true"
|
android:theme="@style/AppTheme">
|
|
<service android:name=".FwUpgradeService" android:exported="true"/>
|
</application>
|
|
</manifest>
|