Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.example.touchdemonstrator">
  3. <!-- The INTERNET permission is required for development. Specifically,
  4. flutter needs it to communicate with the running application
  5. to allow setting breakpoints, to provide hot reload, etc.
  6. -->
  7. <uses-permission android:name="android.permission.INTERNET"/>
  8. <uses-permission android:name="android.permission.VIBRATE"/>
  9. <uses-permission android:name="android.permission.WAKE_LOCK" />
  10. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  11. calls FlutterMain.startInitialization(this); in its onCreate method.
  12. In most cases you can leave this as-is, but you if you want to provide
  13. additional functionality it is fine to subclass or reimplement
  14. FlutterApplication and put your custom class here. -->
  15. <application
  16. android:name="io.flutter.app.FlutterApplication"
  17. android:label="Touch Demonstrator"
  18. android:icon="@mipmap/launcher_icon">
  19. <activity
  20. android:name=".MainActivity"
  21. android:launchMode="singleTop"
  22. android:theme="@style/LaunchTheme"
  23. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
  24. android:hardwareAccelerated="true"
  25. android:windowSoftInputMode="adjustResize">
  26. <!-- This keeps the window background of the activity showing
  27. until Flutter renders its first frame. It can be removed if
  28. there is no splash screen (such as the default splash screen
  29. defined in @style/LaunchTheme). -->
  30. <meta-data
  31. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  32. android:value="true" />
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN"/>
  35. <category android:name="android.intent.category.LAUNCHER"/>
  36. </intent-filter>
  37. </activity>
  38. </application>
  39. </manifest>