Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 556B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="uk.co.md87.contextanalyser.tests"
  4. android:versionCode="1" android:versionName="0.0.1">
  5. <application>
  6. <uses-library android:name="android.test.runner" />
  7. </application>
  8. <uses-sdk android:minSdkVersion="3" />
  9. <instrumentation android:name="android.test.InstrumentationTestRunner"
  10. android:targetPackage="uk.co.md87.contextanalyser"
  11. android:label="Tests for context analyser" />
  12. </manifest>