AndroidManifest.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  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:exported="true"
  11. android:launchMode="singleTop"
  12. android:theme="@style/LaunchTheme"
  13. android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale"
  14. android:hardwareAccelerated="true"
  15. android:windowSoftInputMode="adjustResize">
  16. <!-- This keeps the window background of the activity showing
  17. until Flutter renders its first frame. It can be removed if
  18. there is no splash screen (such as the default splash screen
  19. defined in @style/LaunchTheme). -->
  20. <meta-data
  21. android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
  22. android:value="true" />
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN"/>
  25. <category android:name="android.intent.category.LAUNCHER"/>
  26. </intent-filter>
  27. </activity>
  28. <activity android:name="com.apptreesoftware.barcodescan.BarcodeScannerActivity"/>
  29. <meta-data
  30. android:name="flutterEmbedding"
  31. android:value="2" />
  32. </application>
  33. </manifest>