Add mono icon pack base package
Change-Id: I555a3007a2b582decd3663ad54e3be0966752438
Signed-off-by: Joey <jbevilacqua@shiftphones.com>
diff --git a/icons/mono/Android.bp b/icons/mono/Android.bp
new file mode 100644
index 0000000..25b3b44
--- /dev/null
+++ b/icons/mono/Android.bp
@@ -0,0 +1,14 @@
+android_app {
+ name: "MonoIconPack",
+
+ resource_dirs: [
+ "res",
+ ],
+ srcs: [
+ "src/**/*.kt",
+ ],
+
+ certificate: "platform",
+
+ sdk_version: "current",
+}
diff --git a/icons/mono/AndroidManifest.xml b/icons/mono/AndroidManifest.xml
new file mode 100644
index 0000000..dd5b4db
--- /dev/null
+++ b/icons/mono/AndroidManifest.xml
@@ -0,0 +1,28 @@
+<!--
+ ~ Copyright (c) 2019-2020 SHIFT GmbH.
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
+
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ package="com.shift.overlay.icon.mono"
+ android:versionCode="1"
+ android:versionName="0.0.1">
+
+ <application
+ android:name=".App"
+ android:allowBackup="false"
+ tools:ignore="GoogleAppIndexingWarning,LockedOrientationActivity" />
+</manifest>
diff --git a/icons/mono/src/com/shift/overlay/icon/mono/App.java b/icons/mono/src/com/shift/overlay/icon/mono/App.java
new file mode 100644
index 0000000..d5694a8
--- /dev/null
+++ b/icons/mono/src/com/shift/overlay/icon/mono/App.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (c) 2019 SHIFT GmbH.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.shift.overlay.icon.mono;
+
+import android.app.Application;
+
+public class App extends Application() {
+ // empty stub
+}