Skip to content
Snippets Groups Projects
Unverified Commit 7ca70139 authored by mueller-ma's avatar mueller-ma Committed by GitHub
Browse files

Add "installLocation" to Manifest (#983)

> Though this does not change the default behavior, it explicitly states that your application should only be installed on the internal storage and serves as a reminder to you and other developers that this decision has been made.

from https://developer.android.com/guide/topics/data/install-location



The removed code has been disabled four years ago and we don't use
Analytics anymore.

Signed-off-by: default avatarmueller-ma <mueller-ma@users.noreply.github.com>
parent 6270fa74
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openhab.habdroid">
package="org.openhab.habdroid"
android:installLocation="internalOnly">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
......@@ -94,8 +95,5 @@
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
<!-- This is temp disabled because of a bug in GMS 6.5
<meta-data android:name="com.google.android.gms.analytics.globalConfigResource"
android:resource="@xml/global_tracker" /> -->
</application>
</manifest>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment