adding some more generic boilerplate code

This commit is contained in:
tibbi 2020-04-03 10:19:28 +02:00
parent feb4cd6e9a
commit 25876ae5c0
9 changed files with 55 additions and 20 deletions

View file

@ -8,17 +8,23 @@
tools:node="remove" />
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:label="@string/app_launcher_name"
android:roundIcon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity android:name=".activities.MainActivity">
<activity
android:name=".activities.SplashActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<activity android:name=".activities.MainActivity" />
</application>
</manifest>