AndroidManifest.xml 968 B

12345678910111213141516171819202122232425262728
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.artncore.apps.ic_wallpad.service.log"
  3. android:versionCode="24"
  4. android:versionName="2022.01.04.01">
  5. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  6. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  7. <application
  8. android:allowBackup="true"
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="@string/app_name"
  11. android:theme="@style/AppTheme" >
  12. <service
  13. android:name=".LogOutputService"
  14. android:enabled="true"
  15. android:exported="true"
  16. android:process=":remote"
  17. >
  18. <intent-filter>
  19. <action android:name="com.artncore.apps.ic_wallpad.service.log.remotestub.RemoteInterface" />
  20. </intent-filter>
  21. </service>
  22. </application>
  23. </manifest>