mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 12:24:32 +00:00
3f03dec7af
Using the `android` command to create a new project has been deprecated in favour of using Android Studio. To avoid this constraint a template project has been added and this is simply duplicated with the relevant files populated when creating a new project.
13 lines
353 B
XML
13 lines
353 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="${package_name}"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
|
|
|
|
<instrumentation
|
|
android:name="android.support.test.runner.AndroidJUnitRunner"
|
|
android:targetPackage="${package_name}"/>
|
|
|
|
</manifest>
|