AndroidManifest.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ownCloud Android client application
  4. Copyright (C) 2012-2016 ownCloud Inc.
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License version 2,
  7. as published by the Free Software Foundation.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <!--
  16. UI Automator requires Android 4.3 (API level 18) or higher.
  17. So this AndroidManifest will be merged with the normal one
  18. (not requiring to change the minSdk) and used for UI Automator tests, and does not affect
  19. the normal release/debug builds.
  20. -->
  21. <manifest
  22. package="${applicationId}.test"
  23. xmlns:tools="http://schemas.android.com/tools">
  24. <uses-sdk tools:overrideLibrary="android.support.test.uiautomator.v18"/>
  25. </manifest>