summaryrefslogtreecommitdiff
path: root/tools/shell/android/app/src
diff options
context:
space:
mode:
Diffstat (limited to 'tools/shell/android/app/src')
-rw-r--r--tools/shell/android/app/src/main/AndroidManifest.xml26
-rw-r--r--tools/shell/android/app/src/main/res/mipmap-hdpi/ic_launcher.pngbin0 -> 3418 bytes
-rw-r--r--tools/shell/android/app/src/main/res/mipmap-mdpi/ic_launcher.pngbin0 -> 2206 bytes
-rw-r--r--tools/shell/android/app/src/main/res/mipmap-xhdpi/ic_launcher.pngbin0 -> 4842 bytes
-rw-r--r--tools/shell/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.pngbin0 -> 7718 bytes
-rw-r--r--tools/shell/android/app/src/main/res/values/strings.xml4
6 files changed, 30 insertions, 0 deletions
diff --git a/tools/shell/android/app/src/main/AndroidManifest.xml b/tools/shell/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..bfc6b30045
--- /dev/null
+++ b/tools/shell/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.mapbox.mapboxsdk.maps.shell"
+ android:versionCode="1"
+ android:versionName="1.0">
+
+ <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|screenLayout|screenSize|keyboardHidden|keyboard">
+ <meta-data android:name="android.app.lib_name"
+ android:value="mbgl-shell" />
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>
diff --git a/tools/shell/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/tools/shell/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000000..cde69bccce
--- /dev/null
+++ b/tools/shell/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Binary files differ
diff --git a/tools/shell/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/tools/shell/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000000..c133a0cbd3
--- /dev/null
+++ b/tools/shell/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Binary files differ
diff --git a/tools/shell/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/tools/shell/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000000..bfa42f0e7b
--- /dev/null
+++ b/tools/shell/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Binary files differ
diff --git a/tools/shell/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/tools/shell/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000000..324e72cdd7
--- /dev/null
+++ b/tools/shell/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Binary files differ
diff --git a/tools/shell/android/app/src/main/res/values/strings.xml b/tools/shell/android/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000000..9dd4967632
--- /dev/null
+++ b/tools/shell/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="app_name">Mapbox GL Shell</string>
+</resources>