AndroidManifest.xml 736 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.kdanmobile.kdanloginregisterui">
  4. <application>
  5. <activity
  6. android:name=".LoginBActivity"
  7. android:exported="${isDebug}"
  8. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  9. <activity
  10. android:name=".RegisterBActivity"
  11. android:exported="${isDebug}"
  12. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  13. <activity
  14. android:name=".LoginAActivity"
  15. android:exported="${isDebug}"
  16. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  17. </application>
  18. </manifest>