Skip to content

Instantly share code, notes, and snippets.

View PatrickKuijpers's full-sized avatar

Patrick PatrickKuijpers

  • 9292
View GitHub Profile
@PatrickKuijpers
PatrickKuijpers / AndroidManifest.xml
Created March 23, 2020 15:03 — forked from Venryx/AndroidManifest.xml
Record audio on Android in the background (even when screen is off)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.myapp">
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">
<service android:name=".ForegroundService" android:enabled="true" android:exported="true"></service>
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"