Skip to content

Commit efe9663

Browse files
committed
1.3.0-SNAPSHOT
1 parent af4d8ee commit efe9663

2 files changed

Lines changed: 21 additions & 73 deletions

File tree

AndroidManifest.xml

Lines changed: 20 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,55 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:versionCode="12"
4-
android:versionName="1.2.1"
5-
package="com.tadamski.arij">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="13" android:versionName="1.3.0-SNAPSHOT" package="com.tadamski.arij">
63

7-
<application
8-
android:icon="@drawable/ic_launcher"
9-
android:label="@string/app_name"
10-
android:name=".Application">
11-
<activity
12-
android:name=".account.activity.AccountSelectorActivity_"
13-
android:theme="@style/Theme.Sherlock.Light">
4+
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:name=".Application">
5+
<activity android:name=".account.activity.AccountSelectorActivity_" android:theme="@style/Theme.Sherlock.Light">
146
<intent-filter>
157
<action android:name="android.intent.action.MAIN"/>
168
<category android:name="android.intent.category.LAUNCHER"/>
179
</intent-filter>
1810
</activity>
19-
<activity
20-
android:launchMode="singleTop"
21-
android:name=".issue.list.IssueListActivity_"
22-
android:theme="@style/Theme.Sherlock.Light">
11+
<activity android:launchMode="singleTop" android:name=".issue.list.IssueListActivity_" android:theme="@style/Theme.Sherlock.Light">
2312
</activity>
24-
<activity
25-
android:launchMode="singleTop"
26-
android:name=".issue.single.activity.single.view.IssueActivity_"
27-
android:parentActivityName=".issue.list.IssueListActivity_"
28-
android:theme="@style/Theme.Sherlock.Light">
13+
<activity android:launchMode="singleTop" android:name=".issue.single.activity.single.view.IssueActivity_" android:parentActivityName=".issue.list.IssueListActivity_" android:theme="@style/Theme.Sherlock.Light">
2914
<!-- Parent activity meta-data to support 4.0 and lower -->
30-
<meta-data
31-
android:name="android.support.PARENT_ACTIVITY"
32-
android:value=".issue.list.IssueListActivity_"/>
15+
<meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".issue.list.IssueListActivity_"/>
3316
</activity>
34-
<activity
35-
android:name=".issue.comments.activity.CommentsActivity_"
36-
android:parentActivityName=".issue.single.activity.single.view.IssueActivity_"
37-
android:theme="@style/Theme.Sherlock.Light">
17+
<activity android:name=".issue.comments.activity.CommentsActivity_" android:parentActivityName=".issue.single.activity.single.view.IssueActivity_" android:theme="@style/Theme.Sherlock.Light">
3818
<!-- Parent activity meta-data to support 4.0 and lower -->
39-
<meta-data
40-
android:name="android.support.PARENT_ACTIVITY"
41-
android:value=".issue.single.activity.single.view.IssueActivity_"/>
19+
<meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".issue.single.activity.single.view.IssueActivity_"/>
4220
</activity>
43-
<activity
44-
android:name=".issue.worklog.list.WorklogsActivity_"
45-
android:parentActivityName=".issue.single.activity.single.view.IssueActivity_"
46-
android:theme="@style/Theme.Sherlock.Light">
21+
<activity android:name=".issue.worklog.list.WorklogsActivity_" android:parentActivityName=".issue.single.activity.single.view.IssueActivity_" android:theme="@style/Theme.Sherlock.Light">
4722
<!-- Parent activity meta-data to support 4.0 and lower -->
48-
<meta-data
49-
android:name="android.support.PARENT_ACTIVITY"
50-
android:value=".issue.single.activity.single.view.IssueActivity_"/>
23+
<meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".issue.single.activity.single.view.IssueActivity_"/>
5124
</activity>
52-
<activity
53-
android:name=".account.activity.AddNewAccountActivity_"
54-
android:theme="@style/Theme.Sherlock.Light.NoActionBar"
55-
android:windowSoftInputMode="adjustResize"/>
56-
<activity
57-
android:name=".issue.worklog.newlog.activity.NewWorklogActivity_"
58-
android:theme="@style/Theme.Sherlock.Light"/>
25+
<activity android:name=".account.activity.AddNewAccountActivity_" android:theme="@style/Theme.Sherlock.Light.NoActionBar" android:windowSoftInputMode="adjustResize"/>
26+
<activity android:name=".issue.worklog.newlog.activity.NewWorklogActivity_" android:theme="@style/Theme.Sherlock.Light"/>
5927

