2022-11-21 16:48:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2022-11-27 22:19:40 +01:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
2022-11-21 16:48:45 +01:00
|
|
|
<application>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".setupwizard.SetupWizardActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/title_activity_setup_wizard"
|
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-28 14:46:53 +01:00
|
|
|
<activity
|
|
|
|
android:name=".maintenance.activities.LogSettingActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
|
|
android:name=".maintenance.activities.PrefImportListActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/AppTheme" />
|
2022-11-21 16:48:45 +01:00
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|