summaryrefslogtreecommitdiff
path: root/benchmark/android/app/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/android/app/src/main')
-rw-r--r--benchmark/android/app/src/main/AndroidManifest.xml28
-rw-r--r--benchmark/android/app/src/main/assets/to_zip.txt3
-rw-r--r--benchmark/android/app/src/main/res/mipmap-hdpi/ic_launcher.pngbin0 -> 3418 bytes
-rw-r--r--benchmark/android/app/src/main/res/mipmap-mdpi/ic_launcher.pngbin0 -> 2206 bytes
-rw-r--r--benchmark/android/app/src/main/res/mipmap-xhdpi/ic_launcher.pngbin0 -> 4842 bytes
-rw-r--r--benchmark/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.pngbin0 -> 7718 bytes
-rw-r--r--benchmark/android/app/src/main/res/values/strings.xml4
7 files changed, 35 insertions, 0 deletions
diff --git a/benchmark/android/app/src/main/AndroidManifest.xml b/benchmark/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..33cfade1e1
--- /dev/null
+++ b/benchmark/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.mapbox.mapboxsdk.maps.benchmark_runner"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <application
+ android:allowBackup="false"
+ android:fullBackupContent="false"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:hasCode="true">
+
+ <activity android:name="android.app.NativeActivity"
+ android:label="@string/app_name"
+ android:configChanges="orientation|keyboardHidden"
+ android:screenOrientation="portrait">
+ <meta-data android:name="android.app.lib_name"
+ android:value="mbgl-benchmark-runner" />
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>
diff --git a/benchmark/android/app/src/main/assets/to_zip.txt b/benchmark/android/app/src/main/assets/to_zip.txt
new file mode 100644
index 0000000000..2fa7604f6d
--- /dev/null
+++ b/benchmark/android/app/src/main/assets/to_zip.txt
@@ -0,0 +1,3 @@
+benchmark/results/
+benchmark/fixtures/
+test/fixtures/api/assets/streets/
diff --git a/benchmark/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/benchmark/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000000..cde69bccce
--- /dev/null
+++ b/benchmark/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Binary files differ
diff --git a/benchmark/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/benchmark/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000000..c133a0cbd3
--- /dev/null
+++ b/benchmark/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Binary files differ
diff --git a/benchmark/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/benchmark/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000000..bfa42f0e7b
--- /dev/null
+++ b/benchmark/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Binary files differ
diff --git a/benchmark/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/benchmark/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000000..324e72cdd7
--- /dev/null
+++ b/benchmark/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Binary files differ
diff --git a/benchmark/android/app/src/main/res/values/strings.xml b/benchmark/android/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000000..39be3fc37e
--- /dev/null
+++ b/benchmark/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="app_name">BenchmarkRunner</string>
+</resources>