60-
<service
61-
android:exported="true"
62-
android:name=".account.authenticator.AuthenticationService">
28+
<service android:exported="true" android:name=".account.authenticator.AuthenticationService">
6329
<intent-filter>
6430
<action android:name="android.accounts.AccountAuthenticator"/>
6531
</intent-filter>
66-
<meta-data
67-
android:name="android.accounts.AccountAuthenticator"
68-
android:resource="@xml/authenticator"/>
32+
<meta-data android:name="android.accounts.AccountAuthenticator" android:resource="@xml/authenticator"/>
6933
</service>
7034

7135
<!-- Homescreen widget -->
72-
<receiver
73-
android:enabled="@bool/homescreen_widget_enabled"
74-
android:icon="@drawable/ic_launcher"
75-
android:label="@string/homescreen_widget_name"
76-
android:name=".widget.HomeScreenWidgetProvider">
36+
<receiver android:enabled="@bool/homescreen_widget_enabled" android:icon="@drawable/ic_launcher" android:label="@string/homescreen_widget_name" android:name=".widget.HomeScreenWidgetProvider">
7737
<intent-filter>
7838
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
7939
</intent-filter>
8040

81-
<meta-data
82-
android:name="android.appwidget.provider"
83-
android:resource="@xml/homescreen_widget"/>
41+
<meta-data android:name="android.appwidget.provider" android:resource="@xml/homescreen_widget"/>
8442
</receiver>
85-
<service
86-
android:enabled="@bool/homescreen_widget_enabled"
87-
android:name=".widget.RefreshHomescreenWidgetService"
88-
android:permission="android.permission.BIND_REMOTEVIEWS"/>
89-
<activity
90-
android:enabled="@bool/homescreen_widget_enabled"
91-
android:name=".widget.options.HomescreenWidgetOptionsActivity_"
92-
android:theme="@style/Theme.Sherlock.Light">
43+
<service android:enabled="@bool/homescreen_widget_enabled" android:name=".widget.RefreshHomescreenWidgetService" android:permission="android.permission.BIND_REMOTEVIEWS"/>
44+
<activity android:enabled="@bool/homescreen_widget_enabled" android:name=".widget.options.HomescreenWidgetOptionsActivity_" android:theme="@style/Theme.Sherlock.Light">
9345
<intent-filter>
9446
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
9547
</intent-filter>
9648
</activity>
9749

9850
<!-- Used for install referral measurement-->
9951
<service android:name="com.google.analytics.tracking.android.CampaignTrackingService"/>
100-
<receiver
101-
android:exported="true"
102-
android:name="com.google.analytics.tracking.android.CampaignTrackingReceiver">
52+
<receiver android:exported="true" android:name="com.google.analytics.tracking.android.CampaignTrackingReceiver">
10353
<intent-filter>
10454
<action android:name="com.android.vending.INSTALL_REFERRER"/>
10555
</intent-filter>
@@ -113,7 +63,5 @@
11363
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
11464
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
11565

116-
<uses-sdk
117-
android:minSdkVersion="10"
118-
android:targetSdkVersion="17"/>
66+
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17"/>
11967
</manifest>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.tadamski</groupId>
66
<artifactId>arij</artifactId>
7-
<version>1.2.1</version>
7+
<version>1.3.0-SNAPSHOT</version>
88
<packaging>apk</packaging>
99
<name>arij</name>
1010

0 commit comments

Comments
 (0)