The QR Code Scanner package for Appeto SDK.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

45 строки
2.1 KiB

  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="net.touchcapture.qr.flutterqrexample">
  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. <!-- io.flutter.app.FlutterApplication is an android.app.Application that
  9. calls FlutterMain.startInitialization(this); in its onCreate method.
  10. In most cases you can leave this as-is, but you if you want to provide
  11. additional functionality it is fine to subclass or reimplement
  12. FlutterApplication and put your custom class here. -->
  13. <application
  14. android:label="flutter_qr_example"
  15. android:icon="@mipmap/ic_launcher">
  16. <activity
  17. android:name=".MainActivity"
  18. android:launchMode="singleTop"
  19. android:theme="@style/LaunchTheme"
  20. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
  21. android:hardwareAccelerated="true"
  22. android:windowSoftInputMode="adjustResize">
  23. <!-- Specify that the launch screen should continue being displayed -->
  24. <!-- until Flutter renders its first frame. -->
  25. <meta-data
  26. android:name="io.flutter.embedding.android.SplashScreenDrawable"
  27. android:resource="@drawable/launch_background" />
  28. <!-- Theme to apply as soon as Flutter begins rendering frames -->
  29. <meta-data
  30. android:name="io.flutter.embedding.android.NormalTheme"
  31. android:resource="@style/NormalTheme"
  32. />
  33. <meta-data
  34. android:name="flutterEmbedding"
  35. android:value="2" />
  36. <intent-filter>
  37. <action android:name="android.intent.action.MAIN"/>
  38. <category android:name="android.intent.category.LAUNCHER"/>
  39. </intent-filter>
  40. </activity>
  41. </application>
  42. </manifest>