feat: add MeshServiceExample project to repo (#2038)

Co-authored-by: niccellular <79813408+niccellular@users.noreply.github.com>
This commit is contained in:
James Rich 2025-06-06 20:43:32 +00:00 committed by GitHub
parent 833e6f04dd
commit c757224269
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 1874 additions and 2 deletions

View file

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="com.geeksville.mesh.permission.BIND_MESH_SERVICE" />
<queries>
<package android:name="com.geeksville.mesh" />
</queries>
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MeshServiceExample"
tools:targetApi="31"
tools:replace="android:allowBackup">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>