aboutsummaryrefslogtreecommitdiff
path: root/ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml')
-rw-r--r--ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml19
1 files changed, 11 insertions, 8 deletions
diff --git a/ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml b/ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml
index de585c9c..22500853 100644
--- a/ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml
+++ b/ui/graphics/PdfRendererBasic/kotlinApp/Application/src/main/AndroidManifest.xml
@@ -14,17 +14,21 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
package="com.example.android.pdfrendererbasic">
- <application android:allowBackup="false"
- android:label="@string/app_name"
+ <application
+ android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
- android:theme="@style/Theme.PdfRendererBasic">
+ android:label="@string/app_name"
+ android:theme="@style/Theme.PdfRendererBasic"
+ tools:ignore="GoogleAppIndexingWarning">
- <activity android:name=".MainActivity"
- android:label="@string/app_name">
+ <activity
+ android:name=".MainActivity"
+ android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -32,5 +36,4 @@
</activity>
</application>
-
</manifest>