anayltics works kinda

This commit is contained in:
geeksville 2020-01-22 09:28:59 -08:00
parent 8bcd652802
commit 7818e6ccd9
5 changed files with 72 additions and 2 deletions

View file

@ -12,11 +12,26 @@
<uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- for job intent service -->
<!--
This permission is required to allow the application to send
events and properties to Mixpanel.
-->
<uses-permission
android:name="android.permission.INTERNET" />
<!--
This permission is optional but recommended so we can be smart
about when to send data.
-->
<uses-permission
android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-feature
android:name="android.hardware.bluetooth_le"
android:required="true" />
<application
android:name=".MeshUtilApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@ -24,6 +39,9 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.mixpanel.android.MPConfig.DisableViewCrawler"
android:value="true" />
<!-- we need bind job service for oreo -->
<service
android:name=".SoftwareUpdateService"

View file

@ -0,0 +1,6 @@
package com.geeksville.meshutil
import com.geeksville.android.GeeksvilleApplication
class MeshUtilApplication : GeeksvilleApplication(null, "58e72ccc361883ea502510baa46580e3") {
}