Add default name and icon
Bug: 65688593
Test: rebuild
Change-Id: I40ecf49dee632fe3563684f553c97d78907fa7ff
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2894d47..1791d3f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -21,7 +21,9 @@
<uses-sdk android:minSdkVersion="27" android:targetSdkVersion="27" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <application>
+ <application
+ android:label="@string/app_name_settings_intelligence"
+ android:icon="@drawable/ic_launcher_settings_intelligence">
<service
android:name=".suggestions.SuggestionService"
android:exported="true"
diff --git a/res/drawable/ic_launcher_settings_intelligence.xml b/res/drawable/ic_launcher_settings_intelligence.xml
new file mode 100644
index 0000000..07e226d
--- /dev/null
+++ b/res/drawable/ic_launcher_settings_intelligence.xml
@@ -0,0 +1,20 @@
+<!--
+ Copyright (C) 2017 The Android Open Source Project
+
+ 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.
+ -->
+
+<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
+ <background android:drawable="@color/launcher_background_color" />
+ <foreground android:drawable="@mipmap/ic_launcher_settings_intelligence" />
+</adaptive-icon>
\ No newline at end of file
diff --git a/res/mipmap-hdpi/ic_launcher_settings_intelligence.png b/res/mipmap-hdpi/ic_launcher_settings_intelligence.png
new file mode 100644
index 0000000..ddce98e
--- /dev/null
+++ b/res/mipmap-hdpi/ic_launcher_settings_intelligence.png
Binary files differ
diff --git a/res/mipmap-mdpi/ic_launcher_settings_intelligence.png b/res/mipmap-mdpi/ic_launcher_settings_intelligence.png
new file mode 100644
index 0000000..86f3be8
--- /dev/null
+++ b/res/mipmap-mdpi/ic_launcher_settings_intelligence.png
Binary files differ
diff --git a/res/mipmap-xhdpi/ic_launcher_settings_intelligence.png b/res/mipmap-xhdpi/ic_launcher_settings_intelligence.png
new file mode 100644
index 0000000..360aa69
--- /dev/null
+++ b/res/mipmap-xhdpi/ic_launcher_settings_intelligence.png
Binary files differ
diff --git a/res/mipmap-xxhdpi/ic_launcher_settings_intelligence.png b/res/mipmap-xxhdpi/ic_launcher_settings_intelligence.png
new file mode 100644
index 0000000..7cb67a9
--- /dev/null
+++ b/res/mipmap-xxhdpi/ic_launcher_settings_intelligence.png
Binary files differ
diff --git a/res/mipmap-xxxhdpi/ic_launcher_settings_intelligence.png b/res/mipmap-xxxhdpi/ic_launcher_settings_intelligence.png
new file mode 100644
index 0000000..3fec9c4
--- /dev/null
+++ b/res/mipmap-xxxhdpi/ic_launcher_settings_intelligence.png
Binary files differ
diff --git a/res/values/colors.xml b/res/values/colors.xml
new file mode 100644
index 0000000..7013b15
--- /dev/null
+++ b/res/values/colors.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2017 The Android Open Source Project
+
+ 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.
+ -->
+
+<resources>
+ <color name="launcher_background_color">#ff009688</color>
+</resources>
\ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..7fa89ab
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2017 The Android Open Source Project
+
+ 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.
+ -->
+
+<resources>
+ <!-- App name of SettingsIntelligence [CHAR_LIMIT=30] -->
+ <string name="app_name_settings_intelligence">Settings Intelligence</string>
+</resources>
\ No newline at end of file