1
0
Fork 0
mirror of https://github.com/vanitasvitae/Spherical synced 2025-12-11 23:01:10 +01:00

Initial commit

This commit is contained in:
vanitasvitae 2017-09-12 14:54:41 +02:00
parent 645da0ba34
commit 547667a6e0
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
29 changed files with 469 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.trac.spherical">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>