AndroidManifest.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.yubo.flutterosc">
  3. <uses-permission android:name="android.permission.INTERNET"/>
  4. <uses-permission android:name="android.permission.CAMERA" />
  5. <application
  6. android:label="flutter_osc"
  7. android:icon="@mipmap/ic_launcher">
  8. <activity
  9. android:name=".MainActivity"
  10. android:launchMode="singleTop"
  11. android:theme="@style/LaunchTheme"
  12. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale"
  13. android:hardwareAccelerated="true"
  14. android:windowSoftInputMode="adjustResize">
  15. <!-- This keeps the window background of the activity showing
  16. until Flutter renders its first frame. It can be removed if
  17. there is no splash screen (such as the default splash screen
  18. defined in @style/LaunchTheme). -->
  19. <meta-data
  20. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  21. android:value="true" />
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN"/>
  24. <category android:name="android.intent.category.LAUNCHER"/>
  25. </intent-filter>
  26. </activity>
  27. <activity android:name="com.apptreesoftware.barcodescan.BarcodeScannerActivity"/>
  28. <meta-data
  29. android:name="flutterEmbedding"
  30. android:value="2" />
  31. </application>
  32. </manifest>