]> gitweb.stoutner.com Git - PrivacyCell.git/blobdiff - app/src/main/AndroidManifest.xml
Add the app icon.
[PrivacyCell.git] / app / src / main / AndroidManifest.xml
index e47f8c3f59ea146a7efacee240453fc9b901aeda..c273ea3e73916f52bcbfe9c651876d2f497c5402 100644 (file)
     <!-- App data is automatically backed up to Google cloud servers unless `android:allowBackup="false"` and `android:fullBackupContent="false"` is set. TODO round icon and theme name. -->
     <application
         android:label="@string/privacy_cell"
-        android:icon="@mipmap/ic_launcher"
-        android:roundIcon="@mipmap/ic_launcher_round"
+        android:icon="@mipmap/privacy_cell"
         android:allowBackup="false"
         android:fullBackupContent="false"
         android:supportsRtl="true"
         android:theme="@style/Theme.5GStatus" >
 
-        <!-- The label uses the short name so that it isn't truncated under the icon in the launcher on most phones.  TODO.
+        <!-- The label uses the short name so that it isn't truncated under the icon in the launcher on most phones.
             The theme has to be defined here or an ugly title bar is displayed when the app launches.  TODO.
             `android:launchMode="singleTask"` makes the app launch in a new task instead of inside the task of the program that sends it an intent.
             It also makes it reuse an existing Privacy Cell activity if available instead of launching a new one. -->
         <activity
             android:name=".activities.PrivacyCell"
+            android:label="@string/cell"
             android:launchMode="singleTask"
             android:screenOrientation="fullUser"
             android:exported="true" >