Skip to content
This repository has been archived by the owner on Apr 19, 2018. It is now read-only.

Commit

Permalink
Prepare for 4.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jul 28, 2013
1 parent 12fcd68 commit e2a538e
Show file tree
Hide file tree
Showing 29 changed files with 138 additions and 131 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change Log
===============================================================================

Version 4.4.0 *(2013-07-28)*
----------------------------

* Add Gradle support.
* Fix: Use 'sw' and 'w' qualifiers on ICS+ only to prevent OEM resource bugs.
* Fix: Improve handling of popup windows to prevent leaks.
* Fix: Support turning off textAllCaps style attribute on action items.
* Fix: Potential logging NullPointerException when a MenuItem title was omitted.


Version 4.3.1 *(2013-04-28)*
----------------------------

Expand Down
5 changes: 5 additions & 0 deletions actionbarsherlock-fest/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.fest">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
<application/>
</manifest>
19 changes: 16 additions & 3 deletions actionbarsherlock-fest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
apply plugin: 'java'
apply plugin: 'android-library'

dependencies {
compile 'com.squareup:fest-android:1.0.4'
compile 'com.squareup:fest-android:1.0.5'

runtime project(':actionbarsherlock')
compile project(':actionbarsherlock')
}

android {
compileSdkVersion 14
buildToolsVersion '17.0.0'

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
}
27 changes: 26 additions & 1 deletion actionbarsherlock-fest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -35,4 +35,29 @@
<artifactId>fest-android</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<type>aar</type>
<file>${project.basedir}/build//libs/${project.artifactId}-${gradle.version}.aar</file>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion actionbarsherlock-i18n/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock.i18n">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.i18n">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
<application/>
</manifest>
2 changes: 1 addition & 1 deletion actionbarsherlock-i18n/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {

android {
compileSdkVersion 14
buildToolsVersion '17'
buildToolsVersion '17.0.0'

sourceSets {
main {
Expand Down
23 changes: 22 additions & 1 deletion actionbarsherlock-i18n/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -53,6 +53,27 @@
</inputFiles>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<type>aar</type>
<file>${project.basedir}/build/libs/${project.artifactId}-${gradle.version}.aar</file>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/demos/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.demos">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.sample.demos">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>

Expand Down
18 changes: 0 additions & 18 deletions actionbarsherlock-samples/demos/build.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion actionbarsherlock-samples/demos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent-sample</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/fragments/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
attribute brings in the Android platform namespace, and the package
supplies a unique name for the application. When writing your
own application, the package name must be changed from "com.example.*"
to come from a domain that you own or have control over. --><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.fragments">
to come from a domain that you own or have control over. --><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.sample.fragments">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>

Expand Down
18 changes: 0 additions & 18 deletions actionbarsherlock-samples/fragments/build.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion actionbarsherlock-samples/fragments/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent-sample</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/known-bugs/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.knownbugs">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.sample.knownbugs">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>

Expand Down
18 changes: 0 additions & 18 deletions actionbarsherlock-samples/known-bugs/build.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion actionbarsherlock-samples/known-bugs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent-sample</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/roboguice/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.roboguice">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.sample.roboguice">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>

Expand Down
19 changes: 0 additions & 19 deletions actionbarsherlock-samples/roboguice/build.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion actionbarsherlock-samples/roboguice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent-sample</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion actionbarsherlock-samples/styled/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="431" android:versionName="4.3.1" package="com.actionbarsherlock.sample.styled">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock.sample.styled">

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>

Expand Down
19 changes: 0 additions & 19 deletions actionbarsherlock-samples/styled/build.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion actionbarsherlock-samples/styled/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent-sample</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
3 changes: 2 additions & 1 deletion actionbarsherlock/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100" android:versionName="4.2.0" package="com.actionbarsherlock">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="440" android:versionName="4.4.0" package="com.actionbarsherlock">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
<application/>
</manifest>
4 changes: 2 additions & 2 deletions actionbarsherlock/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'android-library'

dependencies {
compile 'com.google.android:support-v4:r7'
compile 'com.android.support:support-v4:18.0.+'
}

android {
compileSdkVersion 14
buildToolsVersion '17'
buildToolsVersion '17.0.0'

sourceSets {
main {
Expand Down
6 changes: 5 additions & 1 deletion actionbarsherlock/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.actionbarsherlock</groupId>
<artifactId>parent</artifactId>
<version>4.3.2-SNAPSHOT</version>
<version>4.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -97,6 +97,10 @@
<type>jar</type>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
</artifact>
<artifact>
<type>aar</type>
<file>${project.basedir}/build/libs/${project.artifactId}-${gradle.version}.aar</file>
</artifact>
</artifacts>
</configuration>
</execution>
Expand Down
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {

allprojects {
group = 'com.actionbarsherlock'
version = '4.3.2-SNAPSHOT'
version = '4.4.0'

repositories {
mavenCentral()
Expand All @@ -20,5 +20,3 @@ allprojects {
options.encoding = "UTF-8"
}
}

apply plugin: 'android-reporting'
Loading

0 comments on commit e2a538e

Please sign in to comment.