AndroidManifest.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.khmer9.sbcmain">
  5. <uses-permission android:name="android.permission.INTERNET" />
  6. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  7. <uses-permission android:name="android.permission.BLUETOOTH" />
  8. <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
  9. <meta-data
  10. android:name="firebase_crashlytics_collection_enabled"
  11. android:value="${enableCrashlytic}" />
  12. <application
  13. android:name="com.khmer9.sbcmain.app.App"
  14. android:allowBackup="false"
  15. android:hardwareAccelerated="true"
  16. android:icon="@mipmap/ic_launcher"
  17. android:label="@string/app_name"
  18. android:supportsRtl="true"
  19. android:theme="@style/AppTheme"
  20. android:usesCleartextTraffic="true"
  21. tools:targetApi="m">
  22. <activity
  23. android:name="com.khmer9.sbcmain.app.ShareActivity"
  24. android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
  25. android:label="@string/app_name"
  26. android:screenOrientation="sensorPortrait"
  27. android:windowSoftInputMode="adjustResize" />
  28. <activity
  29. android:name="com.khmer9.sbcmain.screen.login.LoginActivity"
  30. android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
  31. android:label="@string/app_name"
  32. android:screenOrientation="sensorPortrait"
  33. android:windowSoftInputMode="adjustResize" />
  34. <activity
  35. android:name="com.khmer9.sbcmain.screen.splash.SplashScreenActivity"
  36. android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
  37. android:exported="true"
  38. android:screenOrientation="sensorPortrait"
  39. android:windowSoftInputMode="adjustResize">
  40. <intent-filter>
  41. <action android:name="android.intent.action.MAIN" />
  42. <category android:name="android.intent.category.LAUNCHER" />
  43. </intent-filter>
  44. </activity>
  45. </application>
  46. </manifest>