aboutsummaryrefslogtreecommitdiff
path: root/app/src/google/AndroidManifest.xml
blob: 0708a47ec2b6c5c70297c621463964f90a169b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="github.daneren2005.dsub">

    <application android:label="@string/common.appname"
         android:backupAgent="github.daneren2005.dsub.util.SettingsBackupAgent"
         android:icon="@drawable/launch"
         android:theme="@style/Theme.DSub.Light">

        <meta-data
            android:name="com.google.android.backup.api_key"
            android:value="AEdPqrEAAAAIUhOMtwa_eG-f0oYUHnetl_Cz7cO9zae8ZXOK5w" />
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />
        <meta-data
            android:name="com.google.android.gms.car.application"
            android:resource="@xml/auto_app_description" />
        <meta-data
            android:name="com.google.android.gms.car.notification.SmallIcon"
            android:resource="@drawable/stat_notify_playing" />
    </application>

</manifest>