Skip to content

Commit 0b38738

Browse files
author
Melih Aksoy
committed
Moved activities to their library manifest files
1 parent 336ce10 commit 0b38738

File tree

3 files changed

+28
-22
lines changed

3 files changed

+28
-22
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,5 @@
1313
android:roundIcon="@mipmap/ic_launcher_round"
1414
android:supportsRtl="true"
1515
android:theme="@style/AppTheme"
16-
tools:ignore="GoogleAppIndexingWarning">
17-
18-
<activity
19-
android:name="com.melih.list.ui.LaunchesActivity"
20-
android:theme="@style/AppTheme">
21-
<intent-filter>
22-
<action android:name="android.intent.action.MAIN" />
23-
<category android:name="android.intent.category.LAUNCHER" />
24-
</intent-filter>
25-
</activity>
26-
27-
<activity
28-
android:name="com.melih.detail.ui.DetailActivity"
29-
android:theme="@style/AppTheme">
30-
<intent-filter>
31-
<action android:name="action.dashboard.open" />
32-
<category android:name="android.intent.category.DEFAULT" />
33-
</intent-filter>
34-
</activity>
35-
</application>
16+
tools:ignore="GoogleAppIndexingWarning" />
3617
</manifest>
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.melih.detail"/>
2+
package="com.melih.detail">
3+
4+
<application>
5+
<activity
6+
android:name="com.melih.detail.ui.DetailActivity"
7+
android:theme="@style/AppTheme">
8+
<intent-filter>
9+
<action android:name="action.dashboard.open" />
10+
<category android:name="android.intent.category.DEFAULT" />
11+
</intent-filter>
12+
</activity>
13+
</application>
14+
</manifest>
Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-
<manifest package="com.melih.list" />
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.melih.list">
3+
4+
<application>
5+
<activity
6+
android:name="com.melih.list.ui.LaunchesActivity"
7+
android:theme="@style/AppTheme">
8+
<intent-filter>
9+
<action android:name="android.intent.action.MAIN" />
10+
<category android:name="android.intent.category.LAUNCHER" />
11+
</intent-filter>
12+
</activity>
13+
</application>
14+
</manifest>

0 commit comments

Comments
 (0)