Skip to content

Commit 278c37f

Browse files
committed
Use ActionBarSherlock as apklib and integrate
1 parent de8039f commit 278c37f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="0.0.1-SNAPSHOT" package="net.rdrei.android.absshadow">
3-
<application android:debuggable="true" android:label="@string/app_name">
3+
<application android:debuggable="true" android:label="@string/app_name"
4+
android:theme="@style/Theme.Sherlock">
45
<activity android:label="@string/app_name" android:name="MainActivity">
56
<intent-filter>
67
<action android:name="android.intent.action.MAIN"/>
78
<category android:name="android.intent.category.LAUNCHER"/>
89
</intent-filter>
910
</activity>
1011
</application>
11-
</manifest>
12+
</manifest>

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<packaging>apk</packaging>
1111

1212
<properties>
13-
<android.version>2.3.3</android.version>
14-
<android.platform>10</android.platform>
13+
<android.version>4.0.1.2</android.version>
14+
<android.platform>15</android.platform>
1515
</properties>
1616

1717
<repositories>
@@ -44,6 +44,7 @@
4444
<groupId>com.actionbarsherlock</groupId>
4545
<artifactId>library</artifactId>
4646
<version>4.0.0-RC1</version>
47+
<type>apklib</type>
4748
</dependency>
4849
<dependency>
4950
<groupId>com.actionbarsherlock</groupId>
@@ -105,6 +106,9 @@
105106
<manifest>
106107
<debuggable>true</debuggable>
107108
</manifest>
109+
<sdk>
110+
<platform>${android.platform}</platform>
111+
</sdk>
108112
</configuration>
109113
<executions>
110114
<execution>

project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-10
11+
target=android-15

0 commit comments

Comments
 (0